/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #fbb917;
  --gold-light: #fccf55;
  --gold-dark: #d49a0e;
  --gold-bg: #fffbec;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --gray-50: #F7F7F5;
  --gray-100: #EFEFEC;
  --gray-200: #DEDDD8;
  --gray-400: #9B9A94;
  --gray-600: #5C5B56;
  --gray-800: #2C2B27;
  --black: #161614;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Typography helpers ── */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-bg);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 56px;
  text-align: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gray-800);
  border: 2px solid var(--gray-200);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-nav {
  background: var(--black);
  color: var(--white);
  font-size: 0.875rem;
  padding: 10px 20px;
}
.btn-nav:hover {
  background: var(--gold-dark);
}

.btn-lg {
  font-size: 1rem;
  padding: 16px 32px;
}

.btn-full { width: 100%; justify-content: center; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-color: var(--gray-100);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; }
.logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}
.logo-accent { color: var(--gold-dark); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--gray-100);
  gap: 4px;
}
.nav-mobile a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  color: var(--gray-800);
  font-size: 1rem;
  border-bottom: 1px solid var(--gray-100);
}
.nav-mobile a:last-child { border: none; margin-top: 12px; text-align: center; }
.nav-mobile.open { display: flex; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(201,168,76,0.12) 0%, transparent 70%),
    radial-gradient(circle at 10% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-bg);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  padding: 16px 36px;
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.trust-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black);
}
.trust-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 500;
  white-space: nowrap;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--gray-400);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Logo Strip ── */
.logo-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 28px 0;
  text-align: center;
}

.strip-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.strip-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}

.strip-icon {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ── Hero Split Layout ── */
.hero-split { text-align: left; padding: 100px 0 60px; }
.hero-split .hero-badge { display: inline-flex; }

.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left { display: flex; flex-direction: column; gap: 0; }
.hero-left .hero-cta { justify-content: flex-start; }
.hero-left .hero-trust {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow);
}

/* ── Dashboard Image ── */
.hero-right { position: relative; }

.hero-dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.12));
  animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.dashboard {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.1), 0 4px 24px rgba(201,168,76,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.dashboard::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), transparent 60%);
  z-index: -1;
}

.dash-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.dash-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: box-shadow 0.2s;
}
.dash-card:hover {
  box-shadow: 0 4px 16px rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.3);
}

.dash-card-wide { grid-column: span 2; }

.dash-card-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.dash-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}
.google-icon { background: #fff; border: 1px solid #ddd; color: #4285F4; font-size: 0.7rem; }
.reviews-icon { background: #FFF8E1; font-size: 0.6rem; }
.leads-icon { background: #E8F5E9; font-size: 0.6rem; }
.social-icon { background: #F3E5F5; font-size: 0.6rem; }
.appt-icon { background: #E3F2FD; font-size: 0.6rem; }
.pay-icon { background: var(--gold-bg); font-size: 0.6rem; }

.dash-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}
.dash-val-sm {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-400);
}
.dash-val-gold { color: var(--gold-dark); }

.dash-stars { font-size: 0.6rem; color: #F5A623; letter-spacing: 1px; }

.dash-sub {
  font-size: 0.62rem;
  color: var(--gray-400);
  font-weight: 500;
}
.dash-up { color: #2E7D32; }

.dash-bar {
  height: 4px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  margin: 4px 0;
}
.dash-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 4px;
}

.dash-sparkline {
  width: 100%;
  height: 24px;
  margin: 2px 0;
}
.dash-sparkline svg { width: 100%; height: 100%; }

.dash-progress-wrap { margin-top: 6px; }
.dash-progress {
  height: 5px;
  background: var(--gray-200);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 4px;
}
.dash-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 5px;
}
.dash-progress-label { font-size: 0.62rem; color: var(--gray-400); }

/* Inbox */
.dash-inbox {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
}
.dash-inbox-header {
  background: var(--black);
  color: var(--white);
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-inbox-badge {
  background: var(--gold);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}
.dash-inbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--gray-100);
}
.dash-inbox-item:last-child { border: none; }
.dash-inbox-src {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 800;
  flex-shrink: 0;
}
.dash-inbox-src.fb { background: #1877F2; color: white; }
.dash-inbox-src.sms { background: var(--gray-200); font-size: 0.7rem; }
.dash-inbox-src.g { background: #EA4335; color: white; }
.dash-inbox-text {
  flex: 1;
  font-size: 0.7rem;
  color: var(--gray-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-inbox-text strong { color: var(--black); }
.dash-inbox-time { font-size: 0.62rem; color: var(--gray-400); flex-shrink: 0; }

/* Responsive */
@media (max-width: 1000px) {
  .hero-split-inner { grid-template-columns: 1fr; }
  .dash-row { grid-template-columns: repeat(2, 1fr); }
  .hero-split { text-align: center; }
  .hero-left .hero-cta { justify-content: center; }
  .hero-dashboard-img { max-width: 320px; width: 90%; margin: 0 auto; display: block; }
  .hero-left .hero-trust { align-self: center; }
}

@media (max-width: 500px) {
  .dash-row { grid-template-columns: repeat(2, 1fr); }
  .dash-card-wide { grid-column: span 2; }
}

/* ── Hero Ratings ── */
.hero-ratings {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--black);
  border-radius: 100px;
  padding: 12px 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.rating-badge { display: flex; align-items: center; gap: 8px; }
.rating-logo {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.85rem;
  flex-shrink: 0;
}
.google-logo { background: white; color: #4285F4; }
.fb-logo { background: #1877F2; color: white; }
.tp-logo { background: #00B67A; color: white; font-size: 0.75rem; }
.rating-info { display: flex; flex-direction: column; gap: 1px; }
.rating-name { font-size: 0.72rem; font-weight: 700; color: white; }
.rating-stars { font-size: 0.65rem; color: #F5A623; letter-spacing: 1px; }
.rating-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.15); }

/* ── Features Intro ── */
.features-intro {
  padding: 72px 0 20px;
  text-align: center;
}
.features-intro .section-title { margin-bottom: 0; }

/* ── Website Mockup ── */
.website-mockup {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  max-width: 420px;
  width: 100%;
}
.wm-bar {
  background: #e8e8e8;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wm-dot { width: 10px; height: 10px; border-radius: 50%; }
.wm-dot.r { background: #FF5F57; }
.wm-dot.y { background: #FEBC2E; }
.wm-dot.g { background: #28C840; }
.wm-url {
  flex: 1;
  background: white;
  border-radius: 6px;
  font-size: 0.65rem;
  color: var(--gray-600);
  padding: 3px 10px;
  margin-left: 6px;
  text-align: center;
}
.wm-screen { background: var(--white); }
.wm-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--black);
}
.wm-brand { font-size: 0.7rem; font-weight: 800; color: white; }
.wm-navlinks { font-size: 0.6rem; color: rgba(255,255,255,0.5); }
.wm-hero-block {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wm-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  background: var(--gold-bg);
  color: var(--gold-dark);
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid var(--gold);
  width: fit-content;
}
.wm-hero-block h3 { font-size: 1rem; font-weight: 900; color: white; line-height: 1.2; margin: 0; }
.wm-hero-block p { font-size: 0.65rem; color: rgba(255,255,255,0.5); margin: 0; }
.wm-btns { display: flex; gap: 8px; margin-top: 4px; }
.wm-btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
}
.wm-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 0.6rem;
  padding: 5px 10px;
  border-radius: 100px;
}
.wm-cards {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: var(--gray-50);
}
.wm-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.wm-card-img { width: 100%; height: 40px; border-radius: 6px; }
.wm-card span { font-size: 0.62rem; font-weight: 600; color: var(--gray-600); }

/* ── Campaign Mockup ── */
.campaign-mockup {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  width: 100%;
}
.cm-header {
  background: var(--black);
  color: white;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.88rem;
}
.cm-body { padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.cm-label { font-size: 0.68rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; }
.cm-bubble {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.8rem;
  color: var(--gray-800);
  line-height: 1.5;
  position: relative;
}
.cm-tag {
  display: block;
  margin-top: 8px;
  font-size: 0.65rem;
  color: var(--gray-400);
  font-weight: 600;
}
.cm-stats-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  overflow: hidden;
}
.cm-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  border-right: 1px solid var(--gray-100);
  gap: 2px;
}
.cm-stat:last-child { border: none; }
.cm-stat-num { font-size: 1.1rem; font-weight: 800; color: var(--black); }
.cm-green { color: #2E7D32; }
.cm-gold { color: var(--gold-dark); }
.cm-stat-lbl { font-size: 0.62rem; color: var(--gray-400); font-weight: 600; text-transform: uppercase; }
.cm-send-btn {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}

/* ── SEO Mockup ── */
.seo-mockup {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  width: 100%;
}
.seo-searchbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
}
.seo-g { font-size: 1.1rem; font-weight: 900; color: #4285F4; }
.seo-query { flex: 1; font-size: 0.85rem; font-weight: 500; color: var(--black); }
.seo-search-icon { color: var(--gray-400); }
.seo-map-bar {
  background: #E8F4FD;
  padding: 8px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #1565C0;
  border-bottom: 1px solid #BBDEFB;
}
.seo-result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
}
.seo-result-top { background: rgba(201,168,76,0.04); border-left: 3px solid var(--gold); }
.seo-rank {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gold-dark);
  background: var(--gold-bg);
  padding: 3px 6px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
}
.seo-rank-grey { color: var(--gray-400); background: var(--gray-100); }
.seo-result-info { display: flex; flex-direction: column; gap: 3px; }
.seo-result-info strong { font-size: 0.82rem; color: var(--black); }
.seo-stars { font-size: 0.7rem; color: var(--gray-600); }
.seo-meta { font-size: 0.65rem; color: var(--gray-400); }
.seo-grey { color: var(--gray-400) !important; }
.seo-badge {
  background: var(--gold-bg);
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 10px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-align: center;
}

/* ── Trades Section ── */
.trades-section {
  background: #0d1f3c;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.trades-wave-top {
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 0%);
}
.trades-wave-bot {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--black);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.trades-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: white;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.2;
}
.trades-title span { color: var(--gold-light); }

.trades-slider-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.trades-track-outer {
  flex: 1;
  overflow: hidden;
}
.trades-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}
.trade-card {
  flex: 0 0 calc((100% - 80px) / 3);
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.trade-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.trade-card:hover img { transform: scale(1.05); }
.trade-card span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.65);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 14px;
  text-align: center;
}
.trades-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  line-height: 1;
}
.trades-arrow:hover { background: var(--gold); border-color: var(--gold); }
.trades-cta { text-align: center; margin-top: 36px; }

/* ── New Process Steps ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 48px auto 0;
}
.process-step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 40px;
}
.process-step:last-child { padding-bottom: 0; }
.process-line {
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(201,168,76,0.5), transparent);
}
.process-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-content { flex: 1; padding-top: 6px; }
.process-duration {
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}
.process-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.process-tag em { font-style: normal; color: rgba(255,255,255,0.4); }
.process-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.process-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

/* ── Our Work ── */
.our-work {
  padding: 80px 0 70px;
  background: var(--gray-50);
  text-align: center;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.our-work-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 48px;
  line-height: 1;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.work-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Laptop frame */
.laptop {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.14));
}

.laptop-screen {
  background: #1a1a1a;
  border-radius: 10px 10px 0 0;
  border: 8px solid #2a2a2a;
  border-bottom: 0;
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}

.laptop-base {
  background: linear-gradient(180deg, #2a2a2a, #3a3a3a);
  height: 14px;
  border-radius: 0 0 4px 4px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.laptop-foot {
  width: 40%;
  height: 6px;
  background: #444;
  border-radius: 0 0 4px 4px;
}

/* Site preview screens */
.site-preview {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: rgba(255,255,255,0.95);
  font-size: 6px;
}
.sp-nav.sp-nav-dark { background: #111; }
.sp-nav.sp-nav-gold { background: #0a0a0a; border-bottom: 1px solid var(--gold); }

.sp-logo { font-weight: 900; font-size: 7px; color: var(--black); }
.sp-logo-gold { color: var(--gold-light); letter-spacing: 0.05em; }
.sp-nav-dark .sp-logo { color: white; }
.sp-navlinks { font-size: 5px; color: #888; letter-spacing: 0.03em; }
.sp-nav-dark .sp-navlinks { color: #555; }

.sp-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 12px;
}
.sp-hero h3 {
  font-size: 9px;
  font-weight: 900;
  line-height: 1.3;
  color: white;
  margin-bottom: 4px;
}
.sp-hero p {
  font-size: 5.5px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Nav variants */
.sp-nav-white { background: #fff; border-bottom: 1px solid #eee; }
.sp-nav-blue-dark { background: #0d2b4e; }
.sp-logo-black { color: #111 !important; font-size: 6.5px !important; }
.sp-logo-white { color: #fff !important; font-size: 6px !important; }
.sp-links-dark { color: #555 !important; }
.sp-links-muted { color: rgba(255,255,255,0.5) !important; }

/* Hero variants */
.sp-hero-cream {
  background: linear-gradient(135deg, #faf6f0 0%, #f0e8dc 100%);
  gap: 4px;
}
.sp-hero-blue {
  background: linear-gradient(135deg, #0d2b4e 0%, #1a4a7a 100%);
  gap: 5px;
}
.sp-hero-warm {
  background: linear-gradient(135deg, #fff8f5 0%, #ffe8e0 100%);
  gap: 4px;
}

.sp-text-dark { color: #1a1a1a !important; font-size: 8px !important; line-height: 1.4 !important; }
.sp-text-white { color: #fff !important; font-size: 7.5px !important; line-height: 1.4 !important; }
.sp-sub-dark { font-size: 5px !important; color: #666 !important; }

.sp-badge-sm {
  font-size: 4.5px;
  font-weight: 700;
  background: rgba(0,0,0,0.07);
  color: #444;
  padding: 2px 6px;
  border-radius: 10px;
  letter-spacing: 0.04em;
}
.sp-badge-pink {
  background: rgba(220,80,80,0.1);
  color: #c04040;
}

.sp-cta-btn {
  margin-top: 4px;
  background: #e85d20;
  color: white;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 2px;
  display: inline-block;
}

/* Product row (Blackmouth) */
.sp-products-row {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background: #f9f4ee;
}
.sp-product {
  flex: 1;
  height: 32px;
  background: #e8ddd0;
  border-radius: 3px;
}

/* Services row */
.sp-services-row {
  display: flex;
  gap: 4px;
  padding: 8px 10px;
  background: #f5f5f5;
}
.sp-scard {
  flex: 1;
  height: 28px;
  background: white;
  border-radius: 3px;
  border: 1px solid #e0e0e0;
}
.sp-scard-blue {
  background: #e8f0f8;
  border-color: #c0d4e8;
}

.work-img-link {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.work-img-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.work-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Card text */
.work-card-label {
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.5;
  max-width: 300px;
}
.work-card-label a {
  color: var(--gold-dark);
  text-decoration: underline;
  word-break: break-all;
}
.work-card-label a:hover { color: var(--gold); }

.work-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}

.work-cta {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .work-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 40px; }
}

/* ── Services Grid ── */
.services {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  text-align: left;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 8px 32px rgba(201,168,76,0.12);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  background: var(--gold-bg);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── Feature Sections ── */
.feature-section {
  padding: 100px 0;
  background: var(--white);
}
.feature-section.feature-alt {
  background: var(--off-white);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }

.feature-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.feature-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.75;
}

.feature-list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1.4;
}
.feature-sub {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--black);
  margin-top: 3px;
  line-height: 1.6;
}

/* ── Phone Mockup ── */
.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.feature-gif {
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: block;
}

.phone-mockup {
  width: 280px;
  background: var(--black);
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}
.phone-screen {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
}
.phone-header {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-contact { font-size: 0.8rem; font-weight: 600; color: var(--black); }
.phone-time { font-size: 0.72rem; color: var(--gray-400); }

.phone-messages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.msg {
  max-width: 85%;
  font-size: 0.78rem;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 14px;
  position: relative;
}
.msg-in {
  background: var(--gray-100);
  color: var(--gray-800);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.msg-out {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.msg-time {
  display: block;
  font-size: 0.65rem;
  opacity: 0.7;
  margin-top: 4px;
}

/* ── Reviews Mockup ── */
.reviews-mockup {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  width: 100%;
}
.reviews-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.reviews-biz { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.reviews-rating { font-size: 0.85rem; color: var(--gray-600); }
.reviews-rating strong { color: var(--black); }
.reviews-rating span { color: var(--gray-400); }

.review-card {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
}
.review-stars { font-size: 0.85rem; margin-bottom: 8px; }
.review-card p { font-size: 0.82rem; color: var(--gray-800); line-height: 1.55; margin-bottom: 8px; }
.review-author { font-size: 0.75rem; color: var(--gray-400); font-weight: 600; }

.review-cta-badge {
  background: var(--gold-bg);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-align: center;
}

/* ── Inbox Mockup ── */
.inbox-mockup {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 360px;
  width: 100%;
}
.inbox-header {
  background: var(--black);
  color: var(--white);
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.inbox-badge {
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.inbox-list { padding: 8px 0; }
.inbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid var(--gray-100);
}
.inbox-item:last-child { border: none; }
.inbox-item.unread { background: rgba(201,168,76,0.04); }
.inbox-item:hover { background: var(--gray-50); }

.inbox-source {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.inbox-source.fb { background: #1877F2; color: white; }
.inbox-source.sms { background: var(--gray-100); font-size: 1rem; }
.inbox-source.g { background: #EA4335; color: white; font-size: 0.85rem; }
.inbox-source.ig { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); color: white; font-size: 0.7rem; }

.inbox-content {
  flex: 1;
  min-width: 0;
}
.inbox-content strong {
  display: block;
  font-size: 0.85rem;
  color: var(--black);
  margin-bottom: 2px;
}
.inbox-content span {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-400);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inbox-time { font-size: 0.7rem; color: var(--gray-400); flex-shrink: 0; }

/* ── Workflow Visual ── */
.workflow-visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  min-height: 420px;
}

.wf-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--gray-200) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: var(--radius);
  z-index: 0;
}

.wf-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 2;
}

/* Calendar — top right */
.wf-calendar {
  top: 0; right: 0;
  width: 240px;
  border-top: 3px solid var(--gold);
}
.wf-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.wf-card-title { font-size: 0.85rem; font-weight: 700; color: var(--black); }
.wf-date-range { font-size: 0.65rem; color: var(--gray-400); background: var(--gray-100); padding: 2px 7px; border-radius: 100px; }

.wf-cal-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.wf-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wf-cal-name { font-size: 0.82rem; font-weight: 600; color: var(--black); }
.wf-cal-date { font-size: 0.68rem; color: var(--gray-400); }
.wf-cal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wf-cal-type { font-size: 0.72rem; color: var(--gray-600); }
.wf-badge-confirmed {
  font-size: 0.68rem;
  font-weight: 700;
  background: #E8F5E9;
  color: #2E7D32;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid #A5D6A7;
}

/* Arrow 1 */
.wf-arrow { position: absolute; z-index: 1; }
.wf-arrow-1 { top: 100px; right: 160px; width: 80px; height: 60px; }
.wf-arrow-2 { bottom: 130px; left: 160px; width: 80px; height: 60px; }

/* Confirmation card — left */
.wf-confirm {
  top: 140px; left: 0;
  width: 210px;
  border-left: 3px solid #5b82e8;
}
.wf-confirm-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.3;
}
.wf-confirm-date {
  font-size: 0.72rem;
  color: #5b82e8;
  font-weight: 600;
  margin-bottom: 10px;
}
.wf-confirm-btn {
  display: block;
  width: 100%;
  background: var(--gray-100);
  border: none;
  border-radius: 100px;
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #5b82e8;
  cursor: pointer;
  text-align: center;
  margin-bottom: 10px;
}
.wf-confirm-icons { display: flex; gap: 8px; }
.wf-icon-bubble {
  width: 30px; height: 30px;
  background: var(--gold-bg);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

/* Funnel card — bottom right */
.wf-funnel {
  bottom: 0; right: 0;
  width: 230px;
  border-top: 3px solid #2BC0A0;
}
.wf-funnel-body {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 10px 0;
}
.wf-funnel-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.wf-funnel-tier {
  height: 10px;
  transition: width 0.3s;
}
.wf-funnel-stats {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.wf-funnel-dot {
  font-size: 0.65rem;
  color: white;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
}
.wf-funnel-revenue {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.wf-funnel-label {
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ── How It Works ── */
.how-it-works {
  padding: 100px 0;
  background: var(--black);
  text-align: center;
}
.how-it-works .section-label {
  color: var(--gold-light);
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.25);
}
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-sub { color: rgba(255,255,255,0.5); }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
}
.step-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  padding: 0 8px;
  margin-top: 12px;
  align-self: flex-start;
}

/* ── Why Unique ── */
.why-unique-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.why-unique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: #1a1f35;
  border-radius: var(--radius);
  padding: 20px 18px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.why-icon {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
.why-icon svg { display: block; }
.why-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin: 0 0 5px 0;
  line-height: 1.2;
}
.why-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 768px) {
  .why-unique-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .why-unique-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: var(--gray-50);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  text-align: left;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 12px 40px rgba(201,168,76,0.1);
  transform: translateY(-4px);
}

.t-stars { font-size: 1rem; margin-bottom: 16px; }
.testimonial-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.t-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--black);
}
.t-author span {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* ── Legit / Partners Banner ── */
.legit-banner {
  background: #1a1f35;
  padding: 56px 0 52px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  padding-bottom: 90px;
}
.legit-title {
  text-align: center;
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 48px;
  line-height: 1.15;
}
.legit-title span { color: white; }
.legit-track-wrap {
  overflow-x: auto;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.legit-track-wrap::-webkit-scrollbar { display: none; }
.legit-track-wrap.dragging { cursor: grabbing; }
.legit-track {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 24px;
  width: max-content;
}
.legit-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
}
.legit-logo img {
  height: 70px;
  width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
  user-select: none;
  pointer-events: none;
}
.legit-logo:hover img { opacity: 1; }
.legit-logo--lg img {
  height: 90px;
  width: 180px;
}

/* ── FAQ ── */
.faq-section {
  background: #f5f5f3;
  padding: 80px 0;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1.5px solid #e0e0dc;
  border-radius: 8px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  text-align: left;
  gap: 16px;
  transition: background 0.2s, color 0.2s;
}
.faq-q[aria-expanded="true"],
.faq-q.faq-q--active {
  background: var(--gold);
  color: white;
}
.faq-chevron {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}
.faq-a.open {
  max-height: 1200px;
  padding: 16px 22px 20px;
}
.faq-a p {
  margin: 0;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── Schedule CTA ── */
.schedule-cta {
  background: #f5f5f3;
  padding: 0 20px 60px;
}
.schedule-cta-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #1a1f35;
  border-radius: 16px;
  padding: 52px 64px;
}
.schedule-cta-left {
  flex: 1;
  text-align: center;
}
.schedule-cta-title {
  color: white;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}
.schedule-cta-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 32px;
  text-align: center;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.schedule-cta-btn {
  background: var(--gold);
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  text-align: center;
}
.schedule-cta-btn:hover { background: var(--gold-dark); }
.schedule-cta-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.schedule-logo-img {
  width: clamp(220px, 30vw, 400px);
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .schedule-cta-inner {
    padding: 40px 28px;
    text-align: center;
  }
  .schedule-cta-logo { display: none; }
}

/* ── Testimonials ── */
.testimonials-section {
  background: #f5f5f3;
  padding: 80px 0;
}
.testimonials-title {
  text-align: center;
  margin-bottom: 48px;
  color: var(--black);
}
.testimonials-title span {
  color: var(--black);
}
.testi-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-viewport {
  flex: 1;
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.testi-card {
  flex: 0 0 calc(50% - 12px);
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-width: 0;
}
.testi-video {
  width: 200px;
  min-width: 200px;
  height: 100%;
  object-fit: cover;
  background: #000;
  flex-shrink: 0;
}
.testi-content {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  flex: 1;
}
.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testi-quote {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
  font-style: italic;
}
.testi-name {
  font-weight: 700;
  color: var(--black);
  font-size: 0.9rem;
  margin: 0;
}
.testi-see-all {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: 4px;
}
.testi-see-all:hover { color: var(--gold-dark); }
.testi-arrow {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  padding: 0 4px;
  flex-shrink: 0;
  transition: color 0.2s;
  user-select: none;
}
.testi-arrow:hover { color: var(--gold-dark); }
@media (max-width: 900px) {
  .testi-card {
    flex: 0 0 100%;
  }
  .testi-video {
    width: 160px;
    min-width: 160px;
  }
}
@media (max-width: 600px) {
  .testi-card {
    flex-direction: column;
  }
  .testi-video {
    width: 100%;
    height: 200px;
  }
}

/* ── Pricing ── */
.pricing-section {
  background: var(--gray-50, #f9f9f7);
  padding: 80px 0;
}
.pricing-heading {
  text-align: center;
  margin-bottom: 20px;
}
.pricing-save-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}
.pricing-bonus {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: -8px 0 8px;
  min-height: 1.2em;
}
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 52px;
}
.pricing-toggle-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
}
.pricing-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--gold);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}
.pricing-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
  display: block;
}
.pricing-toggle[aria-pressed="true"] .pricing-toggle-knob {
  transform: translateX(22px);
}
.pricing-cards {
  display: none;
}
.pricing-single-wrap {
  display: flex;
  justify-content: center;
}
.pricing-card {
  background: var(--gold);
  border-radius: 16px;
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 1px solid #000;
  width: 100%;
  max-width: 480px;
  text-align: center;
}
.pricing-card--featured {
  background: var(--gold);
}
.pricing-badge {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: red;
  text-decoration: underline;
  text-decoration-color: red;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}
.pricing-plan {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  -webkit-text-stroke: unset;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
}
.pricing-amount {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  -webkit-text-stroke: unset;
}
.pricing-per {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 900;
  -webkit-text-stroke: unset;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0,0,0,0.2);
  width: 100%;
}
.pricing-features li {
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  text-align: center;
  -webkit-text-stroke: unset;
}
.pricing-btn-outline {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}
.pricing-btn-outline:hover { background: var(--gold); color: white; }
.pricing-btn-white {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 1.2rem;
  text-decoration: none;
  background: white;
  color: var(--black);
  transition: opacity 0.2s;
  margin-top: auto;
}
.pricing-btn-white:hover { opacity: 0.9; }
.pricing-stripe-wrap { margin-top: 40px; }

/* ── Pricing accordion card ── */
.pricing-single-wrap {
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.pricing-accordion-card {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border: 1px solid #e0e0e0;
}
.pricing-accordion-header {
  background: #1a1f35;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  padding: 16px 20px;
  letter-spacing: 0.01em;
}
.pricing-accordion-list { background: #f5f5f5; }
.pacc-item { border-bottom: 1px solid #e8e8e8; }
.pacc-item:last-child { border-bottom: none; }
.pacc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a1f35;
  text-align: left;
  transition: background 0.18s;
  gap: 12px;
}
.pacc-btn:hover { background: #eaeaea; }
.pacc-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #888;
  transition: transform 0.3s ease;
}
.pacc-btn[aria-expanded="true"] .pacc-chevron {
  transform: rotate(180deg);
}
.pacc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  padding: 0 20px;
  background: white;
}
.pacc-body.open {
  max-height: 160px;
  padding: 12px 20px 16px;
}
@media (max-width: 860px) {
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card--featured { transform: none; }
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-inner p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 32px;
}
.cta-banner .btn-gold {
  background: var(--white);
  color: var(--gold-dark);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.cta-banner .btn-gold:hover {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.cta-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* ── Contact ── */
.contact {
  padding: 60px 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.contact-calendar iframe {
  min-height: 600px;
  border-radius: 12px;
}

.contact-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-text p {
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.75;
}
.contact-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.perk {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
}

.contact-form {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-400);
}
.contact-form textarea { resize: vertical; }

.form-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
}

/* ── Footer ── */
.footer {
  background: #12172b;
  color: rgba(255,255,255,0.5);
}

/* Top bar */
.footer-topbar {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
}
.footer-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.footer-topbar-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-topbar-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
}
.footer-cta-btn {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.9rem;
  white-space: nowrap;
}
.footer-cta-btn:hover { background: var(--gold-light); color: #000; }

/* Main section */
.footer-main {
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-main-inner {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-blurb {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-blurb-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  gap: 48px;
  flex: 1;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 130px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }

/* Bottom bar */
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.78rem;
}
.footer-bottom-inner a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-inner a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom-inner span {
  color: rgba(255,255,255,0.3);
  margin-left: auto;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social-link {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social-link:hover { color: var(--gold); }

/* ── Scroll Animations ── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-trust {
    flex-direction: column;
    gap: 16px;
    border-radius: var(--radius);
    padding: 24px 32px;
  }
  .trust-divider { width: 40px; height: 1px; }

  .feature-row,
  .feature-row.feature-row-reverse,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    direction: ltr;
  }

  .feature-visual { order: -1; }

  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }

  .footer-main-inner { flex-direction: column; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-topbar-text { display: none; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .phone-mockup { width: 240px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-inner span { margin-left: 0; }
}
