/* Aspire Apps India — 2026 site design system (light theme) */

:root {
  --bg: #f6f8fd;
  --bg-soft: #ffffff;
  --surface: #ffffff;
  --panel: rgba(20, 30, 60, 0.032);
  --panel-strong: rgba(20, 30, 60, 0.06);
  --line: rgba(20, 30, 60, 0.10);
  --line-strong: rgba(20, 30, 60, 0.18);
  --text: #111a2e;
  --muted: #5a6580;
  --brand: #4a63e7;
  --brand-2: #8347e6;
  --accent: #0f9e8c;
  --warn: #e07c12;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 22px 50px -28px rgba(17, 26, 46, 0.42);
  --shadow-soft: 0 10px 30px -20px rgba(17, 26, 46, 0.32);
  --container: 1200px;
  --font: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 .6em; line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
p { margin: 0 0 1em; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

/* ---------- ambient background ---------- */
.aurora { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.aurora span { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .30; }
.aurora span:nth-child(1) { width: 640px; height: 640px; top: -240px; left: -160px; background: radial-gradient(circle, #7f97ff, transparent 65%); }
.aurora span:nth-child(2) { width: 540px; height: 540px; top: 320px; right: -200px; background: radial-gradient(circle, #b78bff, transparent 65%); }
.aurora span:nth-child(3) { width: 500px; height: 500px; bottom: -180px; left: 38%; background: radial-gradient(circle, #6fded0, transparent 68%); opacity: .24; }
.grid-lines {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(rgba(20,30,60,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(20,30,60,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 72%);
}

/* ---------- header ---------- */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, border-color .3s ease, box-shadow .3s ease;
  border-bottom: 1px solid transparent;
}
.site-head.is-stuck {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -24px rgba(17, 26, 46, .6);
  padding: 12px 0;
}
.head-inner { display: flex; align-items: center; gap: 28px; }

.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.03em; color: var(--text); }
.brand__mark {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  background: linear-gradient(140deg, var(--brand), var(--brand-2) 60%, var(--accent));
  display: grid; place-items: center; color: #fff; font-size: 19px; font-weight: 900;
  box-shadow: 0 10px 26px -12px rgba(74, 99, 231, .85);
}
.brand__name { font-size: 18px; line-height: 1.1; }
.brand__name small { display: block; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 15px; font-weight: 600; color: #45506a; position: relative; padding: 4px 0; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-2)); transition: width .25s ease;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }
.nav a.btn:hover::after { width: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff; box-shadow: 0 14px 30px -14px rgba(90, 85, 230, .85);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(90, 85, 230, .95); color: #fff; }
.btn--ghost { background: var(--surface); border-color: var(--line-strong); color: var(--text); box-shadow: var(--shadow-soft); }
.btn--ghost:hover { background: #fff; border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn--sm { padding: 10px 20px; font-size: 14px; }

.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line-strong); color: var(--text); cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- sections ---------- */
section { position: relative; padding: 104px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px;
  padding: 7px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: #46516c;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(15, 158, 140, .16); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); }
.section-head p { color: var(--muted); font-size: 17.5px; margin: 0; }
.grad { background: linear-gradient(100deg, var(--brand) 5%, var(--brand-2) 50%, var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- hero ---------- */
.hero { padding: 172px 0 92px; }
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5.6vw, 66px); letter-spacing: -0.035em; }
.hero__lead { font-size: 19px; color: var(--muted); max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 26px 40px; margin-top: 46px; padding-top: 32px; border-top: 1px solid var(--line); }
.hero__meta div strong { display: block; font-size: 27px; font-weight: 800; letter-spacing: -0.02em; }
.hero__meta div span { font-size: 13.5px; color: var(--muted); }

.phone-stack { position: relative; display: grid; place-items: center; min-height: 500px; }
.phone {
  position: relative; width: 268px; padding: 12px; border-radius: 40px;
  background: linear-gradient(160deg, #ffffff, #eef1fa);
  border: 1px solid var(--line-strong); box-shadow: var(--shadow);
}
.phone__screen {
  border-radius: 30px; overflow: hidden; background: linear-gradient(170deg, #fbfcff, #f1f4fc);
  border: 1px solid rgba(20,30,60,.07);
  padding: 22px 18px 26px; min-height: 452px; display: flex; flex-direction: column; gap: 16px;
}
.phone__notch { width: 78px; height: 5px; border-radius: 99px; background: rgba(20,30,60,.18); margin: 0 auto 6px; }
.phone__title { font-size: 15px; font-weight: 800; }
.phone__title span { display: block; font-size: 11.5px; font-weight: 600; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }
.phone__row { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 14px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.phone__row img { width: 38px; height: 38px; border-radius: 10px; }
.phone__row b { font-size: 12.5px; font-weight: 700; }
.phone__row small { display: block; font-size: 11px; color: var(--muted); }
.phone__bar { height: 8px; border-radius: 99px; background: rgba(20,30,60,.09); overflow: hidden; }
.phone__bar i { display: block; height: 100%; width: 68%; background: linear-gradient(90deg, var(--brand), var(--accent)); }

.float-card {
  position: absolute; padding: 13px 17px; border-radius: 16px; font-size: 13px; font-weight: 700;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 11px;
}
.float-card small { display: block; font-size: 11px; font-weight: 600; color: var(--muted); }
.float-card__dot { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; font-size: 15px; color: #fff; }
.float-card--a { top: 46px; left: -8px; animation: floaty 6s ease-in-out infinite; }
.float-card--b { bottom: 62px; right: -14px; animation: floaty 6s ease-in-out infinite 1.6s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- logos / trust strip ---------- */
.strip { padding: 30px 0; border-block: 1px solid var(--line); background: rgba(255, 255, 255, .72); }
.strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 42px; }
.strip__item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #47526c; }
.strip__item svg { width: 18px; height: 18px; flex: none; color: var(--accent); }

/* ---------- cards ---------- */
.cards { display: grid; gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  padding: 32px 28px; border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line); position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.card h3 { font-size: 19.5px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; margin: 0; }
.card__icon {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(140deg, rgba(74, 99, 231, .12), rgba(131, 71, 230, .10));
  border: 1px solid rgba(74, 99, 231, .18); color: var(--brand);
}
.card__icon svg { width: 24px; height: 24px; }
.card__tag { position: absolute; top: 22px; right: 24px; font-size: 12px; font-weight: 700; color: var(--muted); }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-soft); position: relative; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-size: 34px; font-weight: 900; letter-spacing: -0.04em; display: block; margin-bottom: 12px;
  background: linear-gradient(120deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { font-size: 17.5px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.checklist { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: #3d4761; }
.checklist li::before {
  content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center;
  font-size: 13px; font-weight: 800; color: #fff; background: linear-gradient(140deg, var(--accent), #29c3ad);
}

.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat {
  padding: 30px 26px; border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: var(--surface); box-shadow: var(--shadow-soft);
}
.stat b { display: block; font-size: 38px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; color: var(--brand); }
.stat span { font-size: 14px; color: var(--muted); }

/* ---------- portfolio ---------- */
.app-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.app {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  padding: 22px 14px; border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--surface); box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.app:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.app img { width: 62px; height: 62px; border-radius: 16px; box-shadow: 0 10px 20px -12px rgba(17, 26, 46, .55); }
.app b { font-size: 13.5px; font-weight: 700; line-height: 1.35; }
.app small { font-size: 11.5px; color: var(--muted); }

.featured {
  display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center;
  padding: 34px; border-radius: var(--radius-lg); margin-bottom: 34px;
  background: linear-gradient(120deg, rgba(74, 99, 231, .10), rgba(131, 71, 230, .07) 45%, rgba(15, 158, 140, .09));
  border: 1px solid rgba(74, 99, 231, .20);
}
.featured__badge { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #0a6f62; }
.featured h3 { font-size: 25px; margin: 6px 0 8px; }
.featured p { color: #454f68; margin: 0; max-width: 620px; font-size: 15.5px; }
.featured__art {
  width: 96px; height: 96px; border-radius: 26px; display: grid; place-items: center; font-size: 40px;
  background: linear-gradient(150deg, #ff9a3d, #ff5f6d); box-shadow: 0 18px 32px -16px rgba(255, 120, 80, .85);
}

/* ---------- contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.contact-card {
  padding: 34px 30px; border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: var(--surface); box-shadow: var(--shadow-soft);
}
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ci {
  width: 46px; height: 46px; flex: none; border-radius: 14px; display: grid; place-items: center;
  background: rgba(74, 99, 231, .10); border: 1px solid rgba(74, 99, 231, .18); color: var(--brand);
}
.contact-list .ci svg { width: 20px; height: 20px; }
.contact-list b { display: block; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 3px; }
.contact-list a, .contact-list p { font-size: 16px; color: var(--text); margin: 0; }
.contact-list a:hover { color: var(--brand); }

.cta-band {
  text-align: center; padding: 64px 40px; border-radius: 32px;
  background: linear-gradient(125deg, rgba(74, 99, 231, .12), rgba(131, 71, 230, .10) 50%, rgba(15, 158, 140, .10));
  border: 1px solid rgba(74, 99, 231, .20); position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); }
.cta-band p { color: #454f68; max-width: 620px; margin: 0 auto 28px; font-size: 17px; }
.cta-band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-foot { border-top: 1px solid var(--line); background: #eef1f9; padding: 62px 0 30px; }
.site-foot .brand { display: inline-flex; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-grid h4 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.foot-grid p, .foot-grid a { font-size: 14.5px; color: #4a5570; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.foot-grid a:hover { color: var(--brand); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); color: #4a5570; transition: .25s;
}
.socials a:hover { background: linear-gradient(120deg, var(--brand), var(--brand-2)); border-color: transparent; color: #fff; transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; }
.foot-bottom {
  margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: 13.5px; color: var(--muted);
}
.foot-bottom a { color: var(--muted); }
.foot-bottom a:hover { color: var(--brand); }

/* ---------- reveal (only when JS is active, so content never stays hidden) ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- legal page ---------- */
.legal { padding: 150px 0 90px; }
.legal__layout { display: grid; grid-template-columns: 250px 1fr; gap: 48px; align-items: start; }
.legal__toc {
  position: sticky; top: 108px; padding: 24px 22px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.legal__toc h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.legal__toc ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.legal__toc a { font-size: 14px; color: #4a5570; }
.legal__toc a:hover { color: var(--brand); }
.legal__body {
  padding: 44px 46px; border-radius: var(--radius-lg); border: 1px solid var(--line);
  background: var(--surface); box-shadow: var(--shadow-soft);
}
.legal__body h2 { font-size: 26px; margin-top: 46px; padding-top: 6px; }
.legal__body h2:first-of-type { margin-top: 12px; }
.legal__body h3 { font-size: 19px; margin-top: 34px; }
.legal__body h4 { font-size: 16.5px; margin-top: 26px; }
.legal__body p, .legal__body li { color: #3f4a63; font-size: 15.5px; }
.legal__body a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; word-break: break-word; }
.legal__body table { width: 100%; border-collapse: collapse; margin: 20px 0 26px; font-size: 15px; }
.legal__body th, .legal__body td { text-align: left; padding: 13px 16px; border: 1px solid var(--line); vertical-align: top; }
.legal__body th { background: #f1f4fb; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: #2b3552; }
.legal__body td { color: #3f4a63; }
.legal__meta { display: flex; flex-wrap: wrap; gap: 10px 20px; font-size: 13.5px; color: var(--muted); margin-bottom: 8px; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .app-grid { grid-template-columns: repeat(4, 1fr); }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  section { padding: 78px 0; }
  .hero { padding: 140px 0 70px; }
  .hero__grid, .split, .contact-wrap, .legal__layout { grid-template-columns: 1fr; gap: 44px; }
  .cards--3 { grid-template-columns: 1fr; }
  .phone-stack { min-height: auto; }
  .legal__toc { position: static; }
  .featured { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .featured__art { margin-inline: auto; }

  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    background: #ffffff; border-left: 1px solid var(--line); box-shadow: -20px 0 50px -30px rgba(17,26,46,.6);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 26px; padding: 40px; transform: translateX(100%); transition: transform .35s cubic-bezier(.22,1,.36,1);
  }
  body.nav-open .nav { transform: none; }
  .nav a { font-size: 20px; }
  .nav .btn { width: 100%; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .legal__body { padding: 30px 22px; }
  .legal__body table, .legal__body thead, .legal__body tbody, .legal__body tr, .legal__body td { display: block; width: 100%; }
  .legal__body thead { display: none; }
  .legal__body tr { margin-bottom: 14px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
  .legal__body td { border: 0; border-bottom: 1px solid var(--line); }
  .legal__body td:last-child { border-bottom: 0; }
  .legal__body td:first-child { font-weight: 700; color: var(--text); background: #f1f4fb; }
  .hero__meta { gap: 20px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
