/* ============================================================
   PlumberSites — Design Tokens & Base
   ============================================================ */
:root {
  /* Brand palette */
  --navy: #0A1628;
  --navy-2: #11203A;
  --navy-3: #1A2D4E;
  --blue: #1E6FFF;
  --blue-soft: #4A8AFF;
  --orange: #FF6B35;
  --orange-2: #FF8559;
  --orange-soft: #FFE4D6;

  --bg: #FFFFFF;
  --bg-soft: #F8FAFF;
  --bg-soft-2: #EEF2FB;

  --ink: #1A1A2E;
  --ink-2: #6B7280;
  --ink-3: #9CA3AF;

  --line: #E5E7EB;
  --line-2: #D1D5DB;

  --green: #10B981;
  --whatsapp: #25D366;

  /* Type */
  --f-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;

  /* Radius */
  --r-btn: 8px;
  --r-card: 12px;
  --r-pill: 999px;

  /* Shadows */
  --sh-card: 0 4px 24px rgba(10, 22, 40, 0.08);
  --sh-card-hover: 0 12px 40px rgba(10, 22, 40, 0.14);
  --sh-cta: 0 10px 30px rgba(255, 107, 53, 0.35);
  --sh-cta-hover: 0 14px 38px rgba(255, 107, 53, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 100px 0; position: relative; }
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--orange);
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 5.5vw, 68px); }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2vw, 24px); letter-spacing: -0.015em; line-height: 1.25; }
.section-h { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.section-h h2 { margin-bottom: 16px; }
.section-h p { color: var(--ink-2); font-size: 19px; }

.dark .eyebrow { color: var(--orange-2); }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.dark .section-h p { color: rgba(255, 255, 255, 0.7); }

/* underline highlight */
.uline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.uline::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 0.06em;
  height: 0.22em;
  background: var(--orange);
  z-index: -1;
  border-radius: 2px;
  transform: skewX(-8deg);
  opacity: 0.92;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 22px;
  border-radius: var(--r-btn);
  transition: all 180ms cubic-bezier(.2,.7,.3,1);
  white-space: nowrap;
  border: 1.5px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: #ff5a1f;
  transform: translateY(-1px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-outline-orange {
  background: transparent;
  color: #fff;
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
}
.btn-lg { padding: 18px 30px; font-size: 17px; }
.btn-xl { padding: 22px 38px; font-size: 19px; border-radius: 10px; }
.btn-arrow { transition: transform 200ms; }
.btn:hover .btn-arrow { transform: translateX(3px); }
@media (max-width: 768px) {
  .btn { padding: 10px 16px; font-size: 14px; }
  .btn-lg { padding: 12px 20px; font-size: 14px; }
  .btn-xl { padding: 13px 22px; font-size: 15px; }
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 240ms ease;
  padding: 16px 0;
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
  padding: 12px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-drop {
  width: 22px; height: 22px;
  display: inline-block;
}
.logo-dark { display: none; }
.nav.scrolled .logo-light { display: none; }
.nav.scrolled .logo-dark { display: block; }
.nav.is-hero .logo { color: #fff; }
.nav.is-hero.scrolled .logo { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: color 160ms;
}
.nav-links a:hover { color: var(--orange); }
.nav.is-hero .nav-links a { color: rgba(255, 255, 255, 0.82); }
.nav.is-hero .nav-links a:hover { color: var(--orange); }
.nav.is-hero.scrolled .nav-links a { color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-phone {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav.is-hero .nav-phone { color: rgba(255, 255, 255, 0.7); }
.nav.is-hero.scrolled .nav-phone { color: var(--ink-2); }

.mobile-toggle {
  display: none;
  color: var(--ink);
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.nav.is-hero .mobile-toggle { color: #fff; }
.nav.is-hero.scrolled .mobile-toggle { color: var(--ink); }

@media (max-width: 980px) {
  .nav-links, .nav-phone { display: none; }
  .mobile-toggle { display: flex; }
  #nav-button { display: none; }
}

/* Mobile menu drawer */
@media (max-width: 980px) {
  body.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 62px;
    left: 0; right: 0;
    background: var(--navy);
    z-index: 99;
    padding: 8px 0 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  }
  body.mobile-open .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  body.mobile-open .nav-links a {
    display: block;
    padding: 14px 24px;
    color: rgba(255,255,255,0.88);
    font-size: 16px;
    font-weight: 500;
  }
  body.mobile-open .nav-links a:hover { color: var(--orange); }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 140px 0 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 0 49.5%, rgba(30, 111, 255, 0.04) 49.5% 50.5%, transparent 50.5%),
    linear-gradient(45deg, transparent 0 49.5%, rgba(255, 107, 53, 0.03) 49.5% 50.5%, transparent 50.5%);
  background-size: 80px 80px, 80px 80px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(30, 111, 255, 0.18), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  padding-bottom: 80px;
}
.hero-eyebrow {
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
}
.hero h1 {
  color: #fff;
  font-size: clamp(46px, 6vw, 60px);
  font-weight: 800;
  margin-bottom: 28px;
}
.hero h1 span.line { display: block; }
.hero-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-proof .dot { width: 3px; height: 3px; background: rgba(255,255,255,0.4); border-radius: 50%; }
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-urgency {
  font-size: 13px;
  color: var(--orange-2);
  font-weight: 500;
}

.hero-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.hero-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.hero-img-badge .stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; }
.hero-img-badge .txt { color: var(--ink); font-size: 13px; font-weight: 600; line-height: 1.3; }
.hero-img-badge .txt small { color: var(--ink-2); font-weight: 500; display: block; font-size: 11px; }

/* hero ticker */
.hero-ticker {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  overflow: hidden;
}
.hero-ticker-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}
.ticker-track {
  display: flex;
  gap: 48px;
  animation: tick 40s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: rgba(255,255,255,0.32);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.ticker-track span::after {
  content: "·";
  color: rgba(255,255,255,0.18);
}
@keyframes tick {
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .hero { padding-top: 110px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 60px; }
  .hero-img-wrap { max-width: 460px; margin: 0 auto; }
}

/* ============================================================
   Problem section (3)
   ============================================================ */
.problem { background: var(--bg-soft); }
.problem .section-h { margin-bottom: 56px; }
.stat-block {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,22,40,0.18);
}
.stat-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(30,111,255,0.25), transparent 60%);
}
.stat-block .stat-num {
  font-family: var(--f-display);
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
}
.stat-block .stat-label {
  font-size: 17px;
  color: rgba(255,255,255,0.86);
  margin-top: 14px;
  position: relative;
  line-height: 1.45;
}
.stat-caption {
  text-align: center;
  font-size: 13px;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 auto 56px;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.p-card {
  background: #fff;
  border-radius: var(--r-card);
  padding: 32px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--sh-card);
  transition: transform 220ms, box-shadow 220ms;
}
.p-card:hover { transform: translateY(-4px); box-shadow: var(--sh-card-hover); }
.p-card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--bg-soft-2);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.p-card h3 { margin-bottom: 10px; font-size: 20px; }
.p-card p { color: var(--ink-2); font-size: 15.5px; line-height: 1.55; }

.problem-transition {
  text-align: center;
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}
.problem-transition .arrow {
  display: inline-block;
  margin-left: 8px;
  color: var(--orange);
}

@media (max-width: 820px) {
  .problem-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   How it works (4)
   ============================================================ */
.process { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(30,111,255,0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,107,53,0.08), transparent 50%);
  pointer-events: none;
}
.process .container { position: relative; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  margin-bottom: 56px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(to right, rgba(255,107,53,0) 0%, rgba(255,107,53,0.4) 10%, rgba(255,107,53,0.4) 90%, rgba(255,107,53,0) 100%);
  z-index: 0;
}
.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  transition: transform 220ms, border-color 220ms;
}
.step:hover { transform: translateY(-4px); border-color: rgba(255,107,53,0.35); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 32px;
  background: rgba(255,107,53,0.15);
  color: var(--orange);
  border-radius: 16px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.step h3 { color: #fff; margin-bottom: 12px; font-size: 22px; }
.step p { color: rgba(255,255,255,0.72); font-size: 15.5px; line-height: 1.55; margin-bottom: 18px; }
.step-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-cta {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.process-cta p {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  max-width: 640px;
}
.process-cta strong { color: var(--orange-2); font-weight: 600; }

@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .steps::before { display: none; }
}

/* ============================================================
   Pricing (5)
   ============================================================ */
.pricing { background: #fff; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 220ms, box-shadow 220ms;
  box-shadow: var(--sh-card);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-card-hover); }
.plan h3 { font-size: 22px; margin-bottom: 6px; }
.plan-tag {
  color: var(--ink-2);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.5;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.plan-price .amt {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 52px;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.plan-price .cur {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}
.plan-monthly {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.plan-monthly.hidden { visibility: hidden; }

.plan ul {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  flex: 1;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.plan li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
}
.plan li .chk {
  flex: 0 0 20px;
  color: var(--green);
  margin-top: 2px;
}

.plan-popular {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(10,22,40,0.25);
  position: relative;
  overflow: hidden;
}
.plan-popular::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(30,111,255,0.18), transparent 60%);
}
.plan-popular h3, .plan-popular .plan-price .amt { color: #fff; position: relative; }
.plan-popular .plan-tag { color: rgba(255,255,255,0.7); position: relative; }
.plan-popular .plan-price .cur { color: rgba(255,255,255,0.7); }
.plan-popular ul { border-top-color: rgba(255,255,255,0.12); position: relative; }
.plan-popular li { color: rgba(255,255,255,0.88); }
.plan-popular li .chk { color: var(--orange); }
.plan-popular:hover { transform: translateY(-12px); }
.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  z-index: 2;
}

.pricing-disclaim {
  text-align: center;
  font-size: 14px;
  color: var(--ink-2);
  margin-top: -32px;
  margin-bottom: 48px;
}

.addons {
  margin-top: 56px;
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}
.addons-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin-right: 12px;
}
.addon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: all 180ms;
}
.addon-pill:hover { border-color: var(--orange); color: var(--orange); }
.addon-pill .price { color: var(--ink-2); }
.addon-pill:hover .price { color: var(--orange); }

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-popular { transform: none; }
}

/* ============================================================
   Portfolio (6)
   ============================================================ */
.portfolio { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(30,111,255,0.12), transparent 60%);
}
.portfolio .container { position: relative; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.work-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 24px;
  transition: all 240ms;
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,53,0.3);
  background: rgba(255,255,255,0.06);
}
.work-mockup {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #11203A, #1A2D4E);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.work-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--orange-2);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.work-card h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.work-services {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-bottom: 18px;
  flex: 1;
}
.work-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.35);
  border-radius: var(--r-pill);
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 600;
  align-self: flex-start;
}

.portfolio-cta { text-align: center; }

@media (max-width: 980px) {
  .work-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Why us (7)
   ============================================================ */
.why { background: #fff; position: relative; overflow: hidden; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.why-left h2 { margin-bottom: 24px; }
.why-left p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.7;
}
.why-left p + p { margin-top: 14px; }
.why-aus-map {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  opacity: 0.04;
  pointer-events: none;
}

.diffs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
}
.diff {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.diff-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 22px;
}
.diff h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.diff p {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .diffs { grid-template-columns: 1fr; }
}

/* ============================================================
   Guarantee (8)
   ============================================================ */
.guarantee {
  background:
    radial-gradient(circle at 20% 50%, rgba(255,107,53,0.55), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(30,111,255,0.4), transparent 50%),
    var(--navy);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guarantee-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
  max-width: 1080px;
  margin: 0 auto;
}
.seal { animation: gentleSpin 60s linear infinite; }
@keyframes gentleSpin { to { transform: rotate(360deg); } }
.guarantee h2 { color: #fff; margin-bottom: 20px; }
.guarantee p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 600px;
  line-height: 1.6;
}
.g-items {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  grid-column: 1 / -1;
}
.g-item {
  display: flex;
  gap: 14px;
  align-items: start;
}
.g-item-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-item h4 {
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.g-item p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.5; }

@media (max-width: 820px) {
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee p { margin: 0 auto; }
  .seal { margin: 0 auto; }
  .g-items { grid-template-columns: 1fr; text-align: left; }
}

/* ============================================================
   About (9)
   ============================================================ */
.about { background: var(--bg-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.team-photo {
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,22,40,0.14);
  position: relative;
}
.about-body p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.about-body h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 24px;
}
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.founder-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.founder-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-soft-2);
}
.founder-card .name {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}
.founder-card .title {
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 2px 0 4px;
}
.founder-card .bio { font-size: 13px; color: var(--ink-2); line-height: 1.4; }

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .founders { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ (10)
   ============================================================ */
.faq { background: #fff; }
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.faq-left { position: sticky; top: 100px; }
.faq-left h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 24px;
}
.faq-left p { color: var(--ink-2); font-size: 16px; margin-top: 16px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: #fff;
  overflow: hidden;
  transition: all 200ms;
}
.faq-item.open { border-color: var(--navy); box-shadow: var(--sh-card); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.faq-toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-soft);
  position: relative;
  color: var(--navy);
  font-size: 0;
  transition: all 220ms;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 1px;
}
.faq-toggle::before {
  width: 14px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq-toggle::after {
  width: 2px; height: 14px;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-toggle {
  background: var(--orange);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner {
  padding: 0 24px 24px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-left { position: static; }
}

/* ============================================================
   Final CTA (11)
   ============================================================ */
.final-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  /* background: radial-gradient(circle, rgba(255,107,53,0.32), transparent 55%); */
  pointer-events: none;
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 70%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(36px, 4vw, 60px);
  color: #fff;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(16px, 2.4vw, 18px);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.final-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-top: 24px;
}
.final-trust span { display: inline-flex; align-items: center; gap: 6px; }
.final-trust .chk { color: var(--green); }
.final-urgency {
  margin-top: 28px;
  color: var(--orange-2);
  font-size: 14px;
  font-weight: 500;
}

/* ============================================================
   Footer (12)
   ============================================================ */
footer { background: #060e1c; color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.foot-brand .logo { color: #fff; margin-bottom: 14px; }
.foot-brand .tag {
  font-size: 14px;
  line-height: 1.55;
  max-width: 280px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
}
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 180ms;
}
.foot-social a:hover { background: var(--orange); color: #fff; }

.foot-col h5 {
  font-family: var(--f-display);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col p, .foot-col a {
  color: rgba(255,255,255,0.6);
  font-size: 14.5px;
  transition: color 160ms;
}
.foot-col a:hover { color: var(--orange-2); }
.foot-contact li { font-size: 14.5px; color: rgba(255,255,255,0.6); }
.foot-contact .lbl { color: rgba(255,255,255,0.4); font-size: 12px; }
.foot-contact li + li { margin-top: 8px; }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.foot-bottom a { color: rgba(255,255,255,0.5); }
.foot-bottom a:hover { color: var(--orange-2); }
.foot-bottom-r { display: flex; gap: 18px; }

@media (max-width: 820px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Floating elements
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14.5px;
  transition: all 220ms;
}
.whatsapp-fab:hover { transform: translateY(-2px); 
}
.whatsapp-fab .wa-icon {
  width: 28px; height: 28px;
  background: #fff;
  color: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(14px);
  color: rgba(255,255,255,0.86);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 13.5px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 320ms ease 600ms;
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar .cookie-text { color: rgba(255,255,255,0.78); }
.cookie-bar .cookie-text a { color: var(--orange-2); text-decoration: underline; text-underline-offset: 3px; }
.cookie-bar .cookie-btns { display: flex; gap: 10px; }
.cookie-btn {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.86);
  background: transparent;
  transition: all 160ms;
}
.cookie-btn:hover { background: rgba(255,255,255,0.06); }
.cookie-btn.primary { background: var(--orange); border-color: var(--orange); color: #fff; }
.cookie-btn.primary:hover { background: #ff5a1f; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(.2,.7,.3,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
  .reveal { opacity: 1; transform: none; }
}
