/* Aksharth Solutions — main stylesheet */

:root {
  --navy: #071b49;
  --blue: #0a6fd7;
  --cyan: #14a8ff;
  --orange: #ff8a00;
  --ink: #101828;
  --muted: #667085;
  --line: #e6ecf6;
  --soft: #f5f8ff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 27, 73, 0.13);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(20, 168, 255, 0.17), transparent 34rem),
    radial-gradient(circle at 95% 8%, rgba(255, 138, 0, 0.14), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7faff 45%, #ffffff 100%);
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.section-shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

/* ---- Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 236, 246, 0.85);
}
.navbar {
  width: min(1160px, calc(100% - 40px));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 5px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 27, 73, 0.08);
}
.brand span { display: grid; line-height: 1; }
.brand strong { color: var(--navy); font-size: 1.28rem; letter-spacing: -0.045em; }
.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-menu { display: flex; align-items: center; gap: 26px; color: #334155; font-size: 0.95rem; font-weight: 650; }
.nav-menu a:not(.nav-cta) { position: relative; }
.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transition: width 0.2s ease;
}
.nav-menu a:hover::after { width: 100%; }
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta { padding: 12px 18px; color: #fff; background: linear-gradient(135deg, var(--navy), var(--blue)); box-shadow: 0 12px 28px rgba(10, 111, 215, 0.22); }
.nav-cta:hover,
.button:hover { transform: translateY(-2px); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 11px; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--navy); border-radius: 999px; transition: transform 0.2s ease, opacity 0.2s ease; }

/* ---- Hero ---- */
.hero { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr); gap: 52px; align-items: center; padding: 86px 0 44px; }
.eyebrow,
.label { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; }
.eyebrow span { width: 11px; height: 11px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--cyan)); box-shadow: 0 0 0 7px rgba(20, 168, 255, 0.13); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 22px; color: var(--navy); font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.12; letter-spacing: -0.042em; }
.hero-lead { max-width: 680px; color: #475467; font-size: clamp(1.08rem, 2vw, 1.28rem); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.button { min-height: 54px; padding: 0 22px; border: 0; cursor: pointer; font-size: 0.96rem; }
.button.primary { color: #fff; background: linear-gradient(135deg, var(--navy), var(--blue) 62%, var(--cyan)); box-shadow: 0 18px 36px rgba(10, 111, 215, 0.22); }
.button.secondary { color: var(--navy); background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 26px rgba(7, 27, 73, 0.08); }
.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 675px; }
.value-grid div { padding: 18px; border: 1px solid rgba(230, 236, 246, 0.92); border-radius: 20px; background: rgba(255, 255, 255, 0.78); box-shadow: 0 12px 34px rgba(7, 27, 73, 0.06); }
.value-grid strong,
.value-grid span { display: block; }
.value-grid strong { color: var(--navy); font-size: 1.04rem; }
.value-grid span { margin-top: 4px; color: var(--muted); font-size: 0.88rem; }
.hero-panel { position: relative; }
.selected-logo { width: min(330px, 88%); margin: 0 auto -22px; padding: 18px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 255, 255, 0.92); box-shadow: 0 16px 40px rgba(7, 27, 73, 0.08); position: relative; z-index: 3; }
.product-card { position: relative; padding: 58px 26px 26px; border: 1px solid rgba(255, 255, 255, 0.72); border-radius: 34px; background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 255, 0.80)); box-shadow: var(--shadow); overflow: hidden; }
.product-card::before { content: ""; position: absolute; right: -80px; top: -90px; width: 230px; height: 230px; border-radius: 50%; background: rgba(255, 138, 0, 0.17); }
.card-status { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; color: #344054; font-size: 0.88rem; font-weight: 800; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.card-status span { width: 9px; height: 9px; border-radius: 50%; background: #12b76a; box-shadow: 0 0 0 6px rgba(18, 183, 106, 0.12); }
.orbit-graphic { min-height: 305px; position: relative; display: grid; place-items: center; }
.core { position: relative; z-index: 5; width: 128px; height: 128px; display: grid; place-items: center; border-radius: 32px; color: #fff; font-size: 4rem; font-weight: 950; letter-spacing: -0.08em; background: linear-gradient(145deg, var(--navy), var(--blue)); box-shadow: inset -15px -20px 36px rgba(0, 0, 0, 0.2), 0 26px 46px rgba(7, 27, 73, 0.28); }
.core::after { content: ""; position: absolute; right: -18px; top: -15px; width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--orange), #ffbc4a); box-shadow: 0 14px 26px rgba(255, 138, 0, 0.34); }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(10, 111, 215, 0.25); }
.orbit-a { width: 285px; height: 170px; transform: rotate(-18deg); }
.orbit-b { width: 330px; height: 220px; transform: rotate(25deg); border-color: rgba(255, 138, 0, 0.26); }
.node { position: absolute; z-index: 6; padding: 10px 14px; border-radius: 999px; color: var(--navy); background: #fff; border: 1px solid var(--line); box-shadow: 0 16px 30px rgba(7, 27, 73, 0.1); font-size: 0.84rem; }
.node-1 { left: 28px; top: 70px; }
.node-2 { right: 18px; bottom: 80px; }
.node-3 { right: 38px; top: 62px; color: var(--orange); }
.node-4 { left: 20px; bottom: 72px; color: var(--blue); }
.mini-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.mini-metrics div { padding: 16px; border-radius: 18px; background: rgba(255, 255, 255, 0.86); border: 1px solid rgba(230, 236, 246, 0.86); }
.mini-metrics strong,
.mini-metrics span { display: block; }
.mini-metrics strong { color: var(--blue); font-size: 1.2rem; }
.mini-metrics span { margin-top: 5px; color: var(--muted); font-size: 0.86rem; }

/* ---- Capability strip ---- */
.capability-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; padding: 26px; margin-top: 10px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 255, 255, 0.78); box-shadow: 0 18px 40px rgba(7, 27, 73, 0.07); }
.capability-strip span { padding: 10px 14px; color: #344054; font-size: 0.88rem; font-weight: 850; border: 1px solid #e4eaf5; border-radius: 999px; background: #fff; }

/* ---- Section common ---- */
.services, .about, .approach, .ai-section, .clients, .contact { padding: 96px 0 0; }
.section-heading { max-width: 790px; margin-bottom: 36px; }
.section-heading h2,
.about-card h2,
.ai-card h2,
.contact-card h2 { margin: 14px 0; color: var(--navy); font-size: clamp(2.1rem, 4.5vw, 3.45rem); line-height: 1.03; letter-spacing: -0.052em; }
.section-heading p,
.about-card p,
.ai-card p,
.contact-card p { color: #5b6678; font-size: 1.05rem; line-height: 1.74; }

/* ---- Services ---- */
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card { min-height: 285px; padding: 30px; border: 1px solid rgba(230, 236, 246, 0.95); border-radius: var(--radius); background: rgba(255, 255, 255, 0.88); box-shadow: 0 16px 42px rgba(7, 27, 73, 0.07); overflow: hidden; position: relative; }
.service-card::after { content: ""; position: absolute; right: -40px; top: -42px; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(20, 168, 255, 0.18), transparent 70%); }
.service-card:nth-child(even)::after { background: radial-gradient(circle, rgba(255, 138, 0, 0.18), transparent 70%); }
.service-icon { width: 54px; height: 54px; margin-bottom: 26px; display: grid; place-items: center; border-radius: 18px; color: #fff; font-weight: 950; background: linear-gradient(145deg, var(--navy), var(--blue)); box-shadow: 0 14px 26px rgba(10, 111, 215, 0.22); }
.service-card:nth-child(even) .service-icon { background: linear-gradient(145deg, var(--orange), #ffbc4a); box-shadow: 0 14px 26px rgba(255, 138, 0, 0.20); }
.service-card h3 { margin-bottom: 12px; color: var(--navy); font-size: 1.28rem; letter-spacing: -0.025em; }
.service-card p { margin-bottom: 0; color: var(--muted); line-height: 1.68; }

/* ---- About / AI / Contact cards ---- */
.about-card,
.ai-card,
.contact-card { display: grid; grid-template-columns: 0.82fr 1fr; gap: 48px; align-items: center; padding: 46px; border-radius: 34px; border: 1px solid rgba(230, 236, 246, 0.92); background: radial-gradient(circle at 92% 0%, rgba(20, 168, 255, 0.15), transparent 32%), linear-gradient(135deg, #fff, #f5f8ff); box-shadow: var(--shadow); }
.about-card p { margin-bottom: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 18px; }
.stats-grid div { padding: 28px; border-radius: 24px; border: 1px solid var(--line); background: #fff; box-shadow: 0 16px 36px rgba(7, 27, 73, 0.06); }
.stats-grid strong,
.stats-grid span { display: block; }
.stats-grid strong { color: var(--blue); font-size: 2.05rem; letter-spacing: -0.04em; }
.stats-grid span { margin-top: 8px; color: var(--muted); font-weight: 650; }

/* ---- Approach / Timeline ---- */
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.timeline-item { padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; box-shadow: 0 16px 38px rgba(7, 27, 73, 0.07); }
.timeline-item span { display: inline-flex; margin-bottom: 22px; padding: 8px 12px; color: var(--blue); background: rgba(10, 111, 215, 0.08); border-radius: 999px; font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.09em; }
.timeline-item:nth-child(even) span { color: #b85f00; background: rgba(255, 138, 0, 0.12); }
.timeline-item h3 { color: var(--navy); font-size: 1.2rem; }
.timeline-item p { margin-bottom: 0; color: var(--muted); line-height: 1.62; }

/* ---- AI section ---- */
.ai-card { grid-template-columns: 0.96fr 1fr; background: radial-gradient(circle at left top, rgba(255, 138, 0, 0.18), transparent 32%), linear-gradient(135deg, #071b49, #0d2f73 55%, #0a6fd7); color: #fff; }
.ai-card .label,
.ai-card h2,
.ai-card p { color: #fff; }
.ai-card p { opacity: 0.86; }
.ai-tags { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.ai-tags span { padding: 18px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 20px; background: rgba(255, 255, 255, 0.1); color: #fff; font-weight: 850; backdrop-filter: blur(12px); }

/* ---- Clients ---- */
.client-card { display: grid; grid-template-columns: 104px 1fr; align-items: center; gap: 24px; max-width: 760px; padding: 28px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.client-mark { width: 104px; height: 104px; display: grid; place-items: center; border-radius: 24px; color: #fff; font-size: 2rem; font-weight: 950; letter-spacing: -0.08em; background: linear-gradient(145deg, var(--navy), var(--blue)); box-shadow: inset -14px -16px 30px rgba(0, 0, 0, 0.16), 0 18px 36px rgba(7, 27, 73, 0.18); }
.client-tag { display: inline-flex; margin-bottom: 10px; padding: 7px 11px; color: #b85f00; background: rgba(255, 138, 0, 0.12); border-radius: 999px; font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.client-card h3 { margin-bottom: 8px; color: var(--navy); font-size: clamp(1.45rem, 3vw, 2rem); letter-spacing: -0.04em; }
.client-card a { color: var(--blue); font-weight: 850; }

/* ---- Contact ---- */
.contact { padding-bottom: 92px; }
.contact-card { grid-template-columns: 0.9fr 1fr; }
.contact-form { display: grid; gap: 14px; padding: 24px; border-radius: 26px; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 40px rgba(7, 27, 73, 0.08); }
.contact-form label { display: grid; gap: 8px; color: var(--navy); font-size: 0.92rem; font-weight: 850; }
.contact-form input,
.contact-form textarea { width: 100%; border: 1px solid #d7deea; border-radius: 16px; padding: 14px 15px; color: var(--ink); font: inherit; background: #fbfcff; outline: none; transition: border 0.2s ease, box-shadow 0.2s ease; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(10, 111, 215, 0.55); box-shadow: 0 0 0 4px rgba(10, 111, 215, 0.1); }
.contact-form textarea { resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: 0.82rem; }

/* ---- Footer ---- */
.site-footer { color: rgba(255, 255, 255, 0.78); background: #051638; padding: 48px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.7fr 0.7fr; gap: 48px; }
.footer-grid img { width: 210px; padding: 12px; border-radius: 18px; background: rgba(255, 255, 255, 0.94); }
.footer-grid p { max-width: 470px; margin: 18px 0 0; line-height: 1.7; }
.footer-grid h4 { margin: 0 0 14px; color: #fff; }
.footer-grid a { display: block; margin: 10px 0; color: rgba(255, 255, 255, 0.75); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.9rem; }
.footer-bottom a { color: #fff; font-weight: 850; }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.72s ease, transform 0.72s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1020px) {
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-menu { position: fixed; top: 86px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 12px; }
  .nav-cta { margin-top: 8px; }
  .hero, .about-card, .ai-card, .contact-card { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-panel { max-width: 570px; margin: 0 auto; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .section-shell, .navbar { width: min(100% - 28px, 1160px); }
  .navbar { height: 76px; }
  .brand { min-width: auto; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 1.08rem; }
  .brand small { font-size: 0.62rem; }
  .nav-menu { top: 76px; left: 14px; right: 14px; }
  .hero { padding: 42px 0 34px; }
  h1 { font-size: clamp(1.9rem, 10vw, 2.8rem); }
  .hero-actions, .footer-bottom { flex-direction: column; }
  .button { width: 100%; }
  .value-grid, .service-grid, .timeline, .stats-grid, .mini-metrics, .ai-tags, .footer-grid, .client-card { grid-template-columns: 1fr; }
  .orbit-graphic { min-height: 285px; }
  .orbit-a { width: 232px; height: 150px; }
  .orbit-b { width: 270px; height: 190px; }
  .services, .about, .approach, .ai-section, .clients, .contact { padding-top: 72px; }
  .about-card, .ai-card, .contact-card { padding: 28px; border-radius: 26px; }
  .service-card { min-height: auto; }
  .privacy-policy-grid { grid-template-columns: 1fr; }
}

/* ---- Accessibility ---- */

/* Skip navigation link — hidden until focused */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 22px;
  border-radius: 0 0 14px 14px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 0; outline: 3px solid var(--cyan); outline-offset: 3px; }

/* Visible keyboard focus ring on all interactive elements */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}
/* Suppress outline for mouse/touch — only show for keyboard */
:focus:not(:focus-visible) { outline: none; }

/* Nav, button and link focus overrides for contrast */
.nav-cta:focus-visible,
.button:focus-visible { outline-color: var(--cyan); outline-offset: 4px; }
.nav-toggle:focus-visible { outline-color: var(--navy); }
.modal-close:focus-visible,
.modal-btn:focus-visible { outline-offset: 4px; }

/* Screen-reader-only utility */
.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;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .modal-card { animation: none !important; }
}

/* ---- Inquiry modal ---- */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7, 27, 73, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; }

.modal-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 48px 40px 40px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 40px 90px rgba(7, 27, 73, 0.22);
  text-align: center;
  animation: modal-in 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.92) translateY(18px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.modal-close:hover { background: var(--soft); color: var(--navy); }
.modal-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: 0 auto 24px;
  padding: 12px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(7, 27, 73, 0.12);
}
.modal-card h2 { margin: 0 0 10px; color: var(--navy); font-size: 1.6rem; letter-spacing: -0.035em; }
.modal-card p { margin: 0 0 28px; color: #5b6678; line-height: 1.7; font-size: 0.97rem; }
.modal-btn {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font: 800 0.96rem/1 inherit;
  background: linear-gradient(135deg, var(--navy), var(--blue) 62%, var(--cyan));
  box-shadow: 0 14px 30px rgba(10,111,215,0.22);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.modal-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(10,111,215,0.28); }

@media (max-width: 700px) {
  .modal-card { padding: 40px 24px 32px; }
}

/* ---- Privacy page ---- */
.privacy-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.privacy-hero .label { margin-bottom: 18px; }
.privacy-hero h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.035em; margin-bottom: 16px; }
.privacy-hero p { color: var(--muted); font-size: 1rem; max-width: 640px; }
.privacy-meta { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; padding: 8px 14px; border-radius: 999px; background: rgba(10, 111, 215, 0.07); color: var(--blue); font-size: 0.82rem; font-weight: 850; }

.privacy-policy-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 96px;
}
.privacy-toc {
  position: sticky;
  top: 106px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 12px 32px rgba(7,27,73,0.06);
}
.privacy-toc h4 { margin: 0 0 14px; color: var(--navy); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.08em; }
.privacy-toc a { display: block; padding: 7px 0; color: var(--muted); font-size: 0.88rem; border-bottom: 1px solid var(--line); transition: color 0.15s ease; }
.privacy-toc a:last-child { border-bottom: none; }
.privacy-toc a:hover { color: var(--blue); }

.privacy-sections { display: grid; gap: 36px; }
.privacy-section { padding: 36px; border: 1px solid rgba(230,236,246,0.95); border-radius: var(--radius); background: rgba(255,255,255,0.9); box-shadow: 0 12px 36px rgba(7,27,73,0.06); scroll-margin-top: 106px; }
.privacy-section h2 { margin-bottom: 16px; color: var(--navy); font-size: 1.32rem; letter-spacing: -0.025em; display: flex; align-items: center; gap: 12px; }
.privacy-section h2 span { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 10px; background: linear-gradient(145deg, var(--navy), var(--blue)); color: #fff; font-size: 0.78rem; font-weight: 900; flex-shrink: 0; }
.privacy-section p, .privacy-section li { color: #5b6678; line-height: 1.78; margin-bottom: 12px; font-size: 0.97rem; }
.privacy-section ul, .privacy-section ol { padding-left: 20px; margin: 12px 0; }
.privacy-section li { margin-bottom: 8px; }
.privacy-section p:last-child, .privacy-section li:last-child { margin-bottom: 0; }
.privacy-section a { color: var(--blue); font-weight: 650; }
.privacy-section a:hover { text-decoration: underline; }
.privacy-highlight { padding: 18px 20px; margin: 18px 0 0; border-left: 3px solid var(--blue); border-radius: 0 14px 14px 0; background: rgba(10,111,215,0.05); color: #344054 !important; font-size: 0.93rem !important; }
