/* ===== Design tokens ===== */
:root {
  --bg: #070b1a;
  --bg-2: #0b1230;
  --surface: #111a3d;
  --surface-2: #16205020;
  --border: #25336e;
  --text: #e8ecff;
  --muted: #9aa6d6;
  --primary: #2e7bff;
  --primary-2: #00d4ff;
  --accent: #7c5cff;
  --grad: linear-gradient(120deg, #2e7bff 0%, #00d4ff 60%, #7c5cff 100%);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --shadow: 0 30px 60px -20px rgba(0, 0, 0, .55);
  --shadow-glow: 0 0 0 1px rgba(46,123,255,.25), 0 24px 60px -18px rgba(46,123,255,.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Space Grotesk", "Inter", sans-serif; line-height: 1.1; font-weight: 700; letter-spacing: -.02em; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary-2);
  margin-bottom: 14px;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -8px rgba(46,123,255,.6); background-size: 160% 160%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -8px rgba(46,123,255,.75); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7,11,26,.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; }
.logo-mark { display: grid; place-items: center; }
.logo-mark img { height: 46px; width: auto; display: block; }
.site-footer .logo-mark img { height: 40px; }
.logo-text { font-family: "Space Grotesk", sans-serif; font-size: 1.18rem; letter-spacing: -.01em; color: var(--text); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--muted); font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav a:hover { color: var(--text); }
.nav .nav-cta { color: #fff; }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; flex-direction: column; gap: 6px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.orb-1 { width: 520px; height: 520px; background: radial-gradient(circle, #2e7bff, transparent 70%); top: -160px; right: -120px; }
.orb-2 { width: 460px; height: 460px; background: radial-gradient(circle, #7c5cff, transparent 70%); bottom: -180px; left: -140px; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero-copy h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); margin-bottom: 22px; }
.hero-copy > p { color: var(--muted); font-size: 1.12rem; max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust span { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }
.hero-trust-logos { display: flex; gap: 26px; margin-top: 12px; flex-wrap: wrap; }
.hero-trust-logos span { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; opacity: .55; letter-spacing: 0; }

/* Phone visual */
.hero-visual { display: flex; justify-content: center; }
.phone {
  position: relative; width: 280px; height: 560px; border-radius: 42px;
  background: linear-gradient(160deg, #1a2657, #0c1230);
  border: 1px solid var(--border); padding: 14px;
  box-shadow: var(--shadow-glow), var(--shadow);
  animation: float 6s ease-in-out infinite;
}
.phone-notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 110px; height: 22px; background: #060912; border-radius: 0 0 14px 14px; z-index: 3; }
.phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 30px; overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, #16235e 0%, #0a1030 60%);
  padding: 60px 18px 18px;
}
.phone-wave { position: absolute; inset: 0; background: conic-gradient(from 180deg at 50% 120%, rgba(0,212,255,.0), rgba(46,123,255,.22), rgba(124,92,255,.18), rgba(0,212,255,0)); opacity: .8; }
.chip {
  position: relative; z-index: 2; display: flex; gap: 12px; align-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(6px); border-radius: 14px; padding: 12px 14px; margin-bottom: 14px;
  animation: chipIn .6s ease both;
}
.chip-2 { animation-delay: .25s; }
.chip-3 { animation-delay: .5s; }
.chip-ico { width: 38px; height: 38px; flex: none; border-radius: 11px; display: grid; place-items: center; font-size: 1.1rem; background: var(--grad); color: #fff; }
.chip strong { display: block; font-size: .9rem; }
.chip small { color: var(--muted); font-size: .76rem; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes chipIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ===== Stats ===== */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; padding: 44px 24px; }
.stat { text-align: center; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); width: 1px; height: 46px; background: var(--border); }
.stat-num { display: block; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 2.6rem); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: var(--muted); font-size: .86rem; }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* Services cards */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  position: relative; background: linear-gradient(180deg, var(--surface), #0d1535);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 32px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: 0; transition: opacity .25s; mix-blend-mode: overlay; }
.card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: var(--shadow); }
.card:hover::before { opacity: .08; }
.card-ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: var(--grad); margin-bottom: 20px; box-shadow: 0 10px 24px -8px rgba(46,123,255,.6); }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 18px; }
.card-link { color: var(--primary-2); font-weight: 600; font-size: .92rem; }
.card-link:hover { color: #fff; }

/* Story */
.story { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.story-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.story-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 20px; }
.story-copy p { color: var(--muted); margin-bottom: 16px; }
.story-list { list-style: none; margin: 22px 0 30px; display: grid; gap: 12px; }
.story-list li { position: relative; padding-left: 30px; color: var(--text); }
.story-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--grad); color: #fff; font-size: .72rem; display: grid; place-items: center; }
.story-card { background: linear-gradient(160deg, var(--surface), #0c1233); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.story-card h3 { font-size: 1.45rem; margin-bottom: 26px; }
.story-bars { display: grid; gap: 18px; }
.bar { position: relative; }
.bar label { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 6px; }
.bar span { display: block; height: 9px; border-radius: 999px; background: rgba(255,255,255,.07); position: relative; overflow: hidden; }
.bar span::after { content: ""; position: absolute; inset: 0; width: var(--w); background: var(--grad); border-radius: 999px; transform-origin: left; animation: grow 1.2s ease forwards; }
@keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Why */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-item { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: transform .25s, border-color .25s; }
.why-item:hover { transform: translateY(-5px); border-color: var(--accent); }
.why-ico { font-size: 1.8rem; margin-bottom: 16px; }
.why-item h3 { font-size: 1.15rem; margin-bottom: 10px; }
.why-item p { color: var(--muted); font-size: .94rem; }

/* Partners */
.partners { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.partner-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.partner-logo {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 38px 18px; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.6rem;
  transition: transform .25s, border-color .25s, background .25s;
}
.partner-logo small { font-family: "Inter", sans-serif; font-weight: 500; font-size: .76rem; color: var(--muted); letter-spacing: .04em; }
.partner-logo:hover { transform: translateY(-5px); border-color: var(--primary); background: rgba(46,123,255,.08); }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.contact-copy > p { color: var(--muted); margin-bottom: 34px; }
.contact-details { list-style: none; display: grid; gap: 20px; }
.contact-details li { display: flex; gap: 16px; align-items: center; }
.contact-ico { width: 48px; height: 48px; flex: none; border-radius: 13px; display: grid; place-items: center; font-size: 1.2rem; background: rgba(255,255,255,.05); border: 1px solid var(--border); }
.contact-details small { display: block; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 2px; }
.contact-details a, .contact-details address { font-style: normal; font-weight: 600; font-size: 1.02rem; }
.contact-details a:hover { color: var(--primary-2); }

.contact-form { background: linear-gradient(180deg, var(--surface), #0c1233); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: .86rem; font-weight: 500; margin-bottom: 8px; color: var(--text); }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 15px; color: var(--text); font-family: inherit; font-size: .96rem; transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #5e6aa0; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(46,123,255,.2); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%239aa6d6' stroke-width='2'%3E%3Cpath d='m3 5 4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.field input.invalid, .field textarea.invalid { border-color: #ff5d73; box-shadow: 0 0 0 3px rgba(255,93,115,.18); }
.form-status { margin-top: 14px; font-size: .92rem; min-height: 1.2em; }
.form-status.success { color: #46e3a0; }
.form-status.error { color: #ff8195; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 64px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand p { color: var(--muted); margin: 16px 0 20px; max-width: 320px; font-size: .94rem; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.05); border: 1px solid var(--border); font-weight: 600; transition: background .2s, transform .2s; }
.socials a:hover { background: var(--grad); transform: translateY(-3px); border-color: transparent; color: #fff; }
.footer-col h4 { font-size: .92rem; margin-bottom: 16px; letter-spacing: .04em; }
.footer-col a { display: block; color: var(--muted); font-size: .92rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: .85rem; }

/* ===== Reveal animation (gated on JS so content is visible without it) ===== */
.reveal { transition: opacity .7s ease, transform .7s ease; }
body.reveals-on .reveal { opacity: 0; transform: translateY(28px); }
body.reveals-on .reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { order: -1; }
  .phone { width: 230px; height: 470px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 12px; }
  .stat:nth-child(3)::after { display: none; }
  .cards { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-visual { order: 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-logos { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 680px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 4px; align-items: stretch;
    background: rgba(8,12,28,.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border);
    padding: 18px 24px 26px; transform: translateY(-130%); transition: transform .35s ease; box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 12px 4px; font-size: 1.02rem; }
  .nav .nav-cta { margin-top: 8px; }
  .nav-toggle { display: flex; }
  .section { padding: 72px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat::after { display: none !important; }
  .why-grid, .partner-logos, .footer-inner, .field-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .hero { padding: 130px 0 70px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  body.reveals-on .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS
   ============================================================ */

/* Active nav state */
.nav a.active { color: var(--text); }
.nav a.active:not(.nav-cta) { position: relative; }
.nav a.active:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--grad); border-radius: 2px;
}
@media (max-width: 680px) {
  .nav a.active:not(.nav-cta)::after { display: none; }
  .nav a.active:not(.nav-cta) { color: var(--primary-2); }
}

/* Sub-page hero */
.page-hero { position: relative; padding: 150px 0 72px; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-bottom: 18px; max-width: 760px; }
.page-hero h1 .grad { display: inline; }
.page-hero p { color: var(--muted); font-size: 1.12rem; max-width: 620px; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: .85rem; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a { transition: color .2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { opacity: .45; }
.breadcrumb .current { color: var(--primary-2); }

/* Service detail rows */
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--border); }
.service-row:last-child { border-bottom: 0; }
.service-row:nth-child(even) .service-media { order: -1; }
.service-text h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 14px 0 14px; }
.service-text > p { color: var(--muted); margin-bottom: 22px; }
.feature-list { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.feature-list li { position: relative; padding-left: 30px; color: var(--text); }
.feature-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: var(--grad); color: #fff; font-size: .72rem; display: grid; place-items: center; }
.service-media { display: grid; place-items: center; min-height: 300px; border-radius: var(--radius); border: 1px solid var(--border); background: linear-gradient(160deg, var(--surface), #0c1233); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.service-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(150deg, rgba(46,123,255,.42), rgba(13,18,40,.78)); }
.service-media .big-ico { position: relative; z-index: 2; width: 92px; height: 92px; border-radius: 24px; display: grid; place-items: center; color: #fff; background: var(--grad); box-shadow: 0 18px 40px -10px rgba(46,123,255,.7); }
.service-media .big-ico svg { width: 46px; height: 46px; }
.section-tag { display: inline-block; font-size: .82rem; font-weight: 600; color: var(--primary-2); }

/* Timeline */
.timeline { position: relative; max-width: 720px; margin: 0 auto; padding-left: 4px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--primary), var(--accent)); opacity: .5; }
.tl-item { position: relative; padding: 0 0 36px 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 4px rgba(46,123,255,.15); }
.tl-year { font-family: "Space Grotesk", sans-serif; font-weight: 700; color: var(--primary-2); font-size: 1.05rem; }
.tl-item h3 { font-size: 1.2rem; margin: 4px 0 8px; }
.tl-item p { color: var(--muted); }

/* Values grid */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; transition: transform .25s, border-color .25s; }
.value-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.value-card .v-ico { font-size: 1.8rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: .94rem; }

/* Split intro (about / story) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 16px; }
.mantra { border-left: 3px solid; border-image: var(--grad) 1; padding: 6px 0 6px 22px; margin: 24px 0; }
.mantra strong { font-family: "Space Grotesk", sans-serif; font-size: 1.25rem; }

/* Branded partner logos */
.brand-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.brand-logo { display: grid; place-items: center; background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 22px; transition: transform .25s, border-color .25s, background .25s; }
.brand-logo:hover { transform: translateY(-5px); border-color: var(--primary); background: rgba(46,123,255,.07); }
.brand-logo svg { width: 100%; max-width: 138px; height: auto; }

/* CTA band */
.cta-band .cta-card {
  position: relative; text-align: center; max-width: 820px; margin: 0 auto;
  background: linear-gradient(160deg, var(--surface), #0c1233); border: 1px solid var(--border);
  border-radius: 26px; padding: 56px 40px; box-shadow: var(--shadow); overflow: hidden;
}
.cta-band .cta-card::before { content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 420px; height: 280px; background: radial-gradient(circle, rgba(46,123,255,.4), transparent 70%); filter: blur(50px); }
.cta-band .cta-card > * { position: relative; }
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Contact page */
.contact-page { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.info-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 22px; }
.map-frame { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; line-height: 0; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 320px; border: 0; filter: grayscale(.2) invert(.9) hue-rotate(180deg) contrast(.9); }
.hours { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--border); color: var(--muted); font-size: .92rem; }
.hours:last-child { border-bottom: 0; }
.hours strong { color: var(--text); }

/* Legal pages */
.legal { max-width: 820px; margin: 0 auto; }
.legal .updated { color: var(--primary-2); font-size: .88rem; margin-bottom: 28px; }
.legal h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.legal h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { padding-left: 20px; margin-bottom: 18px; }
.legal a { color: var(--primary-2); }
.legal a:hover { text-decoration: underline; }
.legal .note { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 18px; font-size: .9rem; }

/* Responsive — multi-page */
@media (max-width: 980px) {
  .service-row { grid-template-columns: 1fr; gap: 32px; }
  .service-row:nth-child(even) .service-media { order: 0; }
  .service-media { order: -1; min-height: 200px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 38px; }
  .brand-logos { grid-template-columns: repeat(2, 1fr); }
  .contact-page { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 680px) {
  .page-hero { padding: 124px 0 56px; }
  .values-grid, .brand-logos { grid-template-columns: 1fr; }
  .cta-band .cta-card { padding: 40px 24px; }
}

/* ============================================================
   REDESIGN v2 — warmer, more inviting, image-rich
   ============================================================ */
:root {
  --warm: #ff7a3d;
  --warm-2: #ffac4a;
  --warm-grad: linear-gradient(125deg, #ff8a3d 0%, #ff5e7a 100%);
}

.eyebrow.warm { color: #ffd8c2; }
.btn-light { background: #fff; color: #0b1230; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -10px rgba(0,0,0,.4); }

/* Warm orb for the hero backdrop */
.orb-warm { width: 360px; height: 360px; background: radial-gradient(circle, #ff7a3d, transparent 70%); top: 38%; left: 26%; opacity: .22; }

/* ---- Hero photo card (replaces the phone mockup) ---- */
.hero-stage { position: relative; display: inline-block; }
.hero-photo {
  position: relative; width: clamp(280px, 36vw, 430px); aspect-ratio: 4 / 5;
  border-radius: 28px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-glow), var(--shadow);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,11,26,0) 45%, rgba(7,11,26,.5)); }
.float-chip {
  position: absolute; z-index: 3; display: flex; gap: 11px; align-items: center;
  background: rgba(13,18,40,.74); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 11px 15px 11px 11px;
  box-shadow: 0 14px 32px -14px rgba(0,0,0,.7); animation: chipIn .7s ease both;
}
.float-chip .chip-ico { width: 36px; height: 36px; flex: none; border-radius: 10px; display: grid; place-items: center; color: #fff; background: var(--grad); font-size: 1rem; }
.float-chip strong { font-size: .86rem; display: block; line-height: 1.2; }
.float-chip small { font-size: .73rem; color: var(--muted); }
.float-chip.fc-1 { top: 22px; left: -22px; }
.float-chip.fc-2 { bottom: 96px; right: -26px; animation-delay: .22s; }
.float-chip.fc-3 { bottom: 20px; left: -10px; animation-delay: .44s; }
.float-chip.warm .chip-ico { background: var(--warm-grad); }

/* ---- Service cards with photos ---- */
.services .card { padding-top: 0; }
.card-media { position: relative; margin: 0 -32px 0; height: 178px; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.card:hover .card-media img { transform: scale(1.07); }
.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,26,61,0) 40%, rgba(13,18,40,.82)); }
.services .card .card-ico { position: relative; z-index: 2; margin-top: -30px; }

/* ---- White partner logo tiles ---- */
.brand-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.brand-logo {
  background: #fff; border: 1px solid rgba(255,255,255,.08); border-radius: 16px;
  padding: 26px 22px; display: grid; place-items: center; min-height: 108px;
  box-shadow: 0 12px 30px -16px rgba(0,0,0,.55); transition: transform .25s, box-shadow .25s;
}
.brand-logo:hover { transform: translateY(-6px); box-shadow: 0 20px 44px -16px rgba(0,0,0,.6); }
.brand-logo img { height: 48px; width: auto; }
.brand-logo img[alt="Airtel"] { height: 88px; }
.brand-note { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 18px; }

/* ---- Lifestyle band (on-brand gradient + playful pattern + mobile-content photo) ---- */
.lifestyle { position: relative; overflow: hidden; background: linear-gradient(130deg, #2543bf 0%, #5b3fce 55%, #7c4fd6 100%); }
.lifestyle::before { content: ""; position: absolute; inset: 0; background: url("images/pattern.svg") repeat; background-size: 230px; opacity: .12; }
.lifestyle::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 85% 10%, rgba(0,212,255,.18), transparent 60%); }
.lifestyle-inner { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; gap: 50px; align-items: center; }
.lifestyle-photo { border-radius: 26px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 30px 60px -18px rgba(8,12,34,.6); border: 4px solid rgba(255,255,255,.35); }
.lifestyle-photo img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-copy .eyebrow { color: #fff; opacity: .92; }
.lifestyle-copy h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.lifestyle-copy p { color: rgba(255,255,255,.94); margin-bottom: 26px; max-width: 540px; }
.lifestyle-points { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 28px; }
.lifestyle-points li { color: #fff; font-weight: 600; font-size: .95rem; display: flex; align-items: center; gap: 8px; }
.lifestyle-points li::before { content: "✓"; width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,.25); display: grid; place-items: center; font-size: .7rem; }

/* ---- Story visual photo (about / story) ---- */
.media-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.media-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .lifestyle-inner { grid-template-columns: 1fr; gap: 34px; }
  .lifestyle-photo { max-width: 340px; }
  .hero-photo { width: clamp(260px, 60vw, 400px); }
  .float-chip.fc-2 { right: -10px; }
}
@media (max-width: 680px) {
  .card-media { margin: 0 -28px; height: 168px; }
  .float-chip.fc-1 { left: -8px; }
  .float-chip.fc-3 { left: 0; }
}

/* ---- Product grid (named products) ---- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: linear-gradient(180deg, var(--surface), #0d1535);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: var(--shadow); }
.pc-media { position: relative; height: 215px; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 26px 22px; }
.pc-media img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; transition: transform .45s ease; }
.product-card:hover .pc-media img { transform: scale(1.05); }
.pc-body { display: flex; flex-direction: column; flex: 1; padding: 22px 26px 26px; }
.pc-cat { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--primary-2); margin-bottom: 10px; }
.pc-body p { color: var(--muted); font-size: .94rem; flex: 1; margin-bottom: 18px; }
.pc-link { color: var(--primary-2); font-weight: 600; font-size: .92rem; align-self: flex-start; }
.pc-link:hover { color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Product detail page */
.product-hero-inner { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center; }
.product-logo-chip { border-radius: 24px; aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center; padding: 32px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.12); }
.product-logo-chip img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.product-hero-copy h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 16px; }
.product-hero-copy > p { color: var(--muted); font-size: 1.12rem; max-width: 560px; margin-bottom: 26px; }
.product-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: transform .25s, border-color .25s; }
.feature-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.feature-card .fc-ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; color: #fff; background: var(--grad); margin-bottom: 16px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 9px; }
.feature-card p { color: var(--muted); font-size: .94rem; }
.product-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.product-meta .chip-tag { font-size: .82rem; font-weight: 600; color: var(--text); background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 999px; padding: 7px 14px; }
@media (max-width: 860px) {
  .product-hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .product-logo-chip { max-width: 300px; }
  .feature-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) { .feature-cards { grid-template-columns: 1fr; } }

/* About page — product logo showcase */
.product-logos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plogo-tile { height: 150px; display: flex; align-items: center; justify-content: center; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.plogo-tile img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.plogo-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
@media (max-width: 680px) { .product-logos { grid-template-columns: 1fr 1fr; } }

@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .product-grid { grid-template-columns: 1fr; } }
