/* ============================================
   REMOTE EXPERTS — Premium Landing Page
   Typography: Plus Jakarta Sans + Playfair Display
   Aesthetic: Dark luxury meets modern SaaS
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #F0F4FF;
  --bg-card: #FFFFFF;
  --bg-elevated: #E8EFFE;
  --bg-light: #F7F9FF;
  --bg-section: #F5F7FF;

  --ink: #0F1B3E;
  --ink-2: #1A2C5C;
  --ink-3: #3D5080;
  --ink-4: #6B7FAB;
  --ink-5: #9AAAD0;
  --border: rgba(99,139,255,0.12);
  --border-light: #D9E2F5;

  --blue: #2563EB;
  --blue-hover: #1D4ED8;
  --blue-soft: rgba(37,99,235,0.08);
  --blue-glow: rgba(37,99,235,0.22);
  --navy: #1E3A8A;
  --purple: #6D28D9;
  --green: #059669;
  --green-soft: rgba(5,150,105,0.10);
  --amber: #f59e0b;
  --red-strike: rgba(239,68,68,0.5);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}
html.menu-is-open,
html.menu-is-open body {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Noise texture removed — 0.025 opacity was imperceptible, saved SVG filter render on every page */

i { font-family: var(--serif); font-style: italic; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }
.reveal:nth-child(5) { transition-delay: 0.24s; }
.reveal:nth-child(6) { transition-delay: 0.30s; }
.reveal:nth-child(7) { transition-delay: 0.36s; }
.reveal:nth-child(8) { transition-delay: 0.42s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 14px;
  border: none; border-radius: var(--radius); cursor: pointer;
  transition: all 0.35s var(--ease); white-space: nowrap; letter-spacing: -0.01em;
}
.btn__arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn--glass {
  background: rgba(37,99,235,0.06);
  color: var(--blue);
  border: 1px solid rgba(37,99,235,0.18);
  backdrop-filter: blur(12px);
}
.btn--glass:hover {
  background: rgba(37,99,235,0.12);
  color: var(--navy);
  border-color: rgba(37,99,235,0.3);
}

.btn--outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--border-light);
}
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }

.btn--header { padding: 8px 20px; font-size: 13px; }
.btn--lg { padding: 14px 28px; font-size: 15px; }
.btn--full { width: 100%; padding: 14px 28px; font-size: 15px; }

/* ---------- Section Headings ---------- */
.tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-soft);
  padding: 5px 14px; border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.tag--light { background: rgba(59,130,246,0.15); }

.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.section-head h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.035em;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9990;
  padding: 16px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-bottom 0.4s var(--ease);
}
.header.scrolled {
  padding: 10px 0;
  background: rgba(240,244,255,0.97);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header.scrolled .nav__link { color: var(--ink-3); }
.header.scrolled .nav__link:hover { color: var(--ink); }
.header.scrolled .nav__link::after { background: var(--blue); }
.header.scrolled .hamburger span { background: var(--ink); }
.header.menu-open.scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: transparent !important;
  transition: none !important;
}
.header.menu-open .hamburger span { background: #fff !important; }
.header.menu-open .logo__img { filter: brightness(0) invert(1) !important; }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
}

.logo { display: flex; align-items: center; }
.logo__img { height: 32px; width: auto; filter: brightness(0); transition: filter 0.4s var(--ease); }
.header.scrolled .logo__img { filter: none; }

.nav { display: flex; gap: 32px; }
.nav__close { display: none; }
.nav__link {
  font-size: 13px; font-weight: 500; color: var(--ink-3);
  transition: color 0.3s; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: var(--blue); transition: width 0.3s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }

.header__right { display: flex; align-items: center; gap: 16px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 10000;
}
.hamburger span {
  display: block; width: 20px; height: 1.5px; background: var(--ink-3);
  border-radius: 2px; transition: all 0.3s var(--ease);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 0 0; overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: -1; }

.hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 25% 50%, rgba(37,99,235,0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 75% 30%, rgba(109,40,217,0.08), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 80%, rgba(5,150,105,0.06), transparent 40%);
}

.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(120px);
  animation: glow 25s ease-in-out infinite;
}
.hero__glow--1 { width: 600px; height: 600px; background: var(--blue); opacity: 0.18; top: -15%; right: 10%; }
.hero__glow--2 { width: 400px; height: 400px; background: var(--navy); opacity: 0.10; bottom: 20%; left: -5%; animation-delay: -8s; }
.hero__glow--3 { width: 300px; height: 300px; background: #60A5FA; opacity: 0.15; top: 50%; right: 30%; animation-delay: -16s; }

@keyframes glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.9); }
}

.hero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(37,99,235,0.10) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero__layout {
  display: grid; grid-template-columns: 1fr 440px; gap: 80px; align-items: center;
}

.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: var(--ink-3);
  background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.15);
  padding: 6px 16px; border-radius: var(--radius-full);
  margin-bottom: 28px;
}
.hero__pill-dot {
  width: 7px; height: 7px; background: var(--green); border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero__h1 {
  font-size: clamp(40px, 6vw, 72px); font-weight: 800;
  line-height: 1.02; letter-spacing: -0.045em;
  color: var(--ink); margin-bottom: 24px;
}
.hero__line { display: block; }
.hero__line--serif { font-family: var(--font); }
.hero__line--serif i { font-family: var(--serif); font-weight: 400; }

.hero__gradient-text {
  background: linear-gradient(135deg, #60A5FA, #2563EB, #1E3A8A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 17px; line-height: 1.7; color: var(--ink-3);
  max-width: 480px; margin-bottom: 32px;
}

.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero__chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--ink-3);
  background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.12);
  padding: 5px 12px; border-radius: var(--radius-full);
}

/* Form card */
.hero__form-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 40px rgba(37,99,235,0.10);
}
.hero__form-glow {
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--blue); opacity: 0.08; filter: blur(60px);
  pointer-events: none;
}
.hero__form-inner {
  position: relative; padding: 32px;
  backdrop-filter: blur(40px) saturate(150%);
}
.hero__form-title {
  font-size: 15px; font-weight: 600; color: var(--ink);
  margin-bottom: 24px; letter-spacing: -0.01em;
}
.hero__form-title strong { color: var(--blue); }

.form__field { margin-bottom: 14px; }
.form__field label {
  display: block; font-size: 12px; font-weight: 600; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px;
}
.form__field input,
.form__field select {
  width: 100%; padding: 12px 16px;
  font-family: var(--font); font-size: 14px; color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  transition: all 0.3s; appearance: none; -webkit-appearance: none;
}
.form__field input::placeholder { color: var(--ink-5); }
.form__field input:focus,
.form__field select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
  background: #fff;
}
.form__field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form__field select option { background: #fff; color: var(--ink); }
.form__micro {
  font-size: 11px; color: var(--ink-4); text-align: center; margin-top: 10px;
}

/* Trust strip */
.trust { margin-top: 64px; padding: 32px 0 48px; border-top: 1px solid var(--border-light); }
.trust__inner { display: flex; justify-content: center; align-items: center; gap: 48px; }
.trust__item { text-align: center; }
.trust__val {
  display: block; font-size: 28px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.03em;
}
.trust__lbl { font-size: 11px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.08em; }
.trust__sep { width: 1px; height: 32px; background: var(--border-light); }

/* =============================================
   LIGHT SECTIONS (pain, benefits, services, pricing, faq)
   ============================================= */
.pain, .benefits, .services, .pricing, .faq {
  background: #fff; color: var(--ink);
}

/* Pain Points */
.pain { padding: 100px 0; background: var(--bg-section); }
.pain__cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 48px; }
.pain__card {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center;
  transition: all 0.4s var(--ease);
}
.pain__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: transparent;
}
.pain__icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-section); color: var(--ink-3); border-radius: var(--radius);
  margin: 0 auto 14px; border: 1px solid var(--border-light);
}
.pain__card p { font-size: 14px; color: var(--ink-3); line-height: 1.5; }
.pain__card strong { color: var(--ink); }

.pain__bridge { max-width: 680px; margin: 0 auto; }
.pain__bridge-inner {
  text-align: center; padding: 40px; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(59,130,246,0.04), rgba(124,58,237,0.04));
  border: 1px solid rgba(59,130,246,0.1);
}
.pain__bridge-inner p { font-size: 17px; color: var(--ink-3); line-height: 1.7; margin-bottom: 24px; }
.pain__bridge-inner strong { color: var(--ink); }

/* Benefits */
.benefits { padding: 100px 0; }
.benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ben {
  background: var(--bg-section); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.4s var(--ease);
}
.ben:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); border-color: transparent; }
.ben--accent {
  grid-column: 2 / 4;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff; border: none;
}
.ben--accent h3, .ben--accent p { color: #fff; }
.ben--accent .ben__num { color: rgba(255,255,255,0.2); }

.ben__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.ben__num { font-size: 42px; font-weight: 800; color: rgba(37,99,235,0.20); letter-spacing: -0.04em; line-height: 1; }
.ben__icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
}
.ben__icon--blue { background: var(--blue-soft); color: var(--blue); }
.ben__icon--purple { background: rgba(124,58,237,0.1); color: var(--purple); }
.ben__icon--green { background: var(--green-soft); color: var(--green); }
.ben__icon--amber { background: rgba(245,158,11,0.1); color: var(--amber); }
.ben__icon--white { background: rgba(255,255,255,0.15); color: #fff; }

.ben h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.ben p { font-size: 14px; color: var(--ink-3); line-height: 1.65; }

/* Process */
.process {
  padding: 100px 0; background: var(--ink); color: #fff; position: relative; overflow: hidden;
}
.process .section-head h2 { color: #fff; }

.steps { max-width: 640px; margin: 0 auto; position: relative; padding-left: 64px; }
.steps::before {
  content: ''; position: absolute; left: 22px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--blue), rgba(99,102,241,0.2), transparent);
}
.step { position: relative; padding-bottom: 48px; }
.step:last-child { padding-bottom: 0; }
.step__marker {
  position: absolute; left: -64px; top: 0;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 50%; font-weight: 800; font-size: 16px; color: #fff;
  box-shadow: 0 0 0 6px var(--ink), 0 0 32px var(--blue-glow);
}
.step__badge {
  display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--blue); background: var(--blue-soft);
  padding: 3px 10px; border-radius: var(--radius-full); margin-bottom: 8px;
}
.step__body h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.step__body p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }

.process__cta { text-align: center; margin-top: 56px; }

/* Services */
.services { padding: 100px 0; background: var(--bg-section); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.svc {
  position: relative; background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  transition: all 0.4s var(--ease);
}
.svc:hover {
  transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); border-color: transparent;
}
.svc__badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--blue); background: var(--blue-soft);
  padding: 3px 8px; border-radius: var(--radius-full);
}
.svc__badge--demand { color: var(--amber); background: rgba(245,158,11,0.1); }
.svc__icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-section); color: var(--ink-3);
  border-radius: var(--radius); margin: 0 auto 14px;
}
.svc h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
.svc p { font-size: 12px; color: var(--ink-4); }
.services__note {
  text-align: center; margin-top: 40px; font-size: 14px; color: var(--ink-3);
}
.services__note a { color: var(--blue); font-weight: 600; }
.services__note a:hover { text-decoration: underline; }

/* Pricing */
.pricing { padding: 100px 0; }
.pricing__grid { max-width: 900px; margin: 0 auto 32px; }
.price-row {
  display: grid; grid-template-columns: 1.4fr 1.2fr 1.2fr 0.8fr; gap: 0;
  align-items: center; padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s;
}
.price-row:hover:not(.price-row--header) { background: var(--bg-section); }
.price-row--header {
  background: var(--ink); color: #fff; border-radius: var(--radius) var(--radius) 0 0;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  border: none;
}
.price-row--header small { display: block; font-weight: 400; opacity: 0.5; text-transform: none; letter-spacing: 0; margin-top: 2px; }
.price-row--header .price-row__re { color: var(--blue); }
.price-row--header .price-row__save { color: var(--green); text-align: center; }
.price-row__role { font-size: 14px; }
.price-row__us { font-size: 14px; color: var(--ink-4); }
.price-row__us s { text-decoration-color: var(--red-strike); }
.price-row__re { font-size: 14px; font-weight: 700; color: var(--ink); }
.price-row__save { text-align: center; }
.save-pill {
  display: inline-block; font-size: 13px; font-weight: 700;
  color: var(--green); background: var(--green-soft);
  padding: 4px 12px; border-radius: var(--radius-full);
}

.pricing__note {
  text-align: center; font-size: 14px; color: var(--ink-3);
  max-width: 600px; margin: 0 auto 32px;
}
.pricing__note strong { color: var(--ink); }
.pricing__cta { text-align: center; }

/* Proof / Testimonials */
.proof { padding: 100px 0; background: var(--bg-section); }
.proof__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.testi {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.4s var(--ease);
}
.testi:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); border-color: transparent; }
.testi__stars { font-size: 18px; color: var(--amber); margin-bottom: 16px; letter-spacing: 2px; }
.testi blockquote { font-size: 15px; font-weight: 500; line-height: 1.65; color: var(--ink); margin-bottom: 24px; }
.testi__author { display: flex; align-items: center; gap: 12px; }
.testi__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
}
.testi__author strong { display: block; font-size: 13px; }
.testi__author span { font-size: 12px; color: var(--ink-4); }

.proof__metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.metric {
  text-align: center; padding: 24px 16px;
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius);
}
.metric span {
  display: block; font-size: 32px; font-weight: 800; color: var(--blue);
  letter-spacing: -0.03em; margin-bottom: 4px;
}
.metric { font-size: 12px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.06em; }

/* FAQ */
.faq { padding: 100px 0; }
.faq__list { max-width: 720px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border-light); }
.faq__item summary {
  padding: 20px 0; font-size: 15px; font-weight: 600; color: var(--ink);
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  transition: color 0.3s;
}
.faq__item summary:hover { color: var(--blue); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; font-size: 22px; font-weight: 300; color: var(--ink-4);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { content: '\2212'; color: var(--blue); }
.faq__item p {
  padding-bottom: 20px; font-size: 14px; color: var(--ink-3); line-height: 1.7;
  animation: fadeIn 0.3s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* Final CTA */
.final {
  position: relative; padding: 100px 0; background: var(--ink); color: #fff; overflow: hidden;
}
.final__bg { position: absolute; inset: 0; }
.final__glow { position: absolute; border-radius: 50%; filter: blur(120px); }
.final__glow--1 { width: 500px; height: 500px; background: var(--blue); opacity: 0.12; top: -20%; right: 10%; }
.final__glow--2 { width: 350px; height: 350px; background: #60A5FA; opacity: 0.15; bottom: -10%; left: 5%; }

.final__layout {
  position: relative;
  display: grid; grid-template-columns: 1fr 440px; gap: 80px; align-items: center;
}
.final__text h2 {
  font-size: clamp(32px, 4.5vw, 52px); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.035em; margin-bottom: 20px;
}
.final__text p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 28px; }
.final__checklist { display: flex; flex-direction: column; gap: 10px; }
.final__checklist div {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75);
}

/* Footer */
.footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding: 64px 0 32px;
}
.footer .logo__img { filter: brightness(0) invert(1); }
.footer__brand p { font-size: 13px; margin-top: 12px; max-width: 260px; line-height: 1.6; }
.footer__col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3); margin-bottom: 16px;
}
.footer__col a { display: block; font-size: 13px; padding: 3px 0; transition: color 0.3s; }
.footer__col a:hover { color: #fff; }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer__bar-inner { display: flex; justify-content: space-between; align-items: center; }
.footer__bar p { font-size: 12px; }
.footer__bar div { display: flex; gap: 24px; }
.footer__bar a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer__bar a:hover { color: #fff; }

/* =============================================
   INNER PAGES — Shared Components
   ============================================= */

/* Video section */
.video-section { padding: 100px 0; background: #fff; }
.video-section .section-head h2 { color: var(--ink); }
.video-wrap {
  max-width: 900px; margin: 0 auto;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1), 0 0 0 1px var(--border-light);
  position: relative;
}
.video-player {
  width: 100%; display: block;
  background: #000; border-radius: var(--radius-xl);
}

/* WhatsApp floating button */
.wsp {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: #25D366; border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: all 0.3s var(--ease);
}
.wsp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

/* Active nav link */
.nav__link--active { color: var(--blue) !important; }
.header.scrolled .nav__link--active { color: var(--blue) !important; }

/* Page Hero (inner pages) */
.page-hero {
  position: relative; padding: 160px 0 80px; background: var(--bg); color: var(--ink);
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__inner { position: relative; z-index: 1; max-width: 680px; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.04em; margin-bottom: 16px;
}
.page-hero p { font-size: 17px; color: var(--ink-3); line-height: 1.7; max-width: 540px; }

/* Services detail cards */
.svc-detail__grid { display: flex; flex-direction: column; gap: 32px; }
.svc-full {
  background: var(--bg-section); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 40px; transition: all 0.4s var(--ease);
}
.svc-full:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.05); border-color: transparent; }
.svc-full__header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.svc-full__icon {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  background: var(--blue-soft); color: var(--blue); border-radius: var(--radius); flex-shrink: 0;
}
.svc-full__header h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.svc-full__badge {
  display: inline-block; font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--blue); background: var(--blue-soft);
  padding: 3px 10px; border-radius: var(--radius-full); margin-bottom: 4px;
}
.svc-full__badge--demand { color: var(--amber); background: rgba(245,158,11,0.1); }
.svc-full > p { font-size: 15px; color: var(--ink-3); line-height: 1.7; margin-bottom: 24px; max-width: 700px; }
.svc-full__tasks h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-4); margin-bottom: 12px; }
.svc-full__tasks ul { columns: 2; list-style: none; margin-bottom: 28px; }
.svc-full__tasks li {
  font-size: 14px; color: var(--ink-2); padding: 4px 0 4px 20px; position: relative;
}
.svc-full__tasks li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-soft); border: 2px solid var(--green);
}
.svc-full__pricing { display: flex; gap: 16px; flex-wrap: wrap; }
.svc-full__price {
  flex: 1; min-width: 180px; text-align: center; padding: 20px 24px;
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
}
.svc-full__price span { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-4); margin-bottom: 4px; }
.svc-full__price strong { display: block; font-size: 28px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.svc-full__price small { font-size: 14px; font-weight: 500; color: var(--ink-4); }
.svc-full__price em { display: block; font-size: 12px; color: var(--ink-4); font-style: normal; margin-top: 4px; }
.svc-full__price--featured {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border: none; color: #fff;
}
.svc-full__price--featured span { color: rgba(255,255,255,0.6); }
.svc-full__price--featured strong { color: #fff; }
.svc-full__price--featured small { color: rgba(255,255,255,0.6); }
.svc-full__price--featured em { color: rgba(255,255,255,0.5); }
.svc-full__price--custom { background: var(--bg-section); }

/* What's included grid */
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.included {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 24px; background: var(--bg-section); border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.included svg { flex-shrink: 0; margin-top: 2px; }
.included strong { display: block; font-size: 14px; margin-bottom: 4px; }
.included p { font-size: 13px; color: var(--ink-3); line-height: 1.5; margin: 0; }

/* About page */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.about-text p { font-size: 15px; color: var(--ink-3); line-height: 1.7; margin-bottom: 16px; }
.about-text h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 24px; line-height: 1.1; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat {
  text-align: center; padding: 28px 16px;
  background: var(--bg-section); border: 1px solid var(--border-light); border-radius: var(--radius-lg);
}
.about-stat span { display: block; font-size: 36px; font-weight: 800; color: var(--blue); letter-spacing: -0.03em; }
.about-stat p { font-size: 12px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.06em; margin: 0; }

.founder { max-width: 720px; }
.founder__info h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.founder__info h3 { font-size: 20px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.founder__role { font-size: 14px; color: var(--ink-4); margin-bottom: 16px; }
.founder__info p { font-size: 15px; color: var(--ink-3); line-height: 1.7; margin-bottom: 12px; }

.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.value-card {
  background: var(--bg-section); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  transition: all 0.4s var(--ease);
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.05); border-color: transparent; }
.value-card__num { font-size: 32px; font-weight: 800; color: rgba(37,99,235,0.20); margin-bottom: 8px; }
.value-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--ink-3); line-height: 1.5; }

.geo-grid { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.geo-item {
  padding: 20px 28px; background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); text-align: center;
}
.geo-item strong { display: block; font-size: 14px; margin-bottom: 2px; }
.geo-item p { font-size: 12px; color: var(--ink-4); margin: 0; }

/* Blog page */
.blog-featured {
  background: var(--bg-section); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 48px; margin-bottom: 48px;
}
.blog-featured__content h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 12px; line-height: 1.15;
}
.blog-featured__content p { font-size: 15px; color: var(--ink-3); line-height: 1.7; margin-bottom: 16px; max-width: 600px; }
.blog-cat {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--blue); background: var(--blue-soft);
  padding: 3px 10px; border-radius: var(--radius-full); margin-bottom: 12px;
}
.blog-meta { display: flex; gap: 16px; font-size: 12px; color: var(--ink-4); margin-bottom: 20px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: var(--bg-section); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.4s var(--ease);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); border-color: transparent; }
.blog-card__body { padding: 28px; }
.blog-card h3 { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; line-height: 1.35; }
.blog-card p { font-size: 13px; color: var(--ink-3); line-height: 1.6; margin-bottom: 12px; }
.blog-card__link { font-size: 13px; font-weight: 600; color: var(--blue); }
.blog-card__link:hover { text-decoration: underline; }

.newsletter-form { display: flex; gap: 8px; max-width: 420px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 12px 16px; font-family: var(--font); font-size: 14px;
  border: 1.5px solid var(--border-light); border-radius: var(--radius);
  color: var(--ink);
}
.newsletter-form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.newsletter-form .btn { flex-shrink: 0; padding: 12px 20px; }

/* Contact page */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.contact-info > p { font-size: 15px; color: var(--ink-3); line-height: 1.7; margin-bottom: 32px; }
.contact-channels { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-ch { display: flex; align-items: flex-start; gap: 14px; }
.contact-ch__icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--blue-soft); border-radius: var(--radius); flex-shrink: 0;
}
.contact-ch strong { display: block; font-size: 13px; margin-bottom: 2px; }
.contact-ch a { font-size: 14px; color: var(--blue); }
.contact-ch a:hover { text-decoration: underline; }
.contact-social { display: flex; gap: 12px; }
.contact-social__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--ink-3);
  padding: 8px 16px; border: 1px solid var(--border-light);
  border-radius: var(--radius); transition: all 0.3s;
}
.contact-social__link:hover { border-color: var(--blue); color: var(--blue); }

.contact-form-card {
  background: var(--bg-section); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 40px;
}
.contact-form-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.contact-form-card > p { font-size: 14px; color: var(--ink-3); margin-bottom: 24px; }
.contact-form-card .form__field label { color: var(--ink-3); }
.contact-form-card .form__field input,
.contact-form-card .form__field select,
.contact-form-card .form__field textarea {
  width: 100%; padding: 12px 16px; font-family: var(--font); font-size: 14px;
  color: var(--ink); background: #fff; border: 1.5px solid var(--border-light);
  border-radius: var(--radius); transition: all 0.3s;
}
.contact-form-card .form__field input:focus,
.contact-form-card .form__field select:focus,
.contact-form-card .form__field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft);
}
.contact-form-card .form__field textarea { resize: vertical; min-height: 80px; }
.contact-form-card .form__micro { color: var(--ink-4); }

.calendly-wrap { max-width: 600px; margin: 0 auto; }
.calendly-placeholder {
  padding: 48px 32px; background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); text-align: center;
}
.calendly-placeholder h3 { font-size: 20px; font-weight: 700; margin: 16px 0 8px; }
.calendly-placeholder p { font-size: 14px; color: var(--ink-3); margin-bottom: 24px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero__layout { grid-template-columns: 1fr; gap: 48px; }
  .hero__form-col { max-width: 480px; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .ben--accent { grid-column: 1 / -1; }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .proof__row { grid-template-columns: 1fr; }
  .final__layout { grid-template-columns: 1fr; gap: 48px; }
  .final__form { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(15,27,62,0.99);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99999;
    overflow: hidden;
    -webkit-transform: none;
    transform: none;
  }
  .nav.open { display: flex; }
  .nav__close {
    position: absolute; top: 20px; right: 24px;
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.6); padding: 8px;
    transition: color 0.3s;
    display: none;
  }
  .nav.open .nav__close { display: block; }
  .nav__close:hover { color: #fff; }
  .nav.open .nav__link { font-size: 24px; color: #fff !important; }
  .nav.open .nav__link::after { display: none; }
  .hamburger { display: flex; position: fixed; top: 16px; right: 24px; z-index: 999999; }
  .header.scrolled .hamburger { top: 10px; }
  .header__right .btn { display: none; }
  .header.menu-open {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: none !important;
  }

  .hero { padding-top: 80px; min-height: auto; }
  .hero__h1 { font-size: 36px; }
  .hero__btns { flex-direction: column; }
  .hero__chips { flex-direction: column; }

  .trust__inner { flex-wrap: wrap; gap: 24px; }
  .trust__sep { display: none; }
  .trust__item { flex: 1 1 40%; }

  .pain__cards { grid-template-columns: repeat(2, 1fr); }
  .pain__cards .pain__card:last-child { grid-column: 1 / -1; }

  .benefits__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__metrics { grid-template-columns: repeat(2, 1fr); }

  .price-row { grid-template-columns: 1fr 1fr; gap: 4px; padding: 16px; font-size: 13px; }
  .price-row--header { display: none; }
  .price-row__role { grid-column: 1 / -1; margin-bottom: 4px; }
  .price-row__us::before { content: 'US: '; font-weight: 600; color: var(--ink-4); }
  .price-row__re::before { content: 'RE: '; color: var(--blue); }
  .price-row__save { text-align: left; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__brand p { max-width: 100%; }
  .footer__col { text-align: center; }
  .footer__bar-inner { flex-direction: column; gap: 12px; text-align: center; }

  .steps { padding-left: 52px; }
  .step__marker { left: -52px; width: 38px; height: 38px; font-size: 14px; }
  .steps::before { left: 18px; }

  .svc-full__tasks ul { columns: 1; }
  .svc-full__pricing { flex-direction: column; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__h1 { font-size: 30px; }
  .pain__cards { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .proof__metrics { grid-template-columns: 1fr 1fr; gap: 8px; }
}
