/* ============================================================
   Adissia NRI Microsite — styled to mirror adissia.com/nri.php
   Palette: #274f9a brand blue · #FF9914 accent orange · white
   Headings: Playfair Display (Chronicle-like) · Body: Open Sans
   ============================================================ */

:root {
  --blue: #274f9a;
  --blue-700: #1f3f7d;
  --blue-800: #1a3666;
  --blue-900: #112548;
  --blue-300: #6e93d6;
  --blue-200: #a9c2ec;
  --blue-100: #ebf0fe;
  --blue-50: #f4f7fd;

  --orange: #ff9914;
  --orange-600: #ec8400;

  --ink: #1a1a1a;
  --muted: #5b667d;
  --line: #e2e9f5;
  --white: #ffffff;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 18px rgba(26, 54, 102, .08);
  --shadow-md: 0 18px 44px rgba(26, 54, 102, .15);
  --shadow-lg: 0 30px 70px rgba(17, 37, 72, .24);
  --shadow-blue: 0 16px 34px rgba(39, 79, 154, .32);
  --shadow-orange: 0 14px 30px rgba(255, 153, 20, .4);

  --container: 1200px;

  --font-head: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: clamp(15px, 1vw + 13px, 17px);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; }
button { font-family: inherit; cursor: pointer; }

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

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

/* ---------- Shared ---------- */
.section { padding: clamp(56px, 7vw, 100px) 0; position: relative; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--font-body); font-weight: 700; letter-spacing: .18em;
   font-size: .74rem; color: var(--orange);
  margin-bottom: 14px; display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow-light { color: var(--orange); }
.eyebrow-light::before { background: var(--orange); }

.section-title { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 700; letter-spacing: -.015em; color: var(--blue-800); }
.section-title.light { color: #fff; }
.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; }
.section-sub { color: var(--muted); margin-top: 16px; font-size: 1.06rem; }
.light-muted { color: rgba(255,255,255,.85); margin-top: 16px; }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: 22px; color: var(--blue); font-weight: 700; transition: gap .2s, color .2s; }
.link-arrow:hover { gap: 12px; color: var(--orange-600); }

/* ---------- Buttons ---------- */
/* one consistent shape for every button */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 999px; font-weight: 700; font-size: .95rem; line-height: 1.2;
  border: 2px solid transparent; transition: transform .18s, box-shadow .25s, background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange, .btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-orange:hover, .btn-primary:hover { background: var(--blue-700); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; color: var(--blue); }
.btn-block { width: 100%; }

/* ---------- Brand ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: #fff; color: var(--blue); font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
}
.brand-text { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; line-height: 1; color: #fff; display: flex; flex-direction: column; letter-spacing: .04em; }
.brand-text small { font-family: var(--font-body); font-weight: 600; font-size: .54rem; letter-spacing: .3em; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ============================================================
   HERO — existing NRI banner (banner-nri-new1.webp)
   ============================================================ */
.hero { position: relative; background: var(--blue-900); isolation: isolate; }
.hero-banner { display: block; }
.hero-banner img { width: 100%; height: auto; display: block; }

/* ============================================================
   COUNTER — bg-sec3.webp + white overlay
   ============================================================ */
.counter {
  position: relative; padding: clamp(56px, 8vw, 100px) 0; isolation: isolate;
  background-color: #f4f2ee;
  /* light quilted diamond/argyle pattern */
  background-image:
    linear-gradient(45deg,  #eae7e0 25%, transparent 25%),
    linear-gradient(-45deg, #eae7e0 25%, transparent 25%),
    linear-gradient(45deg,  transparent 75%, #eae7e0 75%),
    linear-gradient(-45deg, transparent 75%, #eae7e0 75%);
  background-size: 220px 220px;
  background-position: 0 0, 0 110px, 110px -110px, -110px 0;
}
.counter-overlay {
  position: absolute; inset: 0; z-index: -1;
  /* bright centre glow that fades the pattern toward the middle */
  background: radial-gradient(70% 80% at 50% 45%, rgba(255,255,255,.97) 0%, rgba(255,255,255,.7) 38%, rgba(255,255,255,0) 78%);
}
.counter-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 20px; text-align: center; }
.cstat-num { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 5.5vw, 3.4rem); color: var(--blue); line-height: 1; }
.cstat-num .plus { color: var(--orange); }
.cstat-label { display: block; font-size: .9rem; font-weight: 600; letter-spacing: .04em; color: var(--blue-800); margin-top: 10px; }

/* ============================================================
   NRI INVESTMENT ADVANTAGES — image + 2x2 grid
   ============================================================ */
.advantages { background: linear-gradient(180deg, #f6f7f9, #ffffff); }
.advantages .section-title { font-weight: 500; color: var(--ink); }
.advantages .section-title strong { font-weight: 800; color: var(--blue-900); }

.adv-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-top: 46px; }
.adv-figure img { width: 100%; height: auto; display: block; }
.adv-intro { color: var(--muted); font-size: 1.05rem; max-width: 540px; margin-bottom: 8px; }

.adv-grid { display: grid; grid-template-columns: 1fr; gap: 4px 44px; margin-top: 26px; }
.adv-item { border-top: 1px solid var(--line); padding: 24px 0; }
.adv-ic { display: block; width: 44px; height: 44px; margin-bottom: 14px; }
.adv-ic img { width: 100%; height: 100%; object-fit: contain; }
.adv-item h3 { font-size: 1rem; color: var(--blue);  letter-spacing: .04em; font-weight: 700; margin-bottom: 8px; }
.adv-item p { color: var(--muted); font-size: .94rem; }

/* ============================================================
   GATEWAY (light)
   ============================================================ */
.gateway { background: var(--blue-50); }
.gateway-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.gateway-copy p { color: var(--muted); margin-top: 12px; }
.gateway-features { display: grid; grid-template-columns: 1fr; gap: 16px; }
.gw-card {
  display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden;
}
.gw-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--orange); transform: scaleY(0); transform-origin: top; transition: transform .3s; }
.gw-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gw-card:hover::before { transform: scaleY(1); }
.gw-card img { width: 56px; height: 56px; object-fit: contain; flex: none; }
.gw-card h3 { font-size: 1.2rem; color: var(--blue-800); margin-bottom: 4px; }
.gw-card p { color: var(--muted); font-size: .94rem; }

/* ============================================================
   WHY COIMBATORE — Trisha cutout + ADISSIA watermark
   ============================================================ */
.why-cbe { background: linear-gradient(180deg, #fff, var(--blue-50)); position: relative; overflow: hidden; }
.why-watermark {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%); z-index: 0;
  font-family: var(--font-head); font-weight: 800; font-size: clamp(7rem, 22vw, 22rem);
  letter-spacing: .04em; color: rgba(39,79,154,.05); white-space: nowrap; pointer-events: none; line-height: 1;
}
.why-cbe .container { position: relative; z-index: 1; }
.why-stage { display: grid; grid-template-columns: 1fr; gap: 6px; margin-top: 36px; align-items: center; }
.why-figure { text-align: center; order: -1; }
.why-figure img { max-width: min(86%, 440px); margin-inline: auto; }
.why-col { display: grid; gap: 4px; }
.why-col li { padding: 22px 0; border-bottom: 1px solid var(--line); }
.why-col li:last-child { border-bottom: 0; }
.why-col h3 { font-size: 1.18rem; color: var(--blue); margin-bottom: 6px; }
.why-col p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ============================================================
   GROWTH ENGINE — nri-bg-growth.jpg (dark) + highlights gallery
   ============================================================ */
.growth {
  position: relative; padding: clamp(60px, 8vw, 110px) 0; isolation: isolate; color: #fff;
  background: url("https://adissia.com/build/img/nri/nri-bg-growth.jpg") no-repeat center / cover; background-attachment: fixed;
}
.growth-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(17,37,72,.88), rgba(26,54,102,.8)); }
.hl-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 50px; }
.hl-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); margin: 0; flex: 0 1 calc(50% - 8px); }
.hl-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.hl-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(17,37,72,.82)); }
.hl-card figcaption { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; line-height: 1.2; }
.hl-card:hover img { transform: scale(1.08); }

/* ============================================================
   WHAT SETS ADISSIA APART — image + feature list
   ============================================================ */
.whatsets { background: #fff; }
.ws-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.ws-figure { width: 100%; }
.ws-figure img { width: 100%; height: auto; display: block; border-radius: 0; box-shadow: none; background: transparent; }
.ws-content .section-title { font-weight: 500; color: var(--ink); }
.ws-content .section-title strong { font-weight: 800; color: var(--blue); }
.ws-intro { color: var(--muted); font-size: 1.05rem; margin: 14px 0 28px; max-width: 52ch; }
.ws-list { display: grid; gap: 22px; }
.ws-list li { display: flex; gap: 16px; align-items: flex-start; }
.ws-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--blue-100); color: var(--blue); display: grid; place-items: center; flex: none; }
.ws-ic svg { width: 19px; height: 19px; }
.ws-list h3 { font-size: 1rem; color: var(--blue-800);  letter-spacing: .04em; font-weight: 700; margin-bottom: 5px; }
.ws-list p { color: var(--muted); font-size: .94rem; }

/* ============================================================
   TESTIMONIALS — coverflow carousel
   ============================================================ */
.testimonials {
  background: url("https://adissia.com/build/img/home/testy-bg.png") no-repeat center / cover, var(--blue-50);
}

.coverflow { position: relative; max-width: 980px; margin: 50px auto 0; }
.cf-stage { position: relative; height: clamp(320px, 52vw, 460px); perspective: 1500px; transform-style: preserve-3d; }

.cf-card {
  --w: clamp(210px, 30vw, 300px);
  position: absolute; top: 50%; left: 50%; width: var(--w); height: 86%;
  margin: 0; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: var(--blue-100); box-shadow: var(--shadow-md);
  transition: transform .55s cubic-bezier(.2,.7,.2,1), opacity .55s, box-shadow .3s;
  will-change: transform, opacity;
}
.cf-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,37,72,0) 55%, rgba(17,37,72,.55)); opacity: 0; transition: opacity .4s; }
.cf-card.is-active { box-shadow: var(--shadow-lg); }
.cf-card.is-active::after { opacity: 1; }

.cf-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.92); color: var(--blue); box-shadow: var(--shadow-md);
  border: 0; cursor: pointer; opacity: 0; transition: opacity .4s, transform .3s; z-index: 2;
}
.cf-card.is-active .cf-play { opacity: 1; }
.cf-play:hover { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.cf-play svg { width: 24px; height: 24px; margin-left: 3px; }
.cf-play::before { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); animation: cfPulse 2s ease-out infinite; }
@keyframes cfPulse { 0% { transform: scale(.9); opacity: .7; } 100% { transform: scale(1.35); opacity: 0; } }

.cf-cap { position: absolute; left: 0; right: 0; bottom: 14px; z-index: 2; text-align: center; color: #fff; opacity: 0; transition: opacity .4s; }
.cf-card.is-active .cf-cap { opacity: 1; }
.cf-cap strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.cf-cap span { font-size: .8rem; color: rgba(255,255,255,.85); }

.cf-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 48px; height: 48px; border-radius: 50%; border: 0; background: #fff; color: var(--blue);
  box-shadow: var(--shadow-md); display: grid; place-items: center; cursor: pointer; transition: background .2s, color .2s, transform .2s;
}
.cf-nav:hover { background: var(--blue); color: #fff; }
.cf-nav svg { width: 22px; height: 22px; }
.cf-prev { left: 0; }
.cf-next { right: 0; }

.cf-dots { display: flex; justify-content: center; gap: 9px; margin: 28px 0 36px; }
.cf-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--blue-200); cursor: pointer; padding: 0; transition: width .3s, background .3s; }
.cf-dots button.is-active { width: 26px; border-radius: 6px; background: var(--orange); }

/* ============================================================
   DISCOVER PROPERTIES (interactive projects explorer)
   ============================================================ */
.discover { background: var(--white); }

/* Tabs */
.discover-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 30px; margin: 42px 0 28px; border-bottom: 1px solid var(--line); }
.dtab { background: none; border: 0; padding: 14px 6px; font-family: var(--font-body); font-weight: 700; font-size: .82rem; letter-spacing: .08em;  color: var(--muted); position: relative; transition: color .2s; }
.dtab:hover { color: var(--blue); }
.dtab.is-active { color: var(--blue); }
.dtab::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--blue); transform: scaleX(0); transition: transform .25s; }
.dtab.is-active::after { transform: scaleX(1); }

/* Main: panel + sidebar */
.discover-main { display: grid; grid-template-columns: 1fr; gap: 18px; }

.discover-panel { display: grid; grid-template-columns: 1fr; background: var(--blue-50); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.dpanel-info { padding: clamp(24px, 3.4vw, 40px); }
.dpanel-loc { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 700; font-size: 1.05rem;  letter-spacing: .03em; }
.dpanel-loc svg { width: 18px; height: 18px; }
.dpanel-name { font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: var(--blue-800); margin: 10px 0 14px; font-weight: 700; }
.dpanel-name span { font-weight: 500; color: var(--muted); }
.dpanel-name strong { color: var(--blue-800); }
.dpanel-desc { color: var(--muted); font-size: .98rem; max-width: 46ch; }
.dpanel-actions { display: flex; flex-wrap: nowrap; gap: 12px; margin-top: 24px; }
.dpanel-actions .btn { padding: 12px 20px; font-size: .88rem; white-space: nowrap; }
.btn-outline { background: transparent; border-color: var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }

.dpanel-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.dstat { background: #fff; padding: clamp(18px, 2.6vw, 30px) 14px; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.dstat strong { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--blue-800); line-height: 1.1; }
.dstat span { font-size: .74rem; color: var(--muted); margin-top: 8px;  letter-spacing: .05em; }

.discover-side { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; background: #fff; align-self: start; }
.discover-side-title { font-family: var(--font-body); font-size: .74rem; font-weight: 700; letter-spacing: .12em;  color: var(--muted); margin-bottom: 6px; }
.discover-list li { border-bottom: 1px solid var(--line); }
.discover-list li:last-child { border-bottom: 0; }
.dlist-item { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; background: none; border: 0; padding: 14px 2px; text-align: left; font-weight: 700; font-size: .86rem; letter-spacing: .04em;  color: var(--muted); transition: color .2s, padding-left .2s; }
.dlist-item:hover { color: var(--blue); padding-left: 6px; }
.dlist-item.is-active { color: var(--blue); }
.dlist-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid currentColor; flex: none; opacity: .5; transition: .2s; }
.dlist-item.is-active .dlist-dot { background: var(--blue); border-color: var(--blue); opacity: 1; box-shadow: 0 0 0 4px rgba(39,79,154,.15); }

/* Why choose */
.discover-why { display: none; }
.discover-why.show { display: grid; grid-template-columns: 1fr; gap: 34px; margin-top: clamp(42px, 6vw, 68px); align-items: center; }
.dwhy-copy h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--blue-800); margin-bottom: 24px; }
.dwhy-copy h3 strong { color: var(--blue); }
.dwhy-list { display: grid; gap: 22px; }
.dwhy-list li { display: flex; gap: 16px; align-items: flex-start; }
.dwhy-ic { width: 42px; height: 42px; border-radius: 11px; background: var(--blue-100); color: var(--blue); display: grid; place-items: center; flex: none; }
.dwhy-ic svg { width: 20px; height: 20px; }
.dwhy-list h4 { font-size: .98rem; color: var(--blue-800);  letter-spacing: .03em; margin-bottom: 4px; }
.dwhy-list p { color: var(--muted); font-size: .92rem; }
.dwhy-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ============================================================
   ENQUIRY MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.open { display: block; }
.modal-overlay { position: absolute; inset: 0; background: rgba(17,37,72,.55); backdrop-filter: blur(3px); animation: mFade .25s ease; }
.modal-dialog {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(460px, calc(100vw - 28px)); max-height: calc(100vh - 28px); overflow: auto;
  border-radius: 6px; box-shadow: var(--shadow-lg);
  padding: clamp(26px, 4vw, 40px); animation: mPop .3s cubic-bezier(.2,.8,.2,1);
}
.modal-dialog--blue {
  background: linear-gradient(160deg, var(--blue), var(--blue-700)); color: #fff;
}
@keyframes mFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes mPop { from { opacity: 0; transform: translate(-50%, -46%) scale(.96); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.modal-close { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; border: 0; background: transparent; color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .2s; }
.modal-close:hover { background: rgba(255,255,255,.18); }
.modal-close svg { width: 20px; height: 20px; }
.modal-title { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; color: #fff; margin: 0 0 24px; }

/* underline-style fields on blue */
.ufield { margin-bottom: 22px; }
.ufield input, .ufield select {
  width: 100%; font: inherit; color: #fff; background: transparent;
  border: 0; border-bottom: 1.5px solid rgba(255,255,255,.4); padding: 8px 2px;
  transition: border-color .2s;
}
.ufield input::placeholder { color: rgba(255,255,255,.65); }
.ufield input:focus, .ufield select:focus { outline: none; border-bottom-color: #fff; }
.ufield select { cursor: pointer; }
.ufield select option { color: var(--ink); background: #fff; }
.ufield select:invalid { color: rgba(255,255,255,.65); }   /* placeholder option look */

.uphone { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: end; }
.uphone select { width: auto; }

/* captcha */
.captcha-block { margin-bottom: 18px; }
.captcha-label { font-size: .9rem; font-weight: 700; color: #fff; margin: 0 0 12px; }
.captcha-row { display: flex; align-items: center; gap: 12px; }
.captcha-code {
  font-family: "Courier New", monospace; font-weight: 700; font-size: 1.25rem; letter-spacing: 4px;
  background: rgba(255,255,255,.85); color: var(--blue-900); padding: 8px 16px; border-radius: 4px;
  user-select: none; text-decoration: line-through; text-decoration-color: rgba(0,0,0,.25);
}
.captcha-refresh { border: 0; background: rgba(255,255,255,.15); color: #fff; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; flex: none; transition: background .2s; }
.captcha-refresh:hover { background: rgba(255,255,255,.3); }
.captcha-refresh svg { width: 17px; height: 17px; }
.captcha-input { flex: 1; min-width: 0; font: inherit; color: #fff; background: transparent; border: 0; border-bottom: 1.5px solid rgba(255,255,255,.4); padding: 8px 2px; }
.captcha-input::placeholder { color: rgba(255,255,255,.65); }
.captcha-input:focus { outline: none; border-bottom-color: #fff; }

/* consent */
.consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 22px; cursor: pointer; }
.consent input { margin-top: 3px; flex: none; width: 16px; height: 16px; accent-color: #fff; }
.consent span { font-size: .78rem; line-height: 1.5; color: rgba(255,255,255,.82); }
.consent strong { color: #fff; font-weight: 700; }
.consent-error { outline: 1.5px solid #ffd2cc; outline-offset: 6px; border-radius: 4px; }
.consent-error input { accent-color: #ffd2cc; }

.modal-actions { text-align: center; }
.btn-white { background: #fff; color: var(--blue); box-shadow: var(--shadow-md); }
.btn-white:hover { background: var(--blue-50); }

.form-status { margin-top: 12px; font-weight: 600; font-size: .9rem; min-height: 1.2em; text-align: center; }
.form-status.ok { color: #d7f5e3; }
.form-status.err { color: #ffd2cc; }

/* ============================================================
   FOOTER — slim copyright bar
   ============================================================ */
.site-footer { background: var(--blue-900); color: rgba(255,255,255,.85); }
.footer-bar { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; padding-block: 20px; font-size: .9rem; }
.footer-copy { margin: 0; }
.footer-links { display: flex; gap: 26px; }
.footer-links a { color: rgba(255,255,255,.85); transition: color .2s; }
.footer-links a:hover { color: var(--orange); }

/* ---------- Sticky side CTA tabs ---------- */
.side-cta {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 95;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
  animation: sideIn .5s .4s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes sideIn { from { opacity: 0; transform: translate(40px, -50%); } to { opacity: 1; transform: translate(0, -50%); } }
.side-tab {
  writing-mode: vertical-rl; transform: rotate(180deg);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 20px 13px; border: 0; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: .78rem; letter-spacing: .14em; 
  border-radius: 0 10px 10px 0; box-shadow: var(--shadow-md);
  transition: padding .2s, background .2s, color .2s;
}
.side-tab svg { width: 17px; height: 17px; transform: rotate(180deg); }
.side-tab:hover { padding-right: 18px; }
.side-tab--solid { background: var(--blue); color: #fff; }
.side-tab--solid:hover { background: var(--blue-700); }
.side-tab--call { background: #fff; color: var(--blue); border: 1px solid var(--blue-200); }
.side-tab--call:hover { background: var(--blue-50); }
@media (max-width: 559.98px) {
  .side-tab { padding: 16px 10px; font-size: .68rem; letter-spacing: .1em; gap: 8px; }
}

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 4px; width: 0%; z-index: 150; background: linear-gradient(90deg, var(--orange), var(--blue)); transition: width .1s linear; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.adv-grid .reveal.in, .ws-list .reveal.in, .hl-grid .reveal.in { transition-delay: calc(var(--i, 0) * 80ms); }

/* ---------- Hero entrance ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.hero-topline { animation: fadeDown .7s ease both; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }

/* ---------- Button shine ---------- */
.btn-orange, .btn-primary { position: relative; overflow: hidden; }
.btn-orange::after, .btn-primary::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent); transform: skewX(-18deg); transition: left .6s; }
.btn-orange:hover::after, .btn-primary:hover::after { left: 140%; }

/* ---------- FAQ slide ---------- */
.faq-item[open] .faq-answer { animation: faqIn .35s ease; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 560px) {
  .counter-grid { grid-template-columns: repeat(4, 1fr); }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .footer-bar { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 768px) {
  .gateway-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .ws-grid { grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: center; }
  .hl-card { flex-basis: calc(25% - 12px); }
  .discover-main { grid-template-columns: 1fr 280px; gap: 22px; }
  .discover-panel { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr); }
  .adv-layout { grid-template-columns: 1fr 1.1fr; gap: 56px; }
}

@media (min-width: 992px) {
  .why-cbe { padding-bottom: 0; }
  .why-stage { grid-template-columns: 1fr minmax(360px, 480px) 1fr; gap: 50px; align-items: end; }
  .why-figure { order: 0; align-self: end; display: flex; }
  .why-figure img { max-width: 100%; width: 100%; display: block; }
  .why-col { align-self: center; padding-bottom: clamp(40px, 6vw, 80px); }
  .why-col--left { text-align: right; }
}

@media (min-width: 992px) {
  .gateway-features { grid-template-columns: repeat(2, 1fr); }
  .discover-why.show { grid-template-columns: 1fr 1fr; gap: 50px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll span { animation: none; }
  .growth, .counter { background-attachment: scroll; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
