/* ═══════════════════════════════════════════════════════
   PLANMYCREW — styles.css
   Theme: Orange accent + Deep Slate background (fixed)
═══════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --orange: #F45A1E;
  --orange-light: #FF7A45;
  --orange-glow: rgba(244,90,30,0.15);
  --dark: #0F172A;
  --dark-2: #131E32;
  --dark-3: #1A2640;
  --dark-4: #1E2E4A;
  --border: rgba(148,163,184,0.1);
  --border-hover: rgba(148,163,184,0.22);
  --gray: #7B90B0;
  --light-gray: #94A3B8;
  --white: #E2E8F0;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: #E2E8F0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Bebas Neue', sans-serif; }
img { max-width: 100%; display: block; }

/* ── PAGE SYSTEM ── */
.page { display: none; }
.page.active { display: block; }

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: rgba(15,23,42,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}
.logo span { color: var(--orange); }
.logo-img { height: 36px; width: auto; display: block; }
.logo-fallback {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 1px;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}
.logo-fallback span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-links a:hover { color: var(--white); }

.nav-btns { display: flex; gap: 0.75rem; align-items: center; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(15,23,42,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 998;
  padding: 1.5rem 6% 2rem;
  flex-direction: column;
  gap: 0;
}
.nav-drawer.open { display: flex; }
.nav-drawer li {
  list-style: none;
  border-bottom: 1px solid var(--border);
}
.nav-drawer li:last-child { border-bottom: none; }
.nav-drawer li a {
  display: block;
  padding: 0.9rem 0;
  color: var(--light-gray);
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-drawer li a:hover { color: var(--white); }
.nav-drawer-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.nav-drawer-btns .btn-ghost,
.nav-drawer-btns .btn-primary {
  text-align: center;
  width: 100%;
  padding: 0.75rem;
}

/* ── BUTTONS ── */
.btn-ghost {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: 'Barlow', sans-serif;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.04); }

.btn-primary {
  padding: 0.5rem 1.3rem;
  background: var(--orange);
  border: none;
  border-radius: 6px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }

.btn-cta {
  padding: 0.9rem 2.1rem;
  background: var(--orange);
  border: none;
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
  letter-spacing: 0.3px;
}
.btn-cta:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244,90,30,0.35);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 6% 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 75% 45%, rgba(244,90,30,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 15% 75%, rgba(244,90,30,0.07) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
}
.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem;
  background: var(--orange-glow);
  border: 1px solid rgba(244,90,30,0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--orange-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 2px;
  margin-bottom: 1.3rem;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
  cursor: pointer;
}
.btn-demo:hover { color: var(--white); }
.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-trust-text { font-size: 0.8rem; color: var(--gray); }
.trust-tag {
  padding: 0.25rem 0.65rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--light-gray);
}
.hero-trust-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.hero-card-header {
  background: var(--dark-4);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }
.hero-card-title { margin-left: 0.5rem; font-size: 0.8rem; color: var(--gray); font-family: 'Barlow', sans-serif; }
.hero-card-body { padding: 1.5rem; }
.dash-row { display: flex; justify-content: space-between; margin-bottom: 1.2rem; }
.dash-stat { text-align: center; }
.dash-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.dash-stat-num.orange { color: var(--orange); }
.dash-stat-label { font-size: 0.7rem; color: var(--gray); margin-top: 0.25rem; }
.job-list { display: flex; flex-direction: column; gap: 0.6rem; }
.job-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  background: var(--dark-4);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.job-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.job-icon.plumb { background: rgba(59,130,246,0.15); }
.job-icon.elec  { background: rgba(251,191,36,0.15); }
.job-icon.build { background: rgba(34,197,94,0.15); }
.job-info { flex: 1; min-width: 0; }
.job-name { font-size: 0.8rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.job-loc  { font-size: 0.7rem; color: var(--gray); margin-top: 0.1rem; }
.job-status {
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 500;
  flex-shrink: 0;
}
.status-active  { background: rgba(34,197,94,0.15);  color: #4ade80; }
.status-pending { background: rgba(251,191,36,0.15); color: #fbbf24; }
.status-done    { background: rgba(139,92,246,0.15); color: #a78bfa; }
.float-card {
  position: absolute;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.float-card.top-left    { top: -30px;  left: -40px; }
.float-card.bottom-right{ bottom: -25px; right: -35px; }
.float-label { font-size: 0.68rem; color: var(--gray); margin-bottom: 0.2rem; }
.float-value { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; font-weight: 700; }
.float-value.green  { color: #4ade80; }
.float-value.orange { color: var(--orange); }

/* ══════════════════════════════════════════════
   PROOF BAR
══════════════════════════════════════════════ */
.proof-bar {
  padding: 2rem 6%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark-2);
}
.proof-inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.proof-label {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.proof-tags { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.proof-tag {
  padding: 0.4rem 1rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--light-gray);
}

/* ══════════════════════════════════════════════
   REVIEW BADGES
══════════════════════════════════════════════ */
.badges-bar {
  padding: 1.5rem 6%;
  background: var(--dark-3);
  border-bottom: 1px solid var(--border);
}
.badges-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.2rem;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s;
  text-decoration: none;
}
.badge-item:hover { border-color: var(--border-hover); }
.badge-logo { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.badge-info { display: flex; flex-direction: column; }
.badge-stars { color: #F4A523; font-size: 0.72rem; letter-spacing: 1px; line-height: 1; }
.badge-score {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
}
.badge-count { font-size: 0.68rem; color: var(--gray); margin-top: 0.1rem; }
.badge-divider { width: 1px; height: 32px; background: var(--border); }

/* ══════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════ */
section { padding: 90px 6%; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 560px;
  font-weight: 400;
}

/* ══════════════════════════════════════════════
   PAIN SECTION
══════════════════════════════════════════════ */
.pain { background: var(--dark-2); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pain-card {
  padding: 1.75rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s;
}
.pain-card:hover { border-color: rgba(244,90,30,0.3); }
.pain-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.pain-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.pain-card p  { font-size: 0.87rem; color: var(--gray); line-height: 1.65; }

/* ══════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.feature-card {
  padding: 1.75rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: rgba(244,90,30,0.25);
  background: var(--dark-4);
  transform: translateY(-2px);
}
.feature-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--orange-glow);
  border: 1px solid rgba(244,90,30,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-text h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature-text p  { font-size: 0.84rem; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.how { background: var(--dark-2); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), rgba(244,90,30,0.2), var(--border), transparent);
}
.step { text-align: center; padding: 0 1rem; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.step:hover .step-num { background: var(--orange-glow); border-color: rgba(244,90,30,0.4); }
.step h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p  { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }
.pricing-card.featured {
  border-color: rgba(244,90,30,0.5);
  background: linear-gradient(145deg, rgba(244,90,30,0.08), var(--dark-3));
}
.pricing-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  padding: 0.2rem 0.65rem;
  background: var(--orange);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: 'Bebas Neue', sans-serif;
}
.pricing-tier   { font-size: 0.75rem; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem; }
.pricing-name   { font-size: 1.3rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: 0.5px; }
.pricing-price  { margin-bottom: 0.4rem; }
.pricing-price .amount   { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; font-weight: 800; letter-spacing: 2px; }
.pricing-price .currency { font-size: 1.1rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; color: var(--gray); }
.pricing-price .period   { font-size: 0.85rem; color: var(--gray); }
.pricing-note   { font-size: 0.78rem; color: var(--gray); margin-bottom: 1.5rem; min-height: 2.5em; line-height: 1.5; }
.pricing-divider{ height: 1px; background: var(--border); margin: 1.25rem 0; }
.pricing-features { list-style: none; flex: 1; margin-bottom: 1.75rem; }
.pricing-features li {
  padding: 0.45rem 0;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}
.pricing-features li::before   { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.pricing-features li.muted     { color: var(--gray); }
.pricing-features li.muted::before { color: var(--dark-4); content: '–'; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  transition: all 0.2s;
}
.pricing-cta.outline { border: 1px solid var(--border); color: var(--white); background: transparent; }
.pricing-cta.outline:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.04); }
.pricing-cta.solid  { background: var(--orange); color: var(--white); border: none; }
.pricing-cta.solid:hover { background: var(--orange-light); transform: translateY(-1px); }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials { background: var(--dark-2); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.testimonial-card {
  padding: 1.75rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.testimonial-stars { color: var(--orange); font-size: 0.85rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-text  { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author{ display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar{
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--orange);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.84rem; font-weight: 600; }
.testimonial-role { font-size: 0.75rem; color: var(--gray); }

/* ══════════════════════════════════════════════
   SCREENSHOT SHOWCASE
══════════════════════════════════════════════ */
.screenshot-showcase {
  background: var(--dark-2);
  padding: 80px 6%;
  border-top: 1px solid var(--border);
}
.screenshot-grid {
  max-width: 1180px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.screenshot-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--dark-3);
  transition: all 0.3s;
}
.screenshot-item:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.screenshot-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
  display: block;
  background: var(--dark-4);
}
.screenshot-item-body { padding: 1rem 1.25rem; }
.screenshot-item-body h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}
.screenshot-item-body p { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }
.screenshot-wide { grid-column: span 2; }
.screenshot-wide img { height: 320px; }

/* ══════════════════════════════════════════════
   BLOG — HOMEPAGE PREVIEW
══════════════════════════════════════════════ */
.blog-home { background: var(--dark); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.blog-card:hover { border-color: rgba(244,90,30,0.3); transform: translateY(-4px); }
.blog-card-thumb {
  height: 120px;
  background: linear-gradient(135deg, var(--dark-4), var(--dark-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.blog-card-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, var(--orange-glow), transparent 70%);
}
.blog-card-body   { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
.blog-tag-small {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  background: var(--orange-glow);
  border: 1px solid rgba(244,90,30,0.2);
  border-radius: 100px;
  font-size: 0.68rem;
  color: var(--orange-light);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.blog-card h3 { font-size: 0.93rem; font-weight: 700; line-height: 1.35; margin-bottom: 0.5rem; letter-spacing: -0.2px; }
.blog-card p  { font-size: 0.8rem; color: var(--gray); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
.blog-date      { font-size: 0.72rem; color: var(--gray); }
.blog-read-more { font-size: 0.78rem; color: var(--orange); font-weight: 600; }

/* ══════════════════════════════════════════════
   BLOG LIST PAGE
══════════════════════════════════════════════ */
.blog-page-header {
  padding: 120px 6% 50px;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
}
.blog-page-header-inner { max-width: 1180px; margin: 0 auto; }
.blog-page-header h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.blog-page-header p { font-size: 1rem; color: rgba(255,255,255,0.55); font-weight: 400; }
.blog-full-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 60px 6%;
}

/* ══════════════════════════════════════════════
   BLOG POST PAGE
══════════════════════════════════════════════ */
.post-page { background: var(--dark); }
.post-header {
  padding: 120px 6% 50px;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
}
.post-header-inner { max-width: 780px; margin: 0 auto; }
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray);
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}
.post-back:hover { color: var(--white); }
.post-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--orange-glow);
  border: 1px solid rgba(244,90,30,0.25);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--orange-light);
  margin-bottom: 1.25rem;
}
.post-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.post-meta { display: flex; gap: 1.5rem; font-size: 0.8rem; color: var(--gray); flex-wrap: wrap; }
.post-body { padding: 60px 6%; }
.post-body-inner { max-width: 780px; margin: 0 auto; }
.post-body h2 { font-size: 1.45rem; font-weight: 800; letter-spacing: 0.5px; margin: 2.5rem 0 0.9rem; color: var(--white); }
.post-body h3 { font-size: 1.1rem; font-weight: 700; margin: 1.75rem 0 0.65rem; color: var(--white); }
.post-body p  { font-size: 0.98rem; color: rgba(255,255,255,0.72); line-height: 1.82; margin-bottom: 1.2rem; font-weight: 400; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body li { font-size: 0.95rem; color: rgba(255,255,255,0.68); line-height: 1.75; margin-bottom: 0.4rem; }
.post-body strong { color: var(--white); font-weight: 600; }
.post-cta-box {
  background: linear-gradient(135deg, rgba(244,90,30,0.12), rgba(244,90,30,0.04));
  border: 1px solid rgba(244,90,30,0.25);
  border-radius: 14px;
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}
.post-cta-box h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.post-cta-box p  { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.post-nav {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.post-nav a { color: var(--orange); text-decoration: none; font-size: 0.85rem; font-weight: 600; cursor: pointer; }
.related-posts { background: var(--dark-2); padding: 60px 6%; }
.related-inner { max-width: 1180px; margin: 0 auto; }
.related-inner h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1.5rem; letter-spacing: 0.5px; }

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 720px;
}
.faq-item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 1.1rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.2s;
  font-family: 'Bebas Neue', sans-serif;
}
.faq-q:hover { background: var(--dark-4); }
.faq-toggle { color: var(--orange); font-size: 1.2rem; transition: transform 0.3s; }
.faq-a {
  padding: 0 1.4rem;
  max-height: 0;
  overflow: hidden;
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.7;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a    { max-height: 300px; padding: 0 1.4rem 1.1rem; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ══════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════ */
.cta-band {
  padding: 80px 6%;
  background: linear-gradient(135deg, rgba(244,90,30,0.15) 0%, rgba(244,90,30,0.05) 50%, transparent 100%);
  border-top: 1px solid rgba(244,90,30,0.15);
  text-align: center;
}
.cta-band h2 { font-size: clamp(2.2rem, 3.5vw, 3.4rem); font-weight: 800; letter-spacing: 1.5px; margin-bottom: 0.75rem; }
.cta-band p  { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 2rem; font-weight: 400; }
.cta-band-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════════ */
.contact-section {
  padding: 80px 6%;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: 1.5px; margin-bottom: 0.75rem; }
.contact-info p  { font-size: 0.95rem; color: var(--gray); line-height: 1.75; margin-bottom: 2rem; }
.contact-detail  { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.88rem; color: var(--light-gray); }
.contact-detail a{ color: var(--orange); text-decoration: none; }
.contact-detail a:hover { color: var(--orange-light); }

.contact-form-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.contact-form-card h3 { font-size: 1.3rem; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--light-gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237B90B0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: var(--dark-3); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover  { background: var(--orange-light); transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--orange);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.form-success p { font-family: 'Barlow', sans-serif; color: var(--gray); font-size: 0.88rem; margin-top: 0.5rem; letter-spacing: 0; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  padding: 3rem 6%;
  border-top: 1px solid var(--border);
  background: var(--dark-2);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p { font-size: 0.84rem; color: var(--gray); line-height: 1.7; margin-top: 0.75rem; max-width: 260px; }
.footer-col h5  {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: var(--light-gray);
  font-family: 'Bebas Neue', sans-serif;
}
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { color: var(--gray); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; cursor: pointer; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1180px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p  { font-size: 0.78rem; color: var(--gray); }
.footer-contact a { color: var(--orange); text-decoration: none; }

/* ══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9998;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.wa-float svg   { width: 30px; height: 30px; fill: #fff; }
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 0.82rem;
  font-family: 'Barlow', sans-serif;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { gap: 3rem; }
  .float-card.top-left    { top: -15px; left: -15px; }
  .float-card.bottom-right{ bottom: -15px; right: -15px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — SMALL TABLET / LARGE MOBILE (max 900px)
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav */
  .nav-links  { display: none; }
  .nav-btns   { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 100px 6% 60px; }

  /* Pain */
  .pain-grid { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }

  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; }

  /* Blog */
  .blog-grid      { grid-template-columns: 1fr; }
  .blog-full-grid { grid-template-columns: 1fr 1fr; }

  /* Screenshots */
  .screenshot-grid { grid-template-columns: 1fr; }
  .screenshot-wide { grid-column: span 1; }
  .screenshot-wide img { height: 240px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 600px)
══════════════════════════════════════════════ */
@media (max-width: 600px) {
  section { padding: 60px 5%; }

  /* Hero */
  .hero { padding: 90px 5% 50px; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-sub { font-size: 0.97rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-cta { text-align: center; }
  .hero-trust { gap: 0.6rem; }

  /* Section titles */
  .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }

  /* Steps */
  .steps { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }

  /* Blog */
  .blog-full-grid { grid-template-columns: 1fr; padding: 40px 5%; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.5rem; }

  /* CTA band */
  .cta-band { padding: 60px 5%; }
  .cta-band-actions { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Badges */
  .badges-inner { gap: 0.75rem; }
  .badge-item   { padding: 0.5rem 0.85rem; }
  .badge-divider{ display: none; }

  /* WhatsApp */
  .wa-float  { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wa-tooltip{ display: none; }

  /* Post body padding */
  .post-header { padding: 90px 5% 40px; }
  .post-body   { padding: 40px 5%; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 400px)
══════════════════════════════════════════════ */
@media (max-width: 400px) {
  nav { padding: 0 4%; }
  .hero { padding: 90px 4% 50px; }
  section { padding: 50px 4%; }
  .hero h1 { font-size: 2.2rem; }
  .proof-tags .proof-tag { font-size: 0.73rem; padding: 0.3rem 0.7rem; }
}
