* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', 'Cairo', system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

:root {
  --brand: #103E78;
  --brand-dark: #0C3160;
  --brand-deep: #0A2A52;
  --mint: #12B3A6;
  --mint-dark: #0E9488;
  --brand-tint: #E8EEF7;
  --brand-tint2: #E6F5F3;
  --ink: #0B1620;
  --sub: #4A5B6E;
  --line: #DCE3EC;
  --soft: #EDF0F3;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

::selection { background: var(--brand); color: #fff; }

button { font-family: inherit; }

@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatY2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes glow { 0%, 100% { opacity: .55; transform: scale(1); } 50% { opacity: .85; transform: scale(1.06); } }

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,.6);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
header.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px -18px rgba(15,23,42,.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}
.brand span {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.025em;
  color: var(--brand);
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-inline-start: 16px;
}
.navlinks a {
  color: var(--sub);
  font-weight: 600;
  font-size: 15px;
}
.nav-right {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-toggle {
  display: flex;
  padding: 4px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.pill-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  background: transparent;
  color: var(--sub);
}
.pill-btn.active {
  background: var(--brand);
  color: #fff;
}
.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  cursor: pointer;
  color: var(--brand);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  box-shadow: 0 10px 22px -10px var(--brand);
  border: none;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.cta-btn:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  inset-inline: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 10px 24px 18px;
  flex-direction: column;
  box-shadow: 0 20px 44px -26px rgba(11,22,32,.4);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 4px;
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  padding: 132px 24px 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 620px at 78% -8%, var(--brand-tint) 0%, rgba(232,238,247,0) 60%),
    radial-gradient(720px 480px at 8% 12%, var(--brand-tint2) 0%, rgba(230,245,243,0) 55%);
}
.hero-grid {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 56px;
  align-items: center;
  grid-template-columns: 1.05fr .95fr;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  box-shadow: 0 4px 14px -8px rgba(15,23,42,.2);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
}
.hero-title {
  font-weight: 800;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -.03em;
  margin: 22px 0 0;
  text-wrap: balance;
}
.hero-desc {
  margin: 22px 0 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--sub);
  max-width: 560px;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 26px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 14px;
  transition: transform .15s, color .15s, border-color .15s, background .15s;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 18px 34px -14px var(--brand);
}
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-2px); }
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px -14px rgba(15,23,42,.4);
}
.btn-secondary:hover { border-color: var(--brand); color: var(--brand-dark); transform: translateY(-2px); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 34px;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--sub);
}
.check-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand-tint2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Hero phone mockup ---------- */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-tint) 0%, rgba(232,238,247,0) 70%);
  animation: glow 6s ease-in-out infinite;
  z-index: 0;
}
.phone-col {
  position: relative;
  z-index: 2;
  width: 288px;
  margin-inline: auto;
}
.phone-float {
  width: 288px;
  animation: floatY 7s ease-in-out infinite;
}
.phone-shell {
  width: 288px; height: 600px;
  background: #0B1620;
  border-radius: 44px;
  padding: 11px;
  box-shadow: 0 44px 80px -30px rgba(10,42,82,.55), 0 0 0 1px rgba(15,23,42,.06);
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--brand-tint) 0%, #fff 60%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-notch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 104px; height: 26px;
  background: #0B1620;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}
.phone-placeholder {
  color: var(--brand);
  opacity: .35;
  text-align: center;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 700;
}
.phone-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.float-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 15px;
  box-shadow: 0 20px 40px -18px rgba(15,23,42,.35);
  display: flex;
  align-items: center;
  gap: 11px;
}
.float-card-1 { top: 88px; inset-inline-start: -6px; animation: floatY2 8s ease-in-out infinite; }
.float-card-2 { bottom: 96px; inset-inline-end: -10px; animation: floatY 9s ease-in-out infinite; }
.float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card span:last-child { font-weight: 700; font-size: 13.5px; white-space: nowrap; }

/* ---------- Section shared ---------- */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 24px;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.section-head.narrow { max-width: 720px; }
.kicker {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand);
}
.kicker.mint { color: var(--mint); }
.section-title {
  font-weight: 800;
  font-size: clamp(25px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 14px 0 0;
}
.section-lead {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--sub);
  text-wrap: pretty;
}

/* ---------- What is Carlix ---------- */
.g2 {
  display: grid;
  gap: 24px;
  margin-top: 52px;
  grid-template-columns: 1fr 1fr;
}
.what-card {
  position: relative;
  padding: 36px;
  border-radius: 24px;
}
.what-card.customer {
  background: linear-gradient(180deg, #fff, var(--soft));
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -34px rgba(15,23,42,.4);
}
.what-card.agency {
  background: linear-gradient(180deg, var(--brand-deep), var(--brand-dark));
  color: #fff;
  box-shadow: 0 30px 60px -30px var(--brand);
}
.what-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.what-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.what-card.customer .what-icon { background: var(--brand-tint); }
.what-card.agency .what-icon { background: rgba(255,255,255,.14); }
.what-head-title { font-weight: 800; font-size: 22px; }
.what-head-sub { font-size: 15px; margin-top: 2px; }
.what-card.customer .what-head-sub { color: var(--sub); }
.what-card.agency .what-head-sub { color: rgba(255,255,255,.75); }
.what-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 24px;
}
.what-list-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.what-card.agency .what-list-item { border-top-color: rgba(255,255,255,.14); }
.what-num {
  width: 26px; height: 26px;
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.what-card.customer .what-num { background: var(--brand); }
.what-card.agency .what-num { background: rgba(255,255,255,.2); }
.what-list-text { font-weight: 600; font-size: 16px; }

/* ---------- How it works ---------- */
.how-section {
  background: var(--soft);
  border-block: 1px solid var(--line);
}
.tab-switch-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.tab-switch {
  display: flex;
  padding: 5px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 24px -18px rgba(15,23,42,.5);
}
.tab-btn {
  padding: 11px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  background: transparent;
  color: var(--sub);
  transition: all .2s;
}
.tab-btn.active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px -12px var(--brand);
}
.g3 {
  display: grid;
  gap: 22px;
  margin-top: 48px;
  grid-template-columns: repeat(3, 1fr);
}
.how-section .g3 { margin-top: 48px; }
.step-card {
  position: relative;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 44px -34px rgba(15,23,42,.5);
}
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-num {
  font-weight: 800;
  font-size: 34px;
  color: var(--line);
  line-height: 1;
}
.step-title { font-weight: 700; font-size: 18px; margin: 18px 0 0; }
.step-desc { margin: 8px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--sub); }

/* ---------- Trust ---------- */
.trust-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, var(--brand-tint2));
}
.trust-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(760px 460px at 50% 0%, var(--brand-tint) 0%, rgba(232,238,247,0) 62%);
}
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 6px 18px -14px rgba(15,23,42,.4);
}
.trust-tagline {
  font-weight: 700;
  font-size: clamp(17px, 2.1vw, 23px);
  color: var(--brand-dark);
  margin: 16px 0 0;
}
.trustgrid {
  position: relative;
  display: grid;
  align-items: center;
  margin-top: 56px;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
}
.tcard {
  position: relative;
  z-index: 2;
  padding: 38px 34px;
  border-radius: 26px;
}
.tcard.customer {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -44px rgba(10,42,82,.5);
  margin-inline-end: -26px;
}
.tcard.agency {
  background: linear-gradient(180deg, var(--brand-deep), var(--brand-dark));
  color: #fff;
  box-shadow: 0 34px 70px -34px var(--brand);
  margin-inline-start: -26px;
}
.tcard-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
}
.tcard-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tcard-title { font-weight: 800; font-size: 20px; }
.tcard-sub { font-size: 14.5px; }
.tcard.customer .tcard-sub { color: var(--sub); }
.tcard.agency .tcard-sub { color: rgba(255,255,255,.72); }
.tcard-list { display: flex; flex-direction: column; gap: 2px; }
.tcard-item {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}
.tcard.agency .tcard-item { border-top-color: rgba(255,255,255,.14); }
.tcard-item-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tcard.customer .tcard-item-icon { background: var(--brand-tint); }
.tcard.agency .tcard-item-icon { background: rgba(255,255,255,.16); }
.tcard-item-title { font-weight: 700; font-size: 15.5px; }
.tcard-item-desc { font-size: 13.5px; line-height: 1.5; margin-top: 2px; }
.tcard.customer .tcard-item-desc { color: var(--sub); }
.tcard.agency .tcard-item-desc { color: rgba(255,255,255,.72); }

.shield-col {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 6px;
}
.shield-glow {
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-tint) 0%, rgba(232,238,247,0) 70%);
  animation: glow 6s ease-in-out infinite;
}
.shield-badge {
  position: relative;
  width: 112px; height: 112px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 26px 50px -18px var(--brand), inset 0 2px 0 rgba(255,255,255,.3);
  animation: floatY 7s ease-in-out infinite;
}
.shield-caption {
  position: relative;
  margin-top: 16px;
  padding: 7px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-dark);
  box-shadow: 0 8px 20px -14px rgba(15,23,42,.4);
  white-space: nowrap;
}

/* ---------- Features ---------- */
.feature-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 20px 50px -40px rgba(15,23,42,.6);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -34px rgba(16,62,120,.45);
  border-color: var(--brand);
}
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--brand-tint), var(--brand-tint2));
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-title { font-weight: 700; font-size: 19px; margin: 20px 0 0; }
.feature-desc { margin: 9px 0 0; font-size: 15px; line-height: 1.6; color: var(--sub); }

/* ---------- Showcase ---------- */
.showcase-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0B1620, #0A2A52);
  color: #fff;
}
.showcase-lead { color: rgba(255,255,255,.7); }
.showcase-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 56px;
}
.shot {
  text-align: center;
}
.shot-shell {
  width: 196px; height: 410px;
  background: #050C13;
  border-radius: 34px;
  padding: 8px;
  box-shadow: 0 40px 70px -28px rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.08);
}
.shot-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 27px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--brand-tint) 0%, #fff 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}
.shot-notch {
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 74px; height: 18px;
  background: #050C13;
  border-radius: 0 0 12px 12px;
  z-index: 3;
}
.shot-placeholder {
  opacity: .4;
  font-size: 12px;
  font-weight: 700;
  padding: 0 16px;
  text-align: center;
}
.shot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.shot-label {
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 20px 50px -40px rgba(15,23,42,.6);
}
.quote-icon { color: var(--brand-tint); }
.testimonial-quote {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
  margin: 16px 0 22px;
  text-wrap: pretty;
}
.testimonial-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.testimonial-initial {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.testimonial-name { font-weight: 700; font-size: 15px; }
.testimonial-who { font-size: 13.5px; color: var(--brand); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--soft);
  border-block: 1px solid var(--line);
}
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 88px 24px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px -28px rgba(15,23,42,.6);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: start;
  font-family: inherit;
}
.faq-question-text {
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.faq-chevron {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--brand-tint);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .25s ease;
}
.faq-item.open .faq-answer {
  max-height: 340px;
  opacity: 1;
  transition: max-height .4s ease, opacity .3s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--sub);
}

/* ---------- Final CTA ---------- */
.cta-card {
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand) 60%, var(--brand-dark));
  color: #fff;
  padding: 66px 48px;
  text-align: center;
  box-shadow: 0 50px 90px -40px var(--brand);
}
.cta-blob-1 {
  position: absolute; top: -60px; inset-inline-end: -40px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.cta-blob-2 {
  position: absolute; bottom: -80px; inset-inline-start: -30px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-inner { position: relative; }
.cta-title {
  font-weight: 800;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 auto;
  max-width: 640px;
  text-wrap: balance;
}
.cta-desc {
  margin: 20px auto 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  text-wrap: pretty;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}
.cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  background: #fff;
  color: var(--brand-deep);
  font-weight: 700;
  font-size: 16px;
  border-radius: 14px;
  transition: transform .15s, color .15s;
}
.cta-btn-white:hover { transform: translateY(-2px); color: var(--brand-dark); }
.cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.3);
  transition: background .15s, transform .15s;
}
.cta-btn-ghost:hover { background: rgba(255,255,255,.22); color: #fff; transform: translateY(-2px); }

/* ---------- Footer ---------- */
footer { background: #0B1620; color: #fff; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand span { font-weight: 800; font-size: 22px; letter-spacing: -.025em; }
.footer-tagline {
  margin: 16px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  max-width: 280px;
}
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .15s;
}
.footer-social:hover { background: var(--brand); color: #fff; }
.footer-col-title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,.75); font-size: 15px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .navlinks { display: none !important; }
  .hero-grid { grid-template-columns: 1fr !important; gap: 44px !important; }
  .g2 { grid-template-columns: 1fr !important; }
  .g3 { grid-template-columns: repeat(2, 1fr) !important; }
  .trustgrid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .tcard { margin-inline-start: 0 !important; margin-inline-end: 0 !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .shot { transform: none !important; }
  .burger { display: flex !important; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}
@media (max-width: 700px) {
  .g3 { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; padding: 48px 22px 32px !important; gap: 32px !important; }
  .hero-section { padding: 104px 20px 64px !important; }
  .section { padding: 60px 20px !important; }
  .cta-card { padding: 48px 22px !important; }
  .tcard { padding: 28px 22px !important; }
}

/* Scroll-reveal animation state, toggled from JS via inline style */
[data-reveal] {
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
