/* =============================================
   CJT Media — Simplified A/B Variant
   Shared Stylesheet
   ============================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  --navy:         #0B1D3A;
  --navy-mid:     #112348;
  --navy-light:   #1A3060;
  --orange:       #F5620F;
  --orange-hover: #D94E08;
  --white:        #FFFFFF;
  --light:        #F6F8FC;
  --text:         #1A2540;
  --muted:        #6B7A99;
  --border:       #DDE3F0;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow:       0 4px 24px rgba(11,29,58,0.10);
  --shadow-lg:    0 8px 40px rgba(11,29,58,0.16);
  --transition:   0.2s ease;
  --max-w:        1160px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HEADER & NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo span { color: var(--orange); }

/* Desktop nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-desktop a:hover { color: var(--white); }
.nav-desktop .btn-nav {
  background: var(--orange);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background var(--transition), transform var(--transition);
}
.nav-desktop .btn-nav:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 40px;
  height: 40px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.nav-mobile.open {
  max-height: 400px;
  padding: 12px 0 20px;
}
.nav-mobile a {
  display: block;
  padding: 13px 24px;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), color var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.nav-mobile .btn-nav-mobile {
  margin: 12px 24px 0;
  background: var(--orange);
  color: var(--white) !important;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
  padding: 14px 24px !important;
}
.nav-mobile .btn-nav-mobile:hover { background: var(--orange-hover); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(245,98,15,0.30);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,98,15,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.40);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 17px 36px;
  font-size: 1.05rem;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 88px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(245,98,15,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(245,98,15,0.15);
  color: var(--orange);
  border: 1px solid rgba(245,98,15,0.30);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 760px;
  margin: 0 auto 20px;
}
.hero h1 em {
  color: var(--orange);
  font-style: normal;
}
.hero-sub {
  color: rgba(255,255,255,0.70);
  font-size: 1.15rem;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.stat-num span { color: var(--orange); }
.stat-label {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 4px;
}

/* =============================================
   SECTION DEFAULTS
   ============================================= */
.section { padding: 72px 0; }
.section-light { background: var(--light); }
.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.section-header p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 1.05rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.60); }

/* =============================================
   SERVICE CARDS
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,98,15,0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =============================================
   TESTIMONIAL
   ============================================= */
.testimonial-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-block::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 40px;
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.4;
  font-family: Georgia, serif;
}
.testimonial-text {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.92rem;
}
.testimonial-biz {
  color: rgba(255,255,255,0.50);
  font-size: 0.85rem;
  margin-top: 2px;
}
.stars {
  color: #FFC043;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(245,98,15,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  max-width: 640px;
  margin: 0 auto 14px;
  line-height: 1.2;
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 32px;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 14px auto 0;
}

/* =============================================
   ABOUT PAGE SPECIFICS
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1.25;
}
.about-grid p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-img {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
  font-weight: 500;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.perk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.perk-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.perk-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}
.perk-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-details h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact-details p {
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(245,98,15,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.contact-item-text span {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

/* =============================================
   FORMS
   ============================================= */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,98,15,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0BAD0; }

/* Audit form specifics */
.audit-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.audit-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(245,98,15,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.audit-hero-text {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}
.audit-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  max-width: 600px;
  margin: 0 auto 14px;
}
.audit-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}
.audit-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  top: -16px;
  padding: 0 24px 72px;
}
.audit-perks {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.audit-perk {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
}
.audit-perk::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
}
.form-card .form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-card .form-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.form-card .btn { width: 100%; justify-content: center; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 12px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 48px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-full .service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 24px;
  align-items: start;
}
.services-full .service-card .service-icon { margin-bottom: 0; }
.services-full .service-card .service-text h3 { margin-bottom: 6px; }
.services-full .service-card .service-text p { margin-bottom: 12px; }
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tag {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
}

/* =============================================
   UTILITY
   ============================================= */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.divider {
  width: 48px;
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
  margin: 16px auto 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: flex; }
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .services-full .service-card { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 72px; }
  .section { padding: 56px 0; }
  .testimonial-block { padding: 36px 28px; }
  .form-card { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .audit-form-wrap { padding: 0 16px 56px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-lg { padding: 15px 28px; }
}

/* =============================================
   COUNTRY STRIP (hero sub-strip)
   ============================================= */
.country-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.country-strip span {
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.country-strip .dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
}
@media (max-width: 520px) {
  .country-strip { gap: 14px; }
  .country-strip span { font-size: 0.72rem; }
}

/* =============================================
   FEATURED (FOUNDATION) SERVICE CARD
   ============================================= */
.foundation-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 48px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}
.foundation-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 50%, rgba(245,98,15,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.foundation-card > * { position: relative; z-index: 1; }
.foundation-card .foundation-badge {
  display: inline-block;
  background: rgba(245,98,15,0.18);
  color: var(--orange);
  border: 1px solid rgba(245,98,15,0.30);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.foundation-card h3 {
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--white);
}
.foundation-card p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.foundation-points {
  display: grid;
  gap: 10px;
}
.foundation-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  line-height: 1.55;
}
.foundation-points li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
}
@media (max-width: 820px) {
  .foundation-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 24px; }
}

/* =============================================
   CASE STUDY / RESULTS CARDS
   ============================================= */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.result-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.result-tag {
  display: inline-block;
  background: var(--light);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.result-metric {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 8px;
}
.result-metric span { color: var(--orange); }
.result-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.result-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(245,98,15,0.10);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--orange);
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-body {
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* =============================================
   CALENDLY EMBED WRAPPER
   ============================================= */
.calendly-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px 72px;
  position: relative;
  top: -24px;
}
.calendly-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 14px;
  overflow: hidden;
}
.calendly-inline-widget {
  min-width: 320px;
  height: 720px;
  width: 100%;
}
.calendly-fallback {
  text-align: center;
  padding: 24px;
  font-size: 0.9rem;
  color: var(--muted);
}
.calendly-fallback a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
}
@media (max-width: 720px) {
  .calendly-inline-widget { height: 820px; }
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  z-index: 1000;
  display: none;
  border: 1px solid rgba(255,255,255,0.10);
}
.cookie-banner.show { display: block; }
.cookie-banner p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.85);
}
.cookie-banner p a {
  color: var(--orange);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1;
  min-width: 110px;
  padding: 9px 14px;
  border-radius: var(--radius);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.cookie-accept { background: var(--orange); color: var(--white); }
.cookie-accept:hover { background: var(--orange-hover); transform: translateY(-1px); }
.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.30) !important;
}
.cookie-reject:hover { background: rgba(255,255,255,0.05); }

/* =============================================
   PROSE PAGE (privacy etc.)
   ============================================= */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  color: var(--text);
}
.prose h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  color: var(--navy);
}
.prose .updated {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 32px;
}
.prose h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin: 32px 0 10px;
  letter-spacing: -0.02em;
}
.prose h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 6px;
}
.prose p, .prose li {
  color: var(--text);
  line-height: 1.75;
  font-size: 0.97rem;
  margin-bottom: 12px;
}
.prose ul { padding-left: 20px; }
.prose ul li { list-style: disc; margin-bottom: 6px; }
.prose a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
}
.prose strong { color: var(--navy); font-weight: 700; }
