/* ============================================================
   STYLES.CSS — All styles for Mozes Growth Agency
   Includes: Root variables, base, navbar, footer, chat, newsletter, and page styles
   ============================================================ */

/* ---------- ROOT VARIABLES ---------- */
:root {
  --white: #ffffff;
  --surface: #fafafa;
  --surface-2: #f3f3f3;
  --ink: #1c1c1c;
  --ink-soft: #6c6c6c;
  --border: #ececec;
  --red: #E70000;
  --red-dark: #B00000;
  --red-soft: #FF3B3B;
  --grad: linear-gradient(120deg, #FF2D2D 0%, #E70000 45%, #A80000 100%);
  --grad-soft: linear-gradient(180deg, rgba(231,0,0,.08), rgba(231,0,0,0));
  --shadow: 0 10px 30px rgba(0,0,0,0.06);
  --radius: 4px;
  --maxw: 1220px;
}

/* ---------- RESET & BASE ---------- */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 400;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
b, strong { font-weight: 500; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

/* ---------- TYPOGRAPHY HELPERS ---------- */
.eyebrow {
  color: var(--red);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-weight: 500;
}
.section-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 400;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 0 46px;
}
.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}
.head-row .section-sub { margin-bottom: 0; }

/* ---------- BUTTONS & LINKS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid var(--red);
  color: var(--red);
  background: transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--red); color: #fff; }
.btn.solid { background: var(--grad); color: #fff; border: none; }
.btn.solid:hover { filter: brightness(1.08); }
.btn.small { padding: 8px 18px; font-size: 13px; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 13.5px;
  font-weight: 500;
}
.link-arrow svg { width: 14px; height: 14px; transition: transform .25s ease; }
.link-arrow:hover svg { transform: translateX(4px); }
.tag {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 500;
}

/* ============================================================
   NAVBAR STYLES
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--grad);
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-link { display: flex; align-items: center; height: 42px; }
.logo-link img { height: 42px; width: auto; max-width: 180px; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  color: #fff;
  font-size: 14.5px;
  font-weight: 400;
  opacity: .92;
  position: relative;
  padding: 6px 0;
  text-decoration: none;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: #fff;
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-book {
  background: #fff;
  color: var(--red-dark);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.nav-book:hover { background: var(--ink); color: #fff; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none; border: none; padding: 4px;
}
.burger span { width: 24px; height: 2px; background: #fff; display: block; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  width: 100vw;
  overflow: hidden;
  padding: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 62%;
  background: linear-gradient(0deg, rgba(18,18,18,.97) 10%, rgba(18,18,18,.65) 55%, rgba(18,18,18,0) 100%);
  pointer-events: none;
}
.hero-content {
  position: absolute; left: 0; bottom: 0; z-index: 5;
  padding: 0 6vw 56px;
  max-width: 680px;
}
.hero-content .eyebrow { margin-bottom: 14px; }
.hero-content h1 {
  font-size: clamp(28px, 4.6vw, 50px);
  font-weight: 400;
  color: var(--red);
  margin: 0 0 16px;
  line-height: 1.12;
}
.hero-content p {
  color: #ffffff !important;
  font-size: 15.5px;
  line-height: 1.85;
  margin: 0 0 26px;
  max-width: 560px;
}
.hero-dots {
  position: absolute; right: 6vw; bottom: 56px; z-index: 5;
  display: flex; flex-direction: column; gap: 10px;
}
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1.5px solid var(--red);
  background: transparent; cursor: pointer; padding: 0;
}
.hero-dots button.active { background: var(--red); }

/* ---------- TRUSTED BY (marquee) ---------- */
.trusted { padding: 52px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trusted .wrap { padding: 0; }
.trusted p {
  text-align: center; color: var(--ink-soft); font-size: 12.5px;
  letter-spacing: .14em; text-transform: uppercase; margin: 0 0 30px;
}
.marquee { width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 70px; animation: scrollx 26s linear infinite; align-items: center; }
.marquee-track img { height: 32px; width: auto; filter: grayscale(1); opacity: .55; object-fit: contain; }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--white);
  padding: 38px 30px;
  transition: background .25s ease;
}
.service-card:hover { background: var(--surface); }
.service-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; }
.service-card h3 { font-size: 18px; font-weight: 500; margin: 0 0 10px; }
.service-card p { font-size: 14px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 20px; }

/* ---------- FEATURE SPLIT ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.feature-split .feature-img { height: 100%; min-height: 360px; overflow: hidden; }
.feature-split .feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-split .feature-text { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.feature-split.reverse { direction: rtl; }
.feature-split.reverse .feature-text { direction: ltr; }
.feature-split.reverse .feature-img { direction: ltr; }
.feature-text h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 400; margin: 0 0 16px; }
.feature-text p { font-size: 14.5px; line-height: 1.85; color: var(--ink-soft); margin: 0 0 24px; }

/* ---------- BANNER AD ---------- */
.banner-ad {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex; align-items: center;
}
.banner-ad img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner-ad .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(18,18,18,.86) 20%, rgba(18,18,18,.35) 65%, rgba(18,18,18,.05));
}
.banner-ad .content { position: relative; z-index: 2; padding: 60px; max-width: 560px; }
.banner-ad .content .eyebrow { color: var(--red-soft); }
.banner-ad h3 { color: #fff; font-size: clamp(24px, 3.2vw, 34px); font-weight: 400; margin: 0 0 16px; }
.banner-ad p { color: rgba(255,255,255,.82); font-size: 14.5px; line-height: 1.85; margin: 0 0 26px; }

/* ---------- COUNTS ---------- */
.counts { background: var(--grad); padding: 64px 0; }
.counts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}
.count-item .num { color: #fff; font-size: clamp(26px, 3.4vw, 38px); font-weight: 500; margin-bottom: 6px; }
.count-item .label { color: rgba(255,255,255,.88); font-size: 13px; letter-spacing: .03em; }

/* ---------- CARD GRID ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.proj-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.proj-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.proj-card .thumb { height: 190px; overflow: hidden; position: relative; }
.proj-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.proj-card:hover .thumb img { transform: scale(1.06); }
.proj-card .thumb .tag { position: absolute; left: 14px; top: 14px; }
.proj-card .body { padding: 22px; }
.proj-card h4 { font-size: 16.5px; font-weight: 500; margin: 0 0 10px; }
.proj-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; margin: 0 0 18px; }

/* ---------- UPLOAD CARDS ---------- */
.upload-card {
  display: flex; flex-direction: column;
  border-top: 2px solid var(--red);
  background: var(--surface);
  padding: 0;
}
.upload-card .thumb { height: 170px; overflow: hidden; }
.upload-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.upload-card .body { padding: 20px 22px 26px; }
.upload-card .cat { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; display: block; }
.upload-card h4 { font-size: 15.5px; font-weight: 500; margin: 0 0 8px; }
.upload-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.7; margin: 0 0 14px; }

/* ---------- CAREERS ---------- */
.career-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.career-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.career-card .badge {
  position: absolute; right: 12px; top: 12px;
  background: #fff; color: var(--red);
  font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; font-weight: 500;
}
.career-card .career-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.career-card h4 { font-size: 16.5px; font-weight: 500; margin: 0 0 6px; }
.career-card .apply-email { font-size: 12.5px; color: var(--red); margin-bottom: 12px; }
.career-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.7; margin: 0 0 20px; flex: 1; }

/* ---------- ABOUT ---------- */
.about-intro { max-width: 720px; margin: 0 auto 56px; text-align: center; }

/* ---------- TEAM ---------- */
.team-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 64px;
}
.team-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .25s ease, transform .25s ease;
}
.team-card:hover { border-color: var(--red); transform: translateY(-4px); }
.team-card h5 { font-size: 15px; font-weight: 500; margin: 0 0 4px; }
.team-card .role { font-size: 12.5px; color: var(--red); margin: 0 0 10px; }
.team-card .desc { font-size: 12px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 14px; }
.team-card .mail { font-size: 11.5px; color: var(--red); font-weight: 500; }

/* ---------- CEO SECTION ---------- */
.ceo-section {
  background: var(--surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ceo-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 900px;
  height: 320px;
  transform: translateX(-50%);
  background: var(--grad-soft);
  filter: blur(10px);
  pointer-events: none;
}
.ceo-section .eyebrow { position: relative; }
.ceo-section .section-title { position: relative; margin: 0 0 44px; }
.ceo-card {
  position: relative;
  max-width: none;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px 64px 52px;
  box-shadow: var(--shadow);
}
.ceo-photo { display: flex; justify-content: center; margin: 0 0 16px; }
.ceo-photo .photo-ring {
  width: 64px; height: 64px;
  border-radius: 50%;
  padding: 3px;
  background: var(--grad);
}
.ceo-photo img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--white);
}
.ceo-name { font-size: 19px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 8px; color: var(--ink); }
.ceo-role {
  display: inline-block;
  font-size: 11.5px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--red);
  background: var(--grad-soft);
  border: 1px solid var(--border);
  padding: 4px 14px;
  border-radius: 999px;
  margin: 0 0 22px;
}
.ceo-desc { font-size: 14.5px; line-height: 1.85; color: var(--ink-soft); max-width: 800px; margin: 0 auto 20px; }
.ceo-email {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 500; color: var(--red);
}
.ceo-email:hover { text-decoration: underline; }
.ceo-divider { width: 48px; height: 2px; background: var(--grad); border-radius: 2px; margin: 26px auto; }
.ceo-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.ceo-actions .btn svg { flex-shrink: 0; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 22px; font-weight: 400; margin: 0 0 18px; }
.contact-info .row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-info .row svg { width: 18px; height: 18px; stroke: var(--red); fill: none; flex-shrink: 0; margin-top: 3px; }
.contact-info .row div { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.contact-info .row strong { color: var(--ink); display: block; font-weight: 500; margin-bottom: 2px; }



/* ============================================================
   FOOTER STYLES
   ============================================================ */
footer { background: var(--surface-2); border-top: 1px solid var(--border); padding: 60px 0 26px; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px;
}
.footer-brand img { height: 34px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--ink-soft); line-height: 1.8; max-width: 280px; }
.footer-col h6 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-weight: 500; margin: 0 0 18px; color: var(--ink); }
.footer-col a { display: block; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 12px; text-decoration: none; }
.footer-col a:hover { color: var(--red); }
.social-row { display: flex; gap: 12px; margin-top: 6px; }
.social-row a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--red); border-color: var(--red); }
.social-row a:hover svg { stroke: #fff; }
.social-row svg { width: 15px; height: 15px; stroke: var(--ink-soft); fill: none; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: var(--ink-soft);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .career-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .counts-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-split .feature-img { min-height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; inset: 64px 0 0 0; height: calc(100vh - 64px);
    background: var(--grad); flex-direction: column; justify-content: flex-start;
    padding: 36px 24px; gap: 26px;
    transform: translateX(100%); transition: transform .3s ease; z-index: 900;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 18px; }
  .nav-book { display: none; }
  .nav-links .nav-book-mobile {
    display: inline-flex; background: #fff; color: var(--red-dark);
    padding: 12px 24px; border-radius: 999px; font-weight: 500; margin-top: 10px;
    text-decoration: none;
  }
  .burger { display: flex; }
  section { padding: 60px 0; }
  .services-grid, .career-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .counts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .hero-content { max-width: 92%; padding: 0 5vw 40px; }
  .hero-dots { display: none; }
  .ceo-card { padding: 32px 24px 30px; border-radius: 16px; }
  .ceo-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .ceo-actions .btn { justify-content: center; }
}
@media (max-width: 1100px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }






html {
  scroll-behavior: smooth; /* This enables native smooth scroll */
}







/* ============================================================
   SERVICE PAGE SPECIFIC STYLES
   Add these to your existing styles.css
   ============================================================ */

/* ---------- QUICK NAV ---------- */
.quicknav {
  background: var(--white); 
  border-bottom: 1px solid var(--border); 
  position: sticky; 
  top: 70px; 
  z-index: 900;
}
.quicknav .wrap {
  display: flex; 
  gap: 30px; 
  overflow-x: auto; 
  padding: 16px 24px;
}
.quicknav a {
  font-size: 13px; 
  font-weight: 500; 
  color: var(--ink-soft); 
  white-space: nowrap;
  padding: 4px 2px; 
  border-bottom: 2px solid transparent;
}
.quicknav a:hover { color: var(--red); }

/* ---------- PROCESS GRID ---------- */
.process-grid {
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 24px;
}
.process-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}
.process-card:hover {
  transform: translateY(-5px); 
  box-shadow: var(--shadow);
}
.process-card .step-num {
  font-size: 13px; 
  color: var(--red); 
  font-weight: 500;
  letter-spacing: .08em; 
  margin-bottom: 16px;
}
.process-card h4 {
  font-size: 16.5px; 
  font-weight: 500; 
  margin: 0 0 10px;
}
.process-card p {
  font-size: 13.5px; 
  color: var(--ink-soft); 
  line-height: 1.7; 
  margin: 0;
}

/* ---------- PRICING GRID ---------- */
.pricing-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px; 
  align-items: stretch;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 34px 28px;
  background: var(--white);
  display: flex; 
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover {
  transform: translateY(-5px); 
  box-shadow: var(--shadow);
}
.price-card.featured {
  border-color: var(--red);
  position: relative;
  background: var(--grad-soft);
}
.price-card .plan-badge {
  align-self: flex-start;
  margin-bottom: 14px;
}
.price-card h3 {
  font-size: 19px; 
  font-weight: 500; 
  margin: 0 0 6px;
}
.price-card .fit {
  font-size: 13px; 
  color: var(--ink-soft); 
  margin: 0 0 20px; 
  line-height: 1.6;
}
.price-card .spend {
  font-size: 13px; 
  color: var(--ink); 
  margin: 0 0 22px; 
  padding-bottom: 22px; 
  border-bottom: 1px solid var(--border);
}
.price-card .spend strong {
  display: block; 
  font-size: 22px; 
  font-weight: 500; 
  margin-top: 4px;
}
.price-card ul.plan-list {
  flex: 1; 
  margin: 0 0 26px;
}
.price-card ul.plan-list li {
  display: flex; 
  gap: 10px; 
  align-items: flex-start;
  font-size: 13.5px; 
  color: var(--ink-soft); 
  line-height: 1.6; 
  margin-bottom: 12px;
}
.price-card ul.plan-list svg {
  width: 15px; 
  height: 15px; 
  stroke: var(--red); 
  fill: none; 
  flex-shrink: 0; 
  margin-top: 3px;
}
.price-card .btn {
  width: 100%; 
  justify-content: center;
}
.pricing-note {
  font-size: 12.5px; 
  color: var(--ink-soft); 
  margin-top: 26px; 
  text-align: center;
}

/* ---------- DOWNLOADS GRID ---------- */
.downloads-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px;
}
.download-card {
  display: flex; 
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--white);
  align-items: flex-start;
}
.download-card .dl-icon {
  width: 44px; 
  height: 44px; 
  border-radius: 10px; 
  background: var(--grad-soft);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0;
}
.download-card .dl-icon svg {
  width: 20px; 
  height: 20px; 
  stroke: var(--red); 
  fill: none;
}
.download-card h4 {
  font-size: 15px; 
  font-weight: 500; 
  margin: 0 0 6px;
}
.download-card p {
  font-size: 12.5px; 
  color: var(--ink-soft); 
  line-height: 1.65; 
  margin: 0 0 14px;
}
.download-card .dl-meta {
  font-size: 11px; 
  color: var(--ink-soft); 
  margin-bottom: 14px; 
  letter-spacing: .02em;
}
.download-card .btn.small {
  padding: 8px 16px; 
  font-size: 12.5px;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px; 
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border); 
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer; 
  list-style: none; 
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  font-size: 16px; 
  font-weight: 500; 
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 22px; 
  height: 22px; 
  border-radius: 50%; 
  border: 1px solid var(--red); 
  color: var(--red);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 14px; 
  flex-shrink: 0; 
  margin-left: 20px;
  transition: transform .25s ease;
}
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item p {
  font-size: 14px; 
  color: var(--ink-soft); 
  line-height: 1.8; 
  margin: 14px 0 0; 
  max-width: 680px;
}

/* ---------- AUDIT BOX ---------- */
.audit-box {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  background: var(--surface);
}
.audit-box h4 {
  font-size: 16px; 
  font-weight: 500; 
  margin: 0 0 8px;
}
.audit-box p {
  font-size: 13px; 
  color: var(--ink-soft); 
  margin: 0 0 22px; 
  line-height: 1.7;
}
.audit-form {
  display: flex; 
  flex-direction: column; 
  gap: 12px;
}
.audit-form input {
  border: 1px solid var(--border); 
  background: var(--white); 
  color: var(--ink);
  border-radius: var(--radius); 
  padding: 12px 14px; 
  font-family: inherit; 
  font-size: 13.5px;
}
.audit-form input::placeholder { color: var(--ink-soft); }
.audit-form button { margin-top: 4px; }

/* ---------- RESPONSIVE FOR SERVICE PAGE ---------- */
@media (max-width: 980px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .downloads-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; }
  .quicknav { top: 60px; }
  .quicknav .wrap { gap: 16px; padding: 12px 20px; }
  .quicknav a { font-size: 12px; }
}





/* ============================================================
   CLIENT PORTAL STYLES
   Add these to your existing styles.css
   ============================================================ */

/* ---------- PORTAL HERO ---------- */
.portal-hero {
  background: var(--grad);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.portal-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.portal-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.portal-hero-content .eyebrow {
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.portal-hero-content h1 {
  color: #fff;
  font-size: clamp(32px, 4.6vw, 50px);
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.portal-hero-content p {
  color: rgba(255,255,255,.85);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* ---------- PORTAL SECTION ---------- */
.portal-section {
  padding: 60px 0 88px;
  background: var(--surface);
}
.portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ---------- LOGIN CARD ---------- */
.portal-login {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}
.login-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
}
.login-header {
  text-align: center;
  margin-bottom: 32px;
}
.login-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.login-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--red);
}
.login-header h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--ink);
}
.login-header p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- FORM STYLES ---------- */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.input-wrapper svg {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  stroke: var(--ink-soft);
  pointer-events: none;
}
.input-wrapper input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.input-wrapper input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(231,0,0,.1);
}
.input-wrapper input::placeholder {
  color: var(--ink-soft);
}
.toggle-password {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.toggle-password svg {
  position: static;
  width: 18px;
  height: 18px;
  stroke: var(--ink-soft);
}
.toggle-password:hover svg {
  stroke: var(--red);
}

/* ---------- FORM OPTIONS ---------- */
.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--ink-soft);
}
.checkbox-label input {
  display: none;
}
.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  transition: all .25s ease;
}
.checkbox-label input:checked + .checkmark {
  background: var(--red);
  border-color: var(--red);
}
.checkbox-label input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.forgot-link {
  color: var(--red);
  text-decoration: none;
}
.forgot-link:hover {
  text-decoration: underline;
}

/* ---------- LOGIN ERROR ---------- */
.login-error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  font-size: 13px;
}
.login-error svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: #dc2626;
}
.login-error.show {
  display: flex !important;
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}

/* ---------- LOGIN BUTTON ---------- */
.login-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 26px;
  font-size: 15px;
  margin-top: 4px;
}
.login-btn svg {
  width: 18px;
  height: 18px;
}
.login-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}
.login-btn .spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.login-btn.loading .spinner {
  display: inline-block;
}
.login-btn.loading #loginBtnText {
  display: none;
}
.login-btn.loading svg {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.login-footer {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.login-footer a {
  color: var(--red);
  font-weight: 500;
}
.login-footer a:hover {
  text-decoration: underline;
}

/* ---------- PORTAL INFO (Right Side) ---------- */
.portal-info {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.info-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--ink);
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0 0 28px;
}
.info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.info-list li svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  flex-shrink: 0;
}
.info-support {
  background: var(--surface);
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
}
.info-support p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.info-support .btn.small {
  padding: 8px 20px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .portal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .portal-login,
  .portal-info {
    max-width: 100%;
  }
  .portal-hero {
    padding: 80px 0 50px;
  }
}
@media (max-width: 480px) {
  .login-card {
    padding: 32px 20px;
  }
  .portal-hero {
    padding: 60px 0 40px;
  }
  .form-options {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .info-card {
    padding: 28px 20px;
  }
}














/* ============================================================
   MEETING BOOKING PAGE STYLES
   Add these to your existing styles.css
   ============================================================ */

/* ---------- BOOKING HERO ---------- */
.booking-hero {
  background: var(--grad);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.booking-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.booking-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.booking-hero-content .eyebrow {
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
  font-size: 12px;
}
.booking-hero-content h1 {
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.booking-hero-content p {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- BOOKING SECTION ---------- */
.booking-section {
  padding: 50px 0 70px;
  background: var(--surface);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}

/* ---------- LEFT: INFO CARD ---------- */
.booking-info {
  display: flex;
  align-items: stretch;
}
.booking-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 38px;
  box-shadow: var(--shadow);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-info-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 20px;
  color: var(--ink);
}
.booking-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0 0 28px;
}
.booking-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.booking-features li svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  flex-shrink: 0;
}
.booking-contact {
  background: var(--surface);
  border-radius: 10px;
  padding: 18px 22px;
  text-align: center;
  margin-top: auto;
}
.booking-contact p {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.booking-contact a {
  display: inline-block;
  color: var(--red);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 4px;
}
.booking-contact a:hover {
  text-decoration: underline;
}
.booking-contact span {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- RIGHT: BREVO FORM WRAPPER ---------- */
.booking-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
}
.booking-form-wrapper .sib-form {
  width: 100%;
}
.booking-form-wrapper #sib-container {
  max-width: 100% !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.booking-form-wrapper .sib-form-block__button {
  border-radius: 20px !important;
  width: 100%;
  justify-content: center;
}
.booking-form-wrapper .entry__field input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: Helvetica, sans-serif;
}
.booking-form-wrapper .entry__field input:focus {
  outline: none;
  border-color: #e70000;
  box-shadow: 0 0 0 2px rgba(231, 0, 0, 0.1);
}
.booking-form-wrapper .sib-divider-form-block {
  margin: 12px 0;
}
.booking-form-wrapper .sib-form-message-panel {
  max-width: 100% !important;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .booking-info,
  .booking-form-wrapper {
    max-width: 560px;
    margin: 0 auto;
  }
  .booking-hero {
    padding: 50px 0 40px;
  }
}
@media (max-width: 480px) {
  .booking-info-card {
    padding: 28px 20px;
  }
  .booking-form-wrapper {
    padding: 24px 16px;
  }
  .booking-hero-content h1 {
    font-size: 24px;
  }
  .booking-hero {
    padding: 40px 0 30px;
  }
}

























/* ============================================================
   READ ARTICLE PAGE STYLES
   Add these to your existing styles.css
   ============================================================ */

/* ---------- READ HERO ---------- */
.read-hero {
  background: var(--grad);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.read-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.read-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.read-hero-content .eyebrow {
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
  font-size: 12px;
}
.read-hero-content h1 {
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.read-hero-content p {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- READ SECTION ---------- */
.read-section {
  padding: 50px 0 70px;
  background: var(--surface);
}
.read-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

/* ---------- LEFT: ARTICLE PREVIEW ---------- */
.read-preview {
  display: flex;
  align-items: stretch;
}
.preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 34px;
  box-shadow: var(--shadow);
  width: 100%;
  display: flex;
  flex-direction: column;
}
.preview-badge {
  margin-bottom: 14px;
}
.preview-card h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.3;
}
.preview-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.preview-meta span {
  position: relative;
}
.preview-meta span:not(:last-child)::after {
  content: '•';
  margin-left: 16px;
  color: var(--border);
}
.preview-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.preview-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.preview-excerpt {
  flex: 1;
}
.preview-excerpt p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0 0 16px;
}
.preview-lock {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px dashed var(--border);
  margin-top: auto;
}
.preview-lock svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  flex-shrink: 0;
}
.preview-lock span {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ---------- RIGHT: SUBSCRIBE CARD ---------- */
.read-subscribe {
  display: flex;
  align-items: stretch;
}
.subscribe-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.subscribe-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.subscribe-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--red);
}
.subscribe-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink);
}
.subscribe-card > p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 24px;
}

/* ---------- NEWSLETTER IN SUBSCRIBE CARD ---------- */
.subscribe-card #newsletterRoot {
  width: 100%;
}
.subscribe-card #newsletterRoot .sib-form {
  padding: 0;
  width: 100%;
}
.subscribe-card #newsletterRoot #sib-container {
  max-width: 100% !important;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.subscribe-card #newsletterRoot .sib-form-block__button {
  border-radius: 20px !important;
  width: 100%;
  justify-content: center;
}
.subscribe-card #newsletterRoot .entry__field input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: Helvetica, sans-serif;
}
.subscribe-card #newsletterRoot .entry__field input:focus {
  outline: none;
  border-color: #e70000;
  box-shadow: 0 0 0 2px rgba(231, 0, 0, 0.1);
}
.subscribe-card #newsletterRoot .sib-divider-form-block {
  margin: 12px 0;
}
.subscribe-card #newsletterRoot .sib-form-message-panel {
  max-width: 100% !important;
}

/* ---------- SUBSCRIBE BENEFITS ---------- */
.subscribe-benefits {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.subscribe-benefits ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0;
  margin: 0;
}
.subscribe-benefits ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.4;
  text-align: left;
}
.subscribe-benefits ul li svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  flex-shrink: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .read-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .read-preview,
  .read-subscribe {
    max-width: 620px;
    margin: 0 auto;
  }
  .read-hero {
    padding: 50px 0 40px;
  }
}
@media (max-width: 600px) {
  .preview-card {
    padding: 24px 18px;
  }
  .subscribe-card {
    padding: 28px 20px;
  }
  .preview-card h2 {
    font-size: 18px;
  }
  .preview-image img {
    height: 150px;
  }
  .subscribe-benefits ul {
    grid-template-columns: 1fr;
  }
  .preview-meta {
    font-size: 11px;
    gap: 10px;
  }
  .preview-meta span:not(:last-child)::after {
    margin-left: 10px;
  }
  .read-hero {
    padding: 40px 0 30px;
  }
  .read-hero-content h1 {
    font-size: 24px;
  }
}
@media (max-width: 400px) {
  .preview-lock {
    flex-direction: column;
    text-align: center;
  }
}















/* ============================================================
   THANK YOU PAGE STYLES
   Add these to your existing styles.css
   ============================================================ */

/* ---------- THANK YOU HERO ---------- */
.thankyou-hero {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  padding: 60px 0;
}
.thankyou-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: var(--shadow);
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.thankyou-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--red);
}
.thankyou-content h1 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 12px;
}
.thankyou-subtitle {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 24px;
  line-height: 1.6;
}
.thankyou-message {
  background: var(--surface);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 0 0 28px;
  text-align: left;
}
.thankyou-message p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}
.thankyou-message p:first-child {
  margin-bottom: 8px;
}
.thankyou-note {
  font-weight: 500;
  color: var(--red) !important;
}
.thankyou-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.thankyou-actions .btn {
  min-width: 160px;
  justify-content: center;
}
.thankyou-footer-text {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.thankyou-footer-text p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .thankyou-content {
    padding: 36px 24px;
  }
  .thankyou-hero {
    min-height: calc(100vh - 140px);
    padding: 40px 0;
  }
  .thankyou-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .thankyou-actions .btn {
    width: 100%;
    min-width: unset;
  }
  .thankyou-icon {
    width: 60px;
    height: 60px;
  }
  .thankyou-icon svg {
    width: 30px;
    height: 30px;
  }
}