@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ══════════════════════════════════════════════════════════════
   Indra Softwares — light theme, v2
   Design rules this file follows:
     1. ONE accent family (blue → indigo → violet). No warm/cool clash.
     2. Gradients are rare — exactly one, on the CTA band.
     3. Body copy never below ~15.5px, never lighter than #3f4c60.
   ══════════════════════════════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  /* neutrals — all cool-toned so nothing fights the accent */
  --paper:      #fbfcfe;
  --surface:    #f1f4f9;
  --card:       #ffffff;

  /* ink — darker than v1 so small text stays readable */
  --ink:        #0f1729;
  --ink-soft:   #3f4c60;
  --ink-faint:  #667085;

  /* one analogous accent family */
  --accent:     #3538cd;
  --accent-ink: #262aa6;
  --violet:     #7839ee;
  --sky:        #0b79c7;

  --line:       #e2e8f0;
  --line-soft:  #eef2f7;

  --shadow-sm:  0 1px 2px rgba(15,23,41,0.05), 0 1px 3px rgba(15,23,41,0.04);
  --shadow-md:  0 2px 4px rgba(15,23,41,0.04), 0 8px 20px rgba(15,23,41,0.07);
  --shadow-lg:  0 4px 10px rgba(15,23,41,0.05), 0 20px 44px rgba(15,23,41,0.10);

  /* legacy aliases */
  --bg-deep: var(--paper); --bg-surface: var(--surface); --bg-card: var(--card);
  --text-bright: var(--ink); --text-mid: var(--ink-soft); --text-dim: var(--ink-faint);
  --border: var(--line); --accent2: var(--violet);
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }
::selection { background: rgba(53,56,205,0.15); color: var(--ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 6%;
  background: rgba(251,252,254,0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.38rem;
  letter-spacing: -0.5px; color: var(--ink);
  text-decoration: none; flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  position: relative; display: block;
  color: var(--ink-soft); text-decoration: none;
  font-size: 0.925rem; font-weight: 500;
  padding: 9px 15px; border-radius: 9px;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: var(--accent-ink); background: rgba(53,56,205,0.06); }
.nav-links a.active { color: var(--accent-ink); font-weight: 600; background: rgba(53,56,205,0.08); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta {
  background: var(--accent); color: #fff;
  padding: 10px 22px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 1px 2px rgba(15,23,41,0.10);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.nav-cta:hover {
  background: var(--accent-ink); transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(53,56,205,0.30);
}
.nav-toggle {
  display: none; width: 40px; height: 40px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--ink); flex-shrink: 0;
}
.nav-toggle svg { width: 19px; height: 19px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-menu { display: none; }
.nav-toggle.open .icon-close { display: block; }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 84vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 82px 6% 70px;
  position: relative; overflow: hidden;
}
/* single-family wash: blue → indigo → violet only */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 56% 46% at 20% 4%,  rgba(53,56,205,0.10)  0%, transparent 60%),
    radial-gradient(ellipse 50% 44% at 82% 10%, rgba(120,57,238,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 58% 46% at 58% 96%, rgba(11,121,199,0.08) 0%, transparent 62%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(15,23,41,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,41,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 76% 64% at 50% 32%, #000 0%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 76% 64% at 50% 32%, #000 0%, transparent 76%);
}
.hero-content { position: relative; z-index: 1; max-width: 940px; margin: 0 auto; }

.hero-badge, .page-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.79rem; font-weight: 700;
  letter-spacing: 1.1px; text-transform: uppercase;
  color: var(--accent-ink); margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.hero-badge::before, .page-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(53,56,205,0.14);
  animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.45;transform:scale(0.7)} }

.hero h1, .page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5.6vw, 4.05rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -1.6px;
  color: var(--ink);
  margin-bottom: 22px;
}
/* solid accent, not a gradient — reads sharper and looks less dated */
.hl { color: var(--accent); }
@media (min-width: 700px) { .hero h1 .hl, .page-hero h1 .hl { white-space: nowrap; } }

.hero-sub, .page-hero-sub {
  font-size: 1.12rem; color: var(--ink-soft);
  font-weight: 400; max-width: 630px;
  margin: 0 auto 38px; line-height: 1.72;
}
.hero-actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent); color: #fff;
  padding: 14px 30px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 1px 2px rgba(15,23,41,0.10), 0 6px 18px rgba(53,56,205,0.22);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.btn-primary:hover {
  background: var(--accent-ink); transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(15,23,41,0.10), 0 12px 30px rgba(53,56,205,0.30);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink);
  padding: 13px 28px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.btn-outline:hover {
  border-color: rgba(53,56,205,0.40); transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── HERO STATS ────────────────────────────────────────── */
.hero-stats { display: flex; justify-content: center; gap: 12px; margin-top: 56px; flex-wrap: wrap; }
.stat-item {
  text-align: center; min-width: 142px;
  padding: 20px 22px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}
.stat-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.95rem; font-weight: 800; display: block;
  color: var(--accent);   /* solid, not gradient */
  line-height: 1.1;
}
.stat-label {
  font-size: 0.8rem; color: var(--ink-soft);
  letter-spacing: 0.5px; text-transform: uppercase;
  display: block; margin-top: 7px; font-weight: 600;
}

/* ── PAGE HERO ─────────────────────────────────────────── */
.page-hero { padding: 74px 6% 62px; text-align: center; position: relative; overflow: hidden; }
.page-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-tag {
  display: inline-block;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.9px; text-transform: uppercase;
  color: var(--violet);
  background: rgba(120,57,238,0.08);
  border: 1px solid rgba(120,57,238,0.22);
  border-radius: 50px; padding: 5px 16px; margin-left: 10px;
  vertical-align: middle;
}

/* ── SECTIONS ──────────────────────────────────────────── */
section { padding: 92px 6%; }
.section-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 800; line-height: 1.13;
  letter-spacing: -0.9px;
  color: var(--ink); margin-bottom: 16px;
}
.section-sub {
  font-size: 1.06rem; color: var(--ink-soft);
  max-width: 600px; line-height: 1.72;
}
.section-head { text-align: center; margin-bottom: 52px; }
.section-head .section-sub { margin: 0 auto; }

.on-surface {
  background: var(--surface);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
section:has(> .section-head:only-child) { padding-block: 66px; }
section:has(> .section-head:only-child) .section-head { margin-bottom: 0; }
section:has(> .promise-box:only-child)  { padding-block: 58px; }

/* ── CARDS ─────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(264px, 1fr));
  gap: 20px; max-width: 1140px; margin: 0 auto;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(53,56,205,0.28);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 46px; height: 46px;
  background: rgba(53,56,205,0.08);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 23px; height: 23px; }
/* CSS overrides the SVG stroke="" attributes — icons recolour without touching HTML */
.card-icon svg { stroke: var(--accent); }
.card-icon.v2 { background: rgba(120,57,238,0.08); }
.card-icon.v2 svg { stroke: var(--violet); }
.card-icon.v3 { background: rgba(11,121,199,0.09); }
.card-icon.v3 svg { stroke: var(--sky); }

.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.16rem; font-weight: 700;
  color: var(--ink); margin-bottom: 9px;
  letter-spacing: -0.2px;
}
/* 15.5px / darker ink — the main readability fix */
.card-desc { font-size: 0.97rem; color: var(--ink-soft); line-height: 1.68; }
.card-tag {
  display: inline-block;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 4px 11px; border-radius: 6px;
  background: rgba(53,56,205,0.08);
  color: var(--accent-ink);
  margin-bottom: 15px;
}
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.94rem; font-weight: 600;
  color: var(--accent); text-decoration: none;
  margin-top: 18px;
}
.card-link:hover { color: var(--accent-ink); }
.card-link svg { width: 15px; height: 15px; transition: transform 0.2s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ── PROMISE BOX ───────────────────────────────────────── */
.promise-box {
  max-width: 790px; margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 14px;
  padding: 26px 30px;
  display: flex; align-items: flex-start; gap: 17px;
  text-align: left;
  box-shadow: var(--shadow-md);
}
.promise-box svg { width: 25px; height: 25px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.promise-box p { font-size: 1rem; color: var(--ink-soft); line-height: 1.72; }
.promise-box strong { color: var(--ink); font-weight: 700; }

/* ── CTA — the single gradient in the whole site ───────── */
.cta-section {
  text-align: center; padding: 94px 6%;
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #262aa6 0%, #3538cd 48%, #6d31e0 100%);
  color: #fff;
}
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 50% 62% at 16% 10%, rgba(255,255,255,0.13) 0%, transparent 62%);
}
.cta-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta-section .section-label { color: rgba(255,255,255,0.85); }
.cta-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 800; letter-spacing: -0.9px;
  color: #fff; margin-bottom: 16px; line-height: 1.13;
}
.cta-inner p { font-size: 1.06rem; color: rgba(255,255,255,0.90); margin-bottom: 32px; line-height: 1.72; }
.cta-section .btn-primary {
  background: #fff; color: var(--accent-ink);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.cta-section .btn-primary:hover { background: #f4f5ff; color: var(--accent-ink); transform: translateY(-2px); }
.cta-email {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: #fff; text-decoration: none; font-weight: 600;
  padding: 11px 22px; border: 1px solid rgba(255,255,255,0.42);
  border-radius: 10px; margin-top: 20px; transition: background 0.2s;
}
.cta-email:hover { background: rgba(255,255,255,0.14); }

/* ── FOOTER ────────────────────────────────────────────── */
footer.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 32px 6%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.08rem;
  color: var(--ink); text-decoration: none;
}
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 0.9rem; color: var(--ink-faint); }
.footer-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 0.9rem; color: var(--ink-soft); text-decoration: none; transition: color 0.18s; }
.footer-links a:hover { color: var(--accent); }

/* ── CONTACT PAGE ──────────────────────────────────────── */
.contact-main {
  min-height: 62vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 86px 6%;
  position: relative; overflow: hidden;
}
.contact-card {
  position: relative; z-index: 1; max-width: 640px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 54px);
  box-shadow: var(--shadow-lg);
}
.contact-card .big-email {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1rem, 2.3vw, 1.3rem);
  font-weight: 700; color: var(--accent-ink);
  text-decoration: none;
  background: rgba(53,56,205,0.06);
  border: 1px solid rgba(53,56,205,0.22);
  border-radius: 12px; padding: 18px 26px; margin: 26px 0 22px;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
  overflow-wrap: anywhere;
}
.contact-card .big-email:hover {
  border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.contact-card .big-email svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.contact-note { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.68; max-width: 480px; margin: 0 auto; }

/* ── PRIVACY POLICY ────────────────────────────────────── */
main.policy-main { width: min(920px, 88vw); margin: 0 auto; padding: 56px 0 88px; position: relative; }
main.policy-main::before {
  content: ''; position: absolute; z-index: 0;
  top: -30px; left: 50%; transform: translateX(-50%);
  width: 100vw; height: 520px; pointer-events: none;
  background:
    radial-gradient(ellipse 44% 58% at 24% 6%, rgba(53,56,205,0.09) 0%, transparent 62%),
    radial-gradient(ellipse 42% 54% at 78% 12%, rgba(120,57,238,0.08) 0%, transparent 62%);
}
.policy-card {
  position: relative; z-index: 1;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-lg);
}
.policy-card h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.1rem, 5.4vw, 3.1rem);
  line-height: 1.13; letter-spacing: -1px;
  color: var(--ink); margin-bottom: 12px;
}
.policy-card .updated { color: var(--ink-faint); font-size: 0.95rem; margin-bottom: 28px; }
.policy-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.34rem; margin: 36px 0 12px; color: var(--ink);
  padding-left: 14px; border-left: 3px solid var(--accent);
}
.policy-card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; margin: 26px 0 10px; color: var(--accent-ink); }
.policy-card p, .policy-card li { color: var(--ink-soft); font-size: 1.01rem; line-height: 1.74; }
.policy-card ul { padding-left: 22px; margin-top: 10px; list-style: disc; }
.policy-card li { margin: 8px 0; }
.policy-card li::marker { color: var(--accent); }
.policy-card a { color: var(--accent); font-weight: 600; }
.policy-highlight {
  color: var(--ink);
  background: rgba(53,56,205,0.06);
  border: 1px solid rgba(53,56,205,0.20);
  border-radius: 12px; padding: 20px 22px; margin: 24px 0;
  font-size: 1.01rem; line-height: 1.7;
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden;
    transition: max-height 0.26s ease;
  }
  .nav-links.open { max-height: 360px; }
  .nav-links a { padding: 15px 6%; width: 100%; border-radius: 0; border-top: 1px solid var(--line-soft); }
  .nav-toggle { display: flex; }
  .nav-right .nav-cta { display: none; }
}
@media (max-width: 720px) {
  section { padding: 70px 6%; }
  .hero-stats { gap: 10px; }
  .stat-item { min-width: 128px; padding: 16px 14px; }
  .stat-num { font-size: 1.65rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { justify-content: center; }
  .promise-box { flex-direction: column; gap: 12px; }
  footer.site-footer { flex-direction: column; align-items: flex-start; }
}

/* ── MOTION ────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}
