:root {
  --navy: #123e63;
  --blue: #2b6f9f;
  --green: #20b2aa;
  --orange: #f4a261;
  --ink: #172033;
  --muted: #627083;
  --line: #dfe7ef;
  --soft: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(18, 62, 99, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { color: var(--navy); margin: 0; letter-spacing: 0; }
p { color: var(--muted); line-height: 1.7; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 231, 239, 0.9);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 250px; font-weight: 800; color: var(--navy); }
.brand img { width: 64px; height: 48px; object-fit: contain; mix-blend-mode: multiply; }
.brand span { max-width: 280px; line-height: 1.18; font-size: 0.96rem; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 8px; flex-wrap: wrap; }
.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 750;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { background: #e8f8f7; color: #157f7a; }
.main-nav .nav-cta { color: var(--white); background: var(--green); }
.main-nav .nav-cta:hover { color: var(--white); background: #178f89; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--navy); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(30px, 4.8vw, 56px) clamp(20px, 5vw, 76px);
  background:
    linear-gradient(90deg, rgba(18, 62, 99, 0.92), rgba(43, 111, 159, 0.76)),
    radial-gradient(circle at 86% 12%, rgba(244, 162, 97, 0.3), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--blue));
  isolation: isolate;
}
.page-hero::after,
.section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: url("assets/authentic-logo.jpg") center / contain no-repeat;
  opacity: 0.055;
  mix-blend-mode: multiply;
}
.hero > *,
.page-hero > *,
.section > * {
  position: relative;
  z-index: 1;
}
.hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.65rem); line-height: 1.04; max-width: 780px; font-weight: 800; }
.hero-copy { max-width: 660px; color: rgba(255,255,255,0.82); font-size: clamp(1rem, 1.35vw, 1.12rem); margin: 18px 0 0; }
.eyebrow { margin: 0 0 12px; color: var(--green); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
.hero .eyebrow { color: #8ee9c7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--green); box-shadow: 0 14px 28px rgba(32, 178, 170, 0.24); }
.btn-secondary { color: var(--white); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.26); }
.btn-light { color: var(--navy); background: var(--white); }
.btn-small { min-height: 36px; padding: 8px 12px; font-size: 0.9rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.trust-row span { color: var(--white); border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.1); border-radius: 999px; padding: 9px 12px; font-size: 0.9rem; font-weight: 750; }

.hero-media { min-height: 340px; display: grid; place-items: center; }
.jaipur-card {
  position: relative;
  width: min(470px, 100%);
  min-height: 340px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,248,251,0.9)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(18,62,99,0.04) 28px 30px);
  box-shadow: var(--shadow);
}
.jaipur-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 178px;
  height: 132px;
  background:
    linear-gradient(to top, var(--navy) 0 18px, transparent 18px),
    linear-gradient(135deg, transparent 46%, rgba(18,62,99,0.18) 46% 54%, transparent 54%);
  clip-path: polygon(0 100%, 0 45%, 12% 45%, 12% 25%, 23% 25%, 23% 50%, 35% 50%, 35% 15%, 47% 15%, 47% 55%, 59% 55%, 59% 30%, 72% 30%, 72% 48%, 84% 48%, 84% 22%, 100% 22%, 100% 100%);
}
.sun { position: absolute; width: 104px; height: 104px; border-radius: 999px; top: 32px; right: 34px; background: rgba(244,162,97,0.38); }
.family-visual { position: absolute; left: 45px; right: 45px; bottom: 92px; display: flex; align-items: flex-end; justify-content: center; gap: 22px; }
.person { position: relative; width: 74px; height: 152px; border-radius: 34px 34px 12px 12px; background: var(--green); box-shadow: 0 18px 38px rgba(0,0,0,0.16); }
.person::before { content: ""; position: absolute; top: -48px; left: 14px; width: 46px; height: 46px; border-radius: 999px; background: #f2c4a6; }
.person.tall { height: 185px; background: var(--blue); }
.person.small { width: 58px; height: 116px; background: var(--orange); }
.shield-panel { position: absolute; left: 28px; right: 28px; bottom: 24px; padding: 18px; color: var(--white); border-radius: 16px; background: var(--navy); }
.shield-panel strong, .shield-panel span { display: block; }
.shield-panel span { margin-top: 5px; color: rgba(255,255,255,0.78); }

.metrics-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metrics-band div { padding: 22px clamp(16px, 3vw, 34px); background: var(--white); }
.metrics-band strong { display: block; color: var(--navy); font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; }
.metrics-band span { display: block; margin-top: 8px; color: var(--muted); font-weight: 700; }

.section, .partner-section { padding: clamp(38px, 5.5vw, 64px) clamp(20px, 5vw, 76px); }
.section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section::before {
  right: clamp(18px, 5vw, 76px);
  top: clamp(28px, 6vw, 86px);
  width: min(300px, 44vw);
  aspect-ratio: 1.35;
  z-index: 0;
}
.section-soft { background: var(--soft); }
.section-head { max-width: 820px; margin-bottom: 22px; }
.section-head h2 { font-size: clamp(1.75rem, 3.2vw, 3rem); line-height: 1.08; }
.section-head p:last-child { max-width: 720px; margin-bottom: 0; font-size: 1rem; }
.split-head { display: flex; justify-content: space-between; gap: 20px; max-width: none; align-items: end; }
.text-link { color: var(--green); font-weight: 850; }
.domain-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.domain-link:hover {
  color: var(--green);
}
.domain-link.light:hover {
  color: #b9fff8;
}

.benefit-grid, .service-grid, .testimonial-grid, .resource-grid, .value-grid, .contact-grid, .guide-grid, .team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.benefit-grid article, .service-card, .testimonial-grid article, .resource-grid a, .guide-card, .value-card, .contact-card, .form-card, .map-card, .team-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(10,37,64,0.06);
}
.benefit-grid article, .service-card, .testimonial-grid article, .resource-grid a, .guide-card, .value-card, .contact-card, .team-card { padding: 18px; }
.benefit-grid article:hover, .service-card:hover, .resource-grid a:hover, .guide-card:hover { transform: translateY(-4px); border-color: rgba(32,178,170,0.34); transition: transform 180ms ease, border-color 180ms ease; }
.icon, .service-card span, .resource-grid span, .guide-card span {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 10px;
  color: var(--navy);
  background: #e7f8f6;
  font-weight: 900;
}
.service-card:nth-child(2n) span, .guide-card:nth-child(2n) span { background: #fff1e5; }
.service-card h3, .benefit-grid h3, .testimonial-grid h3, .resource-grid h3, .guide-card h3 { margin-top: 12px; }
.service-card a { color: var(--green); font-weight: 850; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: steps; }
.timeline article { position: relative; padding: 20px; border-radius: 12px; background: var(--navy); min-height: 210px; }
.timeline span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 999px; color: var(--navy); background: var(--orange); font-weight: 900; }
.timeline h3 { color: var(--white); margin-top: 16px; }
.timeline p { color: rgba(255,255,255,0.75); }

.claims-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 clamp(20px, 5vw, 76px);
  padding: clamp(22px, 4vw, 38px);
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #178f89);
}
.claims-panel h2, .claims-panel p, .claims-panel .eyebrow { color: var(--white); }
.claims-panel div { max-width: 820px; }

.testimonial-grid article p { color: var(--ink); font-size: 1.04rem; }
.testimonial-grid strong, .testimonial-grid span { display: block; }
.testimonial-grid span { color: var(--muted); margin-top: 4px; }
.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.team-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.team-card.legacy-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #ffffff, #f6fbf8);
}
.team-card h3 {
  margin-top: 0;
}
.team-card p {
  margin-bottom: 0;
}
.team-card a {
  color: var(--green);
  font-weight: 850;
}
.photo-placeholder {
  display: grid;
  width: 132px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px dashed rgba(18, 62, 99, 0.28);
  border-radius: 12px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(32, 178, 170, 0.09), rgba(244, 162, 97, 0.12)),
    var(--soft);
  font-weight: 850;
}
.team-photo {
  width: 132px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(18, 62, 99, 0.16);
  border-radius: 12px;
  background: var(--soft);
  box-shadow: 0 12px 24px rgba(10,37,64,0.08);
}

.partner-section { color: var(--white); background: var(--navy); overflow: hidden; }
.partner-section h2 { color: var(--white); }
.logo-marquee { position: relative; overflow: hidden; padding: 10px 0; }
.logo-track { display: flex; width: max-content; gap: 14px; animation: scrollLogos 50s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  min-height: 76px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  text-align: center;
}
.logo-track img {
  display: block;
  width: auto;
  max-width: 132px;
  max-height: 46px;
  object-fit: contain;
}
.logo-track em {
  display: none;
  font-style: normal;
  font-weight: 900;
}
.logo-track img:not([src]), .logo-track img[hidden] {
  display: none;
}
.logo-track img:not([src]) + em, .logo-track img[hidden] + em {
  display: block;
}
@keyframes scrollLogos { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.posp-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 20px;
  align-items: center;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(231,248,246,0.88)),
    var(--white);
  box-shadow: var(--shadow);
}
.posp-panel h2 {
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1;
}
.posp-card {
  padding: clamp(20px, 3vw, 32px);
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--green));
  box-shadow: 0 18px 42px rgba(18, 62, 99, 0.18);
}
.posp-card a {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-weight: 850;
}
.posp-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
}
.posp-card p {
  color: rgba(255,255,255,0.78);
}

.quote-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 20px; align-items: start; }
.quote-form, .form-card { padding: 22px; }
label { display: block; margin: 12px 0 7px; color: var(--navy); font-weight: 850; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
textarea { resize: vertical; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-note, .form-success { margin-bottom: 0; font-size: 0.92rem; }
.form-success { color: var(--green); font-weight: 850; }
.check-list { padding-left: 20px; color: var(--muted); line-height: 1.8; }

.faq-list { display: grid; gap: 12px; max-width: 940px; }
details { border: 1px solid var(--line); border-radius: 10px; background: var(--white); padding: 18px 20px; }
summary { cursor: pointer; color: var(--navy); font-weight: 850; }
details p { margin-bottom: 0; }

.page-hero {
  position: relative;
  padding: clamp(30px, 4vw, 52px) clamp(20px, 5vw, 76px);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  overflow: hidden;
  isolation: isolate;
}
.page-hero::after {
  right: clamp(18px, 7vw, 96px);
  bottom: 18px;
  width: min(300px, 42vw);
  aspect-ratio: 1.35;
  opacity: 0.09;
  mix-blend-mode: screen;
  z-index: 0;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 3.15rem); line-height: 1.08; max-width: 880px; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 700px; font-size: 1rem; }
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.page-hero.has-scroll-cue { padding-bottom: clamp(46px, 5vw, 62px); }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.26);
  transform: translateX(-50%);
  font-size: 1.15rem;
  font-weight: 900;
}
.service-detail { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 18px; align-items: start; padding: clamp(22px, 4vw, 34px) clamp(20px, 5vw, 76px); border-bottom: 1px solid var(--line); }
.service-groups { padding-bottom: clamp(22px, 4vw, 34px); }
.service-detail aside { position: sticky; top: 94px; padding: 20px; border-radius: 14px; background: var(--soft); }
.service-claim-link { margin-top: 12px; border: 1px solid var(--line); }
.service-detail h2 { font-size: clamp(1.55rem, 2.4vw, 2.45rem); }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 14px 0 0; list-style: none; }
.pill-list li { padding: 9px 12px; border-radius: 999px; background: #e7f8f6; color: var(--navy); font-weight: 750; }

.office-block { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.map-card { min-height: 300px; padding: 0; overflow: hidden; background: var(--soft); }
.map-placeholder { display: grid; height: 100%; place-items: center; padding: 24px; text-align: center; background: repeating-linear-gradient(45deg, #edf3f8 0 12px, #f8fbfd 12px 24px); }
.contact-grid { grid-template-columns: 0.85fr 1.15fr; }

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: #0d304d;
  color: var(--white);
}
.site-footer img { width: 76px; height: 56px; object-fit: contain; background: var(--white); border-radius: 8px; }
.site-footer p, .site-footer span, .site-footer a { color: rgba(255,255,255,0.74); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; align-content: start; }
.site-footer > p { grid-column: 1 / -1; margin: 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); text-align: center; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(0,0,0,0.2);
  font-weight: 950;
}
.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 34;
  display: none;
  max-width: 390px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; font-size: 0.9rem; }

@media (max-width: 1080px) {
  .hero, .quote-layout, .service-detail, .office-block, .contact-grid, .posp-panel { grid-template-columns: 1fr; }
  .metrics-band, .timeline { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid, .service-grid, .testimonial-grid, .resource-grid, .value-grid, .guide-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail aside { position: static; }
}

@media (max-width: 820px) {
  .site-header { align-items: flex-start; }
  .brand { min-width: 0; }
  .brand span { max-width: 210px; font-size: 0.86rem; }
  .menu-toggle { display: inline-block; }
  .main-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    grid-template-columns: 1fr 1fr;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: grid; }
  .main-nav a { justify-content: center; border: 1px solid var(--line); }
  .hero-media { min-height: 320px; }
  .jaipur-card { min-height: 320px; }
  .split-head, .claims-panel { display: block; }
  .claims-panel .btn { margin-top: 16px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .hero { padding-top: 42px; }
  .hero-actions, .main-nav.open, .metrics-band, .timeline, .benefit-grid, .service-grid, .testimonial-grid, .resource-grid, .value-grid, .guide-grid, .team-grid { grid-template-columns: 1fr; display: grid; }
  .team-card, .team-card.legacy-card {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .photo-placeholder, .team-photo {
    width: 100%;
    max-width: 220px;
  }
  .hero-actions .btn { width: 100%; }
  .trust-row span { width: 100%; text-align: center; }
  .person { width: 58px; height: 126px; }
  .person.tall { height: 152px; }
  .person.small { width: 44px; height: 98px; }
  .cookie-banner { right: 16px; max-width: none; align-items: flex-start; }
}
