/* =========================================================
   Smart Choice Financial Services L.L.C
   Design tokens extracted from the Stripe DESIGN.md reference
   (VoltAgent/awesome-design-md) and applied throughout.
   Weight 300 headings · blue-tint shadow stacks · 4–8px radii
   ========================================================= */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .15s ease, background-color .15s ease;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* --------- Tokens (Stripe) --------- */
:root {
  /* Primary brand */
  --purple: #533afd;
  --purple-hover: #4434d4;
  --purple-deep: #2e2b8c;
  --purple-mid: #665efd;
  --purple-light: #b9b9f9;
  --purple-soft: #d6d9fc;

  /* Navy + dark neutrals */
  --navy: #061b31;
  --navy-dark: #0d253d;
  --brand-dark: #1c1e54;

  /* Accent (decorative gradients only — never on interactive) */
  --ruby: #ea2261;
  --magenta: #f96bee;
  --magenta-light: #ffd7ef;
  --cyan: #00d4ff;

  /* Surfaces */
  --white: #ffffff;
  --surface-tint: #f6f9fc;
  --surface-muted: #fafbfc;

  /* Text */
  --heading: #061b31;
  --label: #273951;
  --body: #64748d;
  --body-muted: #8b95a7;

  /* Status */
  --success: #15be53;
  --success-text: #108c3d;
  --success-bg: rgba(21, 190, 83, 0.2);
  --success-border: rgba(21, 190, 83, 0.4);

  /* Borders */
  --border: #e5edf5;
  --border-purple: #b9b9f9;
  --border-soft-purple: #d6d9fc;

  /* Shadows — signature blue-tint stacks */
  --shadow-soft: rgba(23, 23, 23, 0.06) 0px 3px 6px;
  --shadow-ambient: rgba(23, 23, 23, 0.08) 0px 15px 35px;
  --shadow-stripe: rgba(50, 50, 93, 0.25) 0px 30px 45px -30px, rgba(0, 0, 0, 0.1) 0px 18px 36px -18px;
  --shadow-deep: rgba(3, 3, 39, 0.25) 0px 14px 21px -14px, rgba(0, 0, 0, 0.1) 0px 8px 17px -8px;
  --shadow-hairline: rgba(50, 50, 93, 0.1) 0px 0px 0px 1px;

  /* Radius */
  --r-xs: 4px;
  --r-sm: 5px;
  --r-md: 6px;
  --r-lg: 8px;

  /* Timing */
  --t-fast: .15s ease;
  --t: .25s cubic-bezier(.4, 0, .2, 1);

  /* Layout */
  --container: 1080px;
  --container-wide: 1200px;
  --gutter: 24px;
  --section-y: clamp(72px, 9vw, 112px);
}

/* --------- Typography base --------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', 'SF Pro Display', sans-serif;
  font-weight: 300;
  color: var(--heading);
  font-feature-settings: 'ss01';
}

p {
  color: var(--body);
  font-weight: 300;
  font-feature-settings: 'ss01';
}

.display-hero {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -0.026em;
  color: var(--white);
}

.display-large {
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--heading);
}

.h2--light {
  color: var(--white);
}

.h3 {
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--heading);
}

.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--body);
  font-weight: 300;
}

.body-txt {
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
  font-weight: 300;
}

.body--light {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  color: var(--purple);
  letter-spacing: 0;
  font-feature-settings: 'ss01';
  margin-bottom: 20px;
}

.eyebrow--on-dark {
  color: var(--purple-light);
}

.accent {
  background: linear-gradient(92deg, var(--purple) 0%, var(--magenta) 58%, var(--purple-mid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-num {
  font-feature-settings: 'tnum';
}

/* --------- Layout helpers --------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  z-index: 200;
  padding: 8px 14px;
  background: var(--purple);
  color: var(--white);
  border-radius: var(--r-xs);
  font-size: 13px;
}

.skip-link:focus {
  top: 12px;
}

/* --------- Buttons (Stripe) --------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-xs);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  cursor: pointer;
  transition: background var(--t), color var(--t), box-shadow var(--t), transform var(--t-fast);
  white-space: nowrap;
  user-select: none;
  font-feature-settings: 'ss01';
}

.btn svg {
  transition: transform var(--t);
}

.btn:hover svg {
  transform: translateX(2px);
}

.btn--primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: rgba(83, 58, 253, 0.22) 0px 6px 14px -6px,
    rgba(50, 50, 93, 0.16) 0px 2px 4px;
}

.btn--primary:hover {
  background: var(--purple-hover);
  box-shadow: rgba(83, 58, 253, 0.35) 0px 10px 24px -6px;
}

.btn--ghost {
  background: transparent;
  color: var(--purple);
  border: 1px solid var(--purple-light);
}

.btn--ghost:hover {
  background: rgba(83, 58, 253, 0.05);
  border-color: var(--purple);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--light {
  background: var(--white);
  color: var(--heading);
  box-shadow: rgba(50, 50, 93, 0.18) 0px 2px 6px;
}

.btn--light:hover {
  background: var(--surface-tint);
}

.btn--sm {
  padding: 7px 14px;
  font-size: 14px;
}

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

/* --------- Announcement bar --------- */
.announcement {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-feature-settings: 'ss01';
}

.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announcement__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-mid);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(83, 58, 253, 0.18);
}

/* --------- Header --------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}

.header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.95);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px var(--gutter);
  max-width: var(--container-wide);
  margin: 0 auto;
}

.header__logo img {
  height: 42px;
  width: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--heading);
  border-radius: var(--r-md);
  transition: background var(--t), color var(--t);
  font-feature-settings: 'ss01';
}

.nav__link:hover {
  background: rgba(83, 58, 253, 0.06);
  color: var(--purple);
}

.nav__link--button {
  background: transparent;
  cursor: pointer;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* --------- Mega menu --------- */
.nav__item {
  position: relative;
}

.mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 440px;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-stripe);
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
}

.nav__item.has-mega:hover .mega,
.nav__item.has-mega:focus-within .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mega__label {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--body);
  margin-bottom: 10px;
  padding-left: 10px;
}

.mega__col ul li {
  margin-bottom: 1px;
}

.mega__col ul a {
  display: block;
  padding: 7px 10px;
  font-size: 14px;
  font-weight: 400;
  color: var(--label);
  border-radius: var(--r-xs);
}

.mega__col ul a:hover {
  background: rgba(83, 58, 253, 0.06);
  color: var(--purple);
}

/* --------- Hamburger --------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: var(--r-md);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--heading);
  transition: transform var(--t), opacity var(--t);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* --------- Hero with gradient wash (Stripe signature) --------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: clamp(84px, 11vw, 150px) 0 clamp(110px, 14vw, 180px);
  overflow: hidden;
  isolation: isolate;
}

/* Gradient wash — multi-layer radial + conic combo */
.hero__wash {
  position: absolute;
  inset: -20% -10% -30% -10%;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 40% at 15% 15%, rgba(249, 107, 238, 0.55), transparent 60%),
    radial-gradient(ellipse 50% 45% at 85% 25%, rgba(83, 58, 253, 0.75), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(28, 30, 84, 0.9), transparent 70%),
    radial-gradient(ellipse 45% 40% at 100% 100%, rgba(0, 212, 255, 0.32), transparent 60%),
    linear-gradient(135deg, #1c1e54 0%, #061b31 50%, #0d253d 100%);
  filter: blur(40px);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 50% at center, black, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at center, black, transparent 85%);
  pointer-events: none;
}

/* Diagonal bottom cut — Stripe signature */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 100%);
  z-index: 2;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}

.hero__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 3px rgba(249, 107, 238, 0.25);
}

.display-hero {
  margin-bottom: 26px;
}

.hero__subtitle {
  max-width: 620px;
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  margin-bottom: 36px;
  font-feature-settings: 'ss01';
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
  font-feature-settings: 'ss01', 'tnum';
}

.hero__meta strong {
  color: var(--white);
  font-weight: 400;
  margin-right: 6px;
}

.hero__meta-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
}

/* --------- Trusted marquee --------- */
.trusted {
  background:
    linear-gradient(180deg, #f6f9fc 0%, #eef2f9 100%);
  padding: 72px 0 88px;
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(83, 58, 253, 0.04), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(249, 107, 238, 0.03), transparent 40%);
  pointer-events: none;
}

.trusted > * {
  position: relative;
}

.trusted__label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--label);
  margin-bottom: 42px;
  font-feature-settings: 'ss01';
  letter-spacing: 0.02em;
}

.marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 56px;
  animation: marquee-scroll 40s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}

.marquee__item:hover {
  box-shadow: var(--shadow-stripe);
  border-color: var(--border-soft-purple);
  transform: translateY(-2px);
}

.marquee__item img {
  height: 52px;
  width: auto;
  opacity: 1;
  transition: transform var(--t);
}

.marquee__item:hover img {
  transform: scale(1.03);
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 28px)); }
}

/* --------- Stats --------- */
.stats {
  background: var(--white);
  padding: var(--section-y) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--t), transform var(--t);
}

.stat:hover {
  box-shadow: var(--shadow-stripe);
  transform: translateY(-2px);
}

.stat__value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--heading);
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  font-feature-settings: 'tnum';
}

.stat__prefix {
  font-size: 0.55em;
  color: var(--body);
  margin-right: 6px;
  letter-spacing: 0;
}

.stat__suffix {
  color: var(--purple);
}

.stat__label {
  font-size: 13px;
  color: var(--body);
  line-height: 1.4;
  font-weight: 300;
}

/* --------- About --------- */
.about {
  background: var(--surface-tint);
  padding: var(--section-y) 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 72px;
  align-items: start;
}

.about__body .h2 {
  margin-bottom: 24px;
}

.about__body p {
  margin-bottom: 16px;
}

.checklist {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--success-bg);
  color: var(--success-text);
  padding: 3px;
  margin-top: 2px;
  border: 1px solid var(--success-border);
}

.checklist strong {
  display: block;
  font-weight: 400;
  color: var(--heading);
  font-size: 15px;
  margin-bottom: 2px;
}

.checklist span {
  font-size: 13px;
  color: var(--body);
  font-weight: 300;
}

.about__aside {
  position: sticky;
  top: 120px;
}

.quote-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-stripe);
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(92deg, var(--purple), var(--magenta), var(--purple-mid));
}

.quote-mark {
  color: var(--purple);
  margin-bottom: 18px;
}

.quote-card__text {
  font-size: 21px;
  font-weight: 300;
  line-height: 1.32;
  letter-spacing: -0.014em;
  color: var(--heading);
  margin-bottom: 20px;
}

.quote-card__attr {
  font-size: 12px;
  font-weight: 400;
  color: var(--body-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --------- Sections head --------- */
.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}

.section-head__subtitle {
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
  font-weight: 300;
  margin-top: 14px;
}

/* --------- Services grid --------- */
.services {
  background: var(--white);
  padding: var(--section-y) 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-stripe);
  border-color: var(--border-soft-purple);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(83, 58, 253, 0.08);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid var(--border-soft-purple);
}

.service-card__title {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--heading);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
  font-weight: 300;
  margin-bottom: 20px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: var(--purple);
  transition: color var(--t);
}

.service-card__link:hover {
  color: var(--purple-hover);
}

.service-card__link::after {
  content: '→';
  transition: transform var(--t);
}

.service-card__link:hover::after {
  transform: translateX(3px);
}

/* --------- Service detail --------- */
.service-detail {
  background: var(--white);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}

.service-detail--dark {
  background: var(--brand-dark);
  border-top-color: transparent;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.service-detail--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(83, 58, 253, 0.3), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(249, 107, 238, 0.12), transparent 60%);
  pointer-events: none;
}

.service-detail--dark > .container {
  position: relative;
  z-index: 1;
}

.service-detail--dark .body-txt,
.service-detail--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: start;
}

.service-detail__body {
  max-width: 620px;
}

.service-detail__body .h2 {
  margin-bottom: 24px;
}

.service-detail__body p {
  margin-bottom: 16px;
}

/* Feature tiles */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
}

.feature-tile__key {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin-bottom: 8px;
  line-height: 1;
  font-feature-settings: 'tnum';
}

.feature-tile__val {
  font-size: 13px;
  color: var(--body);
  font-weight: 300;
}

/* List card (dark section) */
.list-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  backdrop-filter: blur(8px);
}

.list-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-light);
  margin-bottom: 18px;
  font-weight: 400;
}

.list {
  display: grid;
  gap: 12px;
}

.list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
}

.list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--purple-mid);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(102, 94, 253, 0.2);
}

.list li:last-child {
  border-bottom: 0;
}

/* SME products */
.sme-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sme-product {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  transition: background var(--t), border-color var(--t);
  backdrop-filter: blur(6px);
}

.sme-product:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-purple);
}

.sme-product__num {
  font-size: 11px;
  font-weight: 400;
  color: var(--purple-light);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.sme-product__name {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.008em;
}

.sme-product__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  font-weight: 300;
}

/* --------- News --------- */
.news {
  background: var(--surface-tint);
  padding: var(--section-y) 0;
}

.news__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-stripe);
}

.news-card__media {
  aspect-ratio: 16 / 10;
  position: relative;
  background: var(--brand-dark);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.news-card--featured .news-card__media {
  aspect-ratio: 16 / 11;
}

.news-card__media--cricket25 {
  background:
    radial-gradient(ellipse at 25% 30%, rgba(249, 107, 238, 0.45), transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(83, 58, 253, 0.6), transparent 55%),
    linear-gradient(135deg, #1c1e54, #061b31);
}

.news-card__media--cricket24 {
  background:
    radial-gradient(ellipse at 75% 30%, rgba(0, 212, 255, 0.28), transparent 55%),
    radial-gradient(ellipse at 25% 70%, rgba(83, 58, 253, 0.5), transparent 55%),
    linear-gradient(135deg, #1c1e54, #0d253d);
}

.news-card__media--milestone {
  background:
    radial-gradient(circle at 50% 45%, rgba(249, 107, 238, 0.35), transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(83, 58, 253, 0.55), transparent 60%),
    linear-gradient(135deg, #1c1e54, #061b31);
}

.news-card__tag {
  display: inline-block;
  padding: 5px 11px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
}

.news-card__body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.news-card__title {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--heading);
  line-height: 1.3;
}

.news-card__excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
  font-weight: 300;
  flex: 1;
}

.news-card__link {
  font-size: 13px;
  font-weight: 400;
  color: var(--purple);
  align-self: flex-start;
  transition: color var(--t);
}

.news-card__link:hover {
  color: var(--purple-hover);
}

/* --------- People --------- */
.people {
  background: var(--white);
  padding: var(--section-y) 0 calc(var(--section-y) - 20px);
}

.people__marquee {
  overflow: hidden;
  padding: 10px 0 20px;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.people__track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: marquee-scroll 55s linear infinite;
}

.people:hover .people__track {
  animation-play-state: paused;
}

.person {
  flex-shrink: 0;
  width: 252px;
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}

.person__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.person__name {
  font-size: 15px;
  font-weight: 400;
  color: var(--heading);
  letter-spacing: -0.008em;
  margin-bottom: 4px;
}

.person__role {
  font-size: 13px;
  font-weight: 400;
  color: var(--purple);
  margin-bottom: 2px;
}

.person__dept {
  font-size: 12px;
  color: var(--body-muted);
  font-weight: 300;
}

/* --------- Careers --------- */
.careers {
  background: var(--surface-tint);
  padding: var(--section-y) 0;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.job-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
}

.job-group__title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  font-weight: 400;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.job-group ul li {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 400;
  color: var(--heading);
}

.job-group ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.job-loc {
  font-size: 12px;
  color: var(--body-muted);
  font-weight: 300;
  padding: 3px 8px;
  background: var(--surface-tint);
  border-radius: var(--r-xs);
}

/* --------- Contact --------- */
.contact {
  background: var(--navy);
  color: var(--white);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(83, 58, 253, 0.35), transparent 60%),
    radial-gradient(ellipse 55% 45% at 90% 85%, rgba(249, 107, 238, 0.18), transparent 60%);
  pointer-events: none;
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.contact__info .h2 {
  color: var(--white);
  margin-bottom: 24px;
}

.contact__info p {
  color: rgba(255, 255, 255, 0.72);
}

.contact__list {
  margin-top: 36px;
  display: grid;
  gap: 20px;
}

.contact__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__list svg {
  color: var(--purple-light);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact__key {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
  font-weight: 400;
}

.contact__list a,
.contact__list span {
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.45;
}

.contact__list a:hover {
  color: var(--purple-light);
}

/* Form */
.contact__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  box-shadow: var(--shadow-stripe);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 400;
  color: var(--label);
  font-feature-settings: 'ss01';
}

.field__opt {
  color: var(--body-muted);
  font-weight: 300;
}

.field input,
.field select,
.field textarea {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  background: var(--white);
  color: var(--heading);
  font-size: 15px;
  font-weight: 400;
  transition: border-color var(--t), box-shadow var(--t);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(83, 58, 253, 0.12);
}

.field textarea {
  resize: vertical;
  font-family: inherit;
}

.contact__form .btn--primary {
  grid-column: 1 / -1;
  padding: 13px 20px;
  font-size: 15px;
}

.form-success {
  grid-column: 1 / -1;
  padding: 12px 16px;
  background: var(--success-bg);
  color: var(--success-text);
  border: 1px solid var(--success-border);
  border-radius: var(--r-xs);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

/* --------- Footer --------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  max-width: 340px;
}

.footer__logo {
  height: 48px;
}

.footer__title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 18px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul a,
.footer__contact li,
.footer__contact a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.5;
}

.footer__col ul a:hover,
.footer__contact a:hover {
  color: var(--purple-light);
}

.footer__contact li {
  margin-bottom: 10px;
}

.footer__bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  font-feature-settings: 'ss01';
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

.footer__links a:hover {
  color: var(--purple-light);
}

/* --------- Reveal on scroll --------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------- Focus states (Stripe ring) --------- */
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
  border-radius: 2px;
}

/* --------- Responsive --------- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .service-detail__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__aside { position: static; }
  .news__grid { grid-template-columns: 1fr 1fr; }
  .news-card--featured { grid-column: 1 / -1; }
  .news-card--featured .news-card__media { aspect-ratio: 21 / 9; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }

  .header__inner { min-height: 64px; }
  .header__logo img { height: 38px; }

  .nav {
    position: fixed;
    inset: 72px 0 0;
    background: var(--white);
    padding: 24px var(--gutter);
    transform: translateX(100%);
    transition: transform var(--t);
    overflow-y: auto;
  }
  .nav.active { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__link {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: var(--r-md);
    justify-content: space-between;
  }

  .mega {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    min-width: 0;
    padding: 0 0 0 20px;
    margin: 4px 0 12px;
    border: none;
    display: none;
  }
  .nav__item.has-mega.open .mega { display: block; }
  .mega__inner { grid-template-columns: 1fr; gap: 16px; }

  .hamburger { display: flex; }
  .header__actions .btn { display: none; }

  .hero__meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__meta-sep { display: none; }

  .services__grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .sme-products { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .news__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .contact__form { grid-template-columns: 1fr; padding: 28px 24px; }

  .hero::after { height: 48px; }
}

@media (max-width: 480px) {
  .marquee__item img { height: 36px; }
  .marquee__track { gap: 56px; }
  .feature-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Extended components — hero photo, service cards w/ photos,
   showcase, page hero, page content, features, media strip,
   callout, info card, breadcrumb, CTA strip
   ========================================================= */

/* --- Hero background photo --- */
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  filter: saturate(1.2) contrast(1.1) brightness(0.85);
}

.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at center 35%, transparent, rgba(6, 27, 49, 0.25) 100%),
    linear-gradient(180deg, rgba(6, 27, 49, 0.15) 0%, rgba(6, 27, 49, 0.4) 50%, rgba(6, 27, 49, 0.72) 100%);
}

/* Make sure wash sits above photo but under content */
.hero__wash {
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.85;
}

/* --- Dark button for light sections --- */
.btn--dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: rgba(6, 27, 49, 0.3) 0px 4px 12px -4px;
}

.btn--dark:hover {
  background: #0a2a4a;
}

/* --- Service cards with photos (redesign) --- */
.service-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  color: inherit;
}

.service-card__photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.service-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.service-card:hover .service-card__photo img {
  transform: scale(1.06);
}

.service-card__body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.service-card__body .service-card__icon {
  margin-bottom: 4px;
  width: 40px;
  height: 40px;
}

.service-card__body .service-card__title {
  margin-bottom: 0;
}

.service-card__body .service-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card__body .service-card__link::after {
  content: '→';
  transition: transform var(--t);
}

.service-card:hover .service-card__body .service-card__link::after {
  transform: translateX(4px);
}

/* --- About photo card --- */
.photo-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-stripe);
  border: 1px solid var(--border);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.photo-card:hover img {
  transform: scale(1.04);
}

.photo-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 26px 26px;
  background: linear-gradient(180deg, transparent, rgba(6, 27, 49, 0.92) 60%);
  color: var(--white);
}

.photo-card__label {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-light);
  margin-bottom: 6px;
}

.photo-card__text {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}

/* --- Showcase strip --- */
.showcase {
  padding: calc(var(--section-y) - 20px) 0;
  background: var(--surface-tint);
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
}

.showcase__item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform var(--t), box-shadow var(--t);
}

.showcase__item--wide {
  aspect-ratio: 16 / 11;
}

.showcase__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-stripe);
}

.showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.showcase__item:hover img {
  transform: scale(1.05);
}

.showcase__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(6, 27, 49, 0.92));
  color: var(--white);
}

.showcase__label {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-light);
  margin-bottom: 4px;
}

.showcase__text {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.35;
}

/* =========================================================
   Service sub-pages: page hero, content, features, media, cta
   ========================================================= */

.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 110px;
  overflow: hidden;
  isolation: isolate;
}

.page-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: saturate(1.2) contrast(1.1) brightness(0.85);
}

.page-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 27, 49, 0.3) 0%, rgba(6, 27, 49, 0.55) 50%, rgba(6, 27, 49, 0.85) 100%);
}

.page-hero__wash {
  position: absolute;
  inset: -10%;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 40% at 15% 20%, rgba(83, 58, 253, 0.45), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(249, 107, 238, 0.28), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  mix-blend-mode: screen;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 56px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 100%);
  z-index: 2;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero .display-large {
  color: var(--white);
  margin: 20px 0 24px;
}

.page-hero__subtitle {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  margin-bottom: 4px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--t);
}

.breadcrumb a:hover {
  color: var(--purple-light);
}

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb__current {
  color: var(--white);
  font-weight: 400;
}

/* Page content layout */
.page-content {
  background: var(--white);
  padding: var(--section-y) 0;
}

.page-content__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 72px;
  align-items: start;
}

.page-content__body .h2,
.page-content__body .h3 {
  margin-bottom: 18px;
}

.page-content__body .h3 {
  margin-top: 40px;
}

.page-content__body p {
  margin-bottom: 18px;
}

.page-content__body .btn {
  margin-top: 10px;
}

/* Simple list */
.simple-list {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.simple-list li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  font-weight: 300;
  color: var(--body);
  line-height: 1.55;
}

.simple-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(83, 58, 253, 0.12);
  box-shadow: inset 0 0 0 2px var(--purple);
}

/* Callout */
.callout {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  background: rgba(83, 58, 253, 0.04);
  border: 1px solid var(--border-soft-purple);
  border-left: 3px solid var(--purple);
  border-radius: var(--r-md);
  margin: 24px 0 28px;
}

.callout__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft-purple);
}

.callout strong {
  display: block;
  font-weight: 400;
  font-size: 15px;
  color: var(--heading);
  margin-bottom: 4px;
}

.callout p {
  font-size: 14px;
  color: var(--body);
  margin: 0;
  line-height: 1.5;
}

/* Info card (sidebar) */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-stripe);
  position: sticky;
  top: 110px;
}

.info-card__label {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.info-card__list {
  display: grid;
  gap: 2px;
  margin-bottom: 20px;
}

.info-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}

.info-card__list li:last-child {
  border-bottom: 0;
}

.info-card__list span {
  color: var(--body);
  font-weight: 300;
}

.info-card__list strong {
  color: var(--heading);
  font-weight: 400;
}

/* Page features (grid of boxes) */
.page-features {
  background: var(--surface-tint);
  padding: var(--section-y) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-stripe);
  border-color: var(--border-soft-purple);
}

.feature-box__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(83, 58, 253, 0.08);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid var(--border-soft-purple);
}

.feature-box__num {
  font-size: 28px;
  font-weight: 300;
  color: var(--purple);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1;
  font-feature-settings: 'tnum';
}

.feature-box h4 {
  font-size: 16px;
  font-weight: 400;
  color: var(--heading);
  margin-bottom: 8px;
  letter-spacing: -0.008em;
}

.feature-box p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--body);
  font-weight: 300;
}

/* Media strip — 3 photos */
.media-strip {
  background: var(--white);
  padding: 48px 0 var(--section-y);
}

.media-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.media-strip figure {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.media-strip figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.media-strip figure:hover img {
  transform: scale(1.05);
}

/* CTA strip */
.cta-strip {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(83, 58, 253, 0.3), transparent 60%),
    radial-gradient(ellipse 40% 50% at 85% 50%, rgba(249, 107, 238, 0.2), transparent 60%);
  pointer-events: none;
}

.cta-strip__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip__inner > div {
  max-width: 560px;
}

.cta-strip .h2 {
  margin-bottom: 8px;
}

/* =========================================================
   Responsive overrides for new components
   ========================================================= */
@media (max-width: 1024px) {
  .showcase__grid { grid-template-columns: 1fr 1fr; }
  .showcase__item--wide { grid-column: 1 / -1; aspect-ratio: 21 / 9; }
  .page-content__grid { grid-template-columns: 1fr; gap: 48px; }
  .info-card { position: static; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .media-strip__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card__photo { aspect-ratio: 16 / 9; }
  .showcase__grid { grid-template-columns: 1fr; }
  .showcase__item--wide { aspect-ratio: 16 / 10; }
  .features-grid { grid-template-columns: 1fr; }
  .media-strip__grid { grid-template-columns: 1fr; }
  .cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 48px 0 84px; }
  .page-hero::after { height: 40px; }
  .photo-card { aspect-ratio: 16 / 12; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .marquee__track,
  .people__track { animation: none; }
}

/* =========================================================
   FAQ Accordion
   ========================================================= */
.faq {
  background: var(--white);
  padding: var(--section-y) 0;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: start;
}

.faq__intro .h2 {
  margin-bottom: 16px;
}

.faq__intro p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t);
}

.faq-item[open] {
  box-shadow: var(--shadow-stripe);
  border-color: var(--border-soft-purple);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 400;
  color: var(--heading);
  font-feature-settings: 'ss01';
  letter-spacing: -0.005em;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(83, 58, 253, 0.08);
  border: 1px solid var(--border-soft-purple);
  color: var(--purple);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M5 1v8M1 5h8' stroke='%23533afd' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--t), background var(--t);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--purple);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M5 1v8M1 5h8' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.faq-item__answer {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
  font-weight: 300;
}

.faq-item__answer p {
  margin-bottom: 12px;
}

.faq-item__answer p:last-child { margin-bottom: 0; }

/* =========================================================
   Process steps
   ========================================================= */
.process {
  background: var(--surface-tint);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 30% at 10% 20%, rgba(83, 58, 253, 0.05), transparent 60%),
    radial-gradient(ellipse 30% 40% at 90% 80%, rgba(249, 107, 238, 0.035), transparent 60%);
  pointer-events: none;
}

.process > * {
  position: relative;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--purple-light) 0 6px, transparent 6px 14px);
  z-index: 0;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
  transition: transform var(--t), box-shadow var(--t);
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-stripe);
}

.process-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-soft-purple);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  margin: 0 auto 20px;
  font-feature-settings: 'tnum';
  box-shadow: 0 0 0 6px var(--white), 0 0 0 7px var(--border-soft-purple);
}

.process-step h4 {
  font-size: 16px;
  font-weight: 400;
  color: var(--heading);
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: -0.008em;
}

.process-step p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--body);
  font-weight: 300;
  text-align: center;
}

/* =========================================================
   Eligibility / Requirements two-column
   ========================================================= */
.requirements {
  background: var(--white);
  padding: var(--section-y) 0;
}

.requirements__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.req-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
}

.req-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.req-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(83, 58, 253, 0.08);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft-purple);
  flex-shrink: 0;
}

.req-card__head h3 {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--heading);
}

.req-list {
  display: grid;
  gap: 14px;
}

.req-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--body);
  font-weight: 300;
  line-height: 1.55;
}

.req-list li svg {
  flex-shrink: 0;
  color: var(--success);
  margin-top: 3px;
}

/* =========================================================
   Benefits grid (rich card with icon + text)
   ========================================================= */
.benefits {
  background: var(--surface-tint);
  padding: var(--section-y) 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--t), box-shadow var(--t);
}

.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-stripe);
}

.benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(83, 58, 253, 0.08), rgba(249, 107, 238, 0.04));
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--border-soft-purple);
}

.benefit h4 {
  font-size: 18px;
  font-weight: 400;
  color: var(--heading);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.benefit p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  font-weight: 300;
}

/* =========================================================
   Testimonial cards
   ========================================================= */
.testimonials {
  background: var(--white);
  padding: var(--section-y) 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--magenta));
  border-radius: 0 0 3px 3px;
}

.testimonial__quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--heading);
  font-weight: 300;
  margin-bottom: 24px;
  font-feature-settings: 'ss01';
}

.testimonial__author {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  flex-shrink: 0;
}

.testimonial__name {
  font-size: 14px;
  font-weight: 400;
  color: var(--heading);
  line-height: 1.3;
}

.testimonial__role {
  font-size: 12px;
  color: var(--body);
  font-weight: 300;
}

/* =========================================================
   Rich text content extras
   ========================================================= */
.page-content__body h3 + p {
  margin-top: -4px;
}

.doc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 24px;
}

.doc-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  background: var(--surface-tint);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--label);
  font-weight: 400;
}

.doc-list li svg {
  flex-shrink: 0;
  color: var(--purple);
}

/* =========================================================
   Responsive overrides for new components
   ========================================================= */
@media (max-width: 1024px) {
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .process__steps::before { display: none; }
  .requirements__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .doc-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .process__steps { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .faq-item summary { padding: 16px 18px; font-size: 15px; }
  .faq-item__answer { padding: 0 18px 18px; }
  .req-card { padding: 28px 22px; }
}

/* =========================================================
   Decorative banner section (full-bleed photo)
   ========================================================= */
.banner {
  position: relative;
  padding: clamp(96px, 12vw, 160px) 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
  color: var(--white);
}

.banner__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.banner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(1.2) contrast(1.08) brightness(0.85);
  transform: scale(1.03);
  transition: transform 1.2s ease;
}

.banner:hover .banner__photo img {
  transform: scale(1.08);
}

.banner__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent, rgba(6, 27, 49, 0.45) 100%),
    linear-gradient(180deg, rgba(6, 27, 49, 0.4) 0%, rgba(6, 27, 49, 0.55) 50%, rgba(6, 27, 49, 0.85) 100%);
}

.banner__wash {
  position: absolute;
  inset: -10%;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 40% at 18% 25%, rgba(83, 58, 253, 0.25), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(249, 107, 238, 0.18), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  mix-blend-mode: screen;
}

.banner__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.banner .display-large {
  margin: 18px 0 22px;
}

.banner__subtitle {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  margin-bottom: 56px;
  font-feature-settings: 'ss01';
}

.banner__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.banner__stat {
  position: relative;
}

.banner__stat-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 8px;
  font-feature-settings: 'tnum';
  background: linear-gradient(135deg, #ffffff, var(--purple-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner__stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  font-feature-settings: 'ss01';
}

@media (max-width: 768px) {
  .banner { padding: 84px 0 96px; }
  .banner__stats { grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 28px; }
  .banner__subtitle { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .banner__stats { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* =========================================================
   WhatsApp floating widget
   ========================================================= */
.wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  font-family: 'Inter', system-ui, sans-serif;
}

.wa__bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  box-shadow:
    rgba(37, 211, 102, 0.35) 0 8px 24px -6px,
    rgba(0, 0, 0, 0.18) 0 4px 12px -4px;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}

.wa__bubble:hover {
  transform: scale(1.08);
  box-shadow:
    rgba(37, 211, 102, 0.5) 0 12px 30px -6px,
    rgba(0, 0, 0, 0.22) 0 6px 14px -4px;
}

.wa__bubble::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.32;
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.32; }
  100% { transform: scale(1.7); opacity: 0; }
}

.wa__badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #ea2261;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  font-feature-settings: 'tnum';
}

/* Popup card */
.wa__popup {
  width: 320px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0 30px 60px -20px,
    rgba(0, 0, 0, 0.15) 0 15px 30px -10px;
  transform: translateY(8px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s cubic-bezier(.4, 0, .2, 1), opacity .25s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.wa.is-open .wa__popup {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.wa__head {
  background: linear-gradient(135deg, #128C7E, #075E54);
  color: #ffffff;
  padding: 18px 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.wa__head::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05), transparent 50%);
  pointer-events: none;
}

.wa__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.wa__avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4caf50;
  border: 2px solid #128C7E;
}

.wa__avatar svg { color: #128C7E; }

.wa__head-text {
  flex: 1;
  line-height: 1.3;
  position: relative;
}

.wa__head-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
  color: #ffffff;
}

.wa__head-text span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
}

.wa__close {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background .2s ease;
}

.wa__close:hover { background: rgba(255, 255, 255, 0.26); }

.wa__body {
  padding: 22px 18px 16px;
  background:
    linear-gradient(rgba(229, 221, 213, 0.45), rgba(229, 221, 213, 0.45)),
    #ECE5DD;
}

.wa__msg {
  background: #ffffff;
  padding: 12px 14px 10px;
  border-radius: 0 12px 12px 12px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #303030;
  font-weight: 400;
  box-shadow: rgba(0, 0, 0, 0.08) 0 1px 2px;
  position: relative;
  margin-bottom: 6px;
  font-feature-settings: 'ss01';
}

.wa__msg::before {
  content: '';
  position: absolute;
  top: 0;
  left: -7px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.wa__msg-name {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #128C7E;
  margin-bottom: 4px;
}

.wa__msg-time {
  display: block;
  text-align: right;
  font-size: 10px;
  color: #8a8a8a;
  margin-top: 4px;
}

.wa__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
  padding: 12px 16px;
  background: #25D366;
  color: #ffffff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease;
  font-family: inherit;
}

.wa__cta:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.wa__cta svg { flex-shrink: 0; }

@media (max-width: 480px) {
  .wa { right: 16px; bottom: 16px; }
  .wa__bubble { width: 56px; height: 56px; }
  .wa__popup { width: calc(100vw - 32px); max-width: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  .wa__bubble::before { animation: none; }
}
