/* ==========================================================================
   Aarohii corporate theme
   Palette from the logo: navy, emerald teal, metallic gold. Hero background
   is left as a special case and is not restyled here.
   ========================================================================== */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-latin-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/inter-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-latin-700-normal.woff2") format("woff2");
}

:root {
  --ink: #0c1f33;
  --ink-soft: #3a5166;
  --muted: #5c7184;
  --line: #d3e4df;
  --line-strong: #b5cdc6;
  --paper: #eef6f3;
  --white: #ffffff;
  --navy: #0c2238;
  --navy-mid: #16344f;
  --accent: #0e9a8c;
  --accent-hover: #14b8a6;
  --accent-soft: #e5f7f3;
  --gold: #c4a227;
  --gold-hover: #d4b43c;
  --gold-soft: #f7f1d6;
  --header-bg: #f7f5f1;
  --header-ink: #0c1f33;
  --header-muted: #3a5166;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(12, 34, 56, 0.06), 0 8px 24px rgba(12, 34, 56, 0.08);
  --font: Inter, system-ui, sans-serif;
  --font-display: Inter, system-ui, sans-serif;
  --header-h: 72px;
  --wrap: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.site-aarohii {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-hover);
}

h1, h2, h3, h4,
.section-title,
.brand__name {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.018em;
  line-height: 1.22;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.brand__name {
  margin: 0;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

.wrap {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.section--paper {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-kicker--entity {
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--muted);
}

.section-kicker--entity span {
  color: var(--ink);
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  max-width: 22ch;
  margin-bottom: 0.75rem;
}

.section-lead {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
}

.section-head {
  margin-bottom: 2.5rem;
}

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  padding-top: env(safe-area-inset-top, 0px);
  background: var(--header-bg);
  border-bottom: 1px solid rgba(12, 34, 56, 0.10);
}

.site-header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--header-ink);
}

.brand img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border-radius: 8px;
  filter: drop-shadow(0 1px 2px rgba(12, 34, 56, 0.12));
  flex-shrink: 0;
}

.brand__name {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.025em;
  color: var(--header-ink);
  line-height: 1.2;
}

.brand__name span {
  font-weight: 600;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: nowrap;
}

.nav a {
  text-decoration: none;
  color: var(--header-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  padding: 12px 11px;
  flex-shrink: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  height: 1.5px;
  background: var(--header-ink);
  border-radius: 2px;
  transition: transform 0.2s ease, top 0.2s ease, background 0.2s ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.site-header.is-open .nav-toggle span,
.subpage-header.is-open .nav-toggle span {
  background: transparent !important;
}

.site-header.is-open .nav-toggle span::before,
.subpage-header.is-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle span::after,
.subpage-header.is-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                    */
/* -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.65rem 1.2rem;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn--primary {
  background: var(--navy);
  color: #fff !important;
}

.btn--primary:hover {
  background: var(--navy-mid);
  color: #fff !important;
}

.site-header .btn--primary {
  background: var(--gold);
  color: #0c1f33 !important;
}

.site-header .btn--primary:hover {
  background: var(--gold-hover);
  color: #0c1f33 !important;
}

.btn--ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--line-strong);
}

.btn--ghost:hover {
  border-color: var(--ink);
  color: var(--ink) !important;
}

.btn--accent {
  background: var(--accent);
  color: #fff !important;
}

.btn--accent:hover {
  background: var(--accent-hover);
  color: #fff !important;
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.hero {
  padding: 5rem 0 5.5rem;
  color: #e2e8f0;
  background:
    radial-gradient(900px 500px at 88% 8%, rgba(20, 184, 166, 0.18), transparent 55%),
    radial-gradient(700px 420px at 8% 90%, rgba(196, 162, 39, 0.12), transparent 50%),
    linear-gradient(165deg, #06101c 0%, #0f2744 52%, #0b3d3a 100%);
  border-bottom: 0;
}

.hero h1 {
  color: #fff;
}

.hero .section-kicker {
  color: #5eead4;
}

.hero__lead,
.hero .hero__lead {
  color: rgba(226, 232, 240, 0.88);
}

.hero-bullets {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  max-width: 36rem;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.45rem;
  color: rgba(226, 232, 240, 0.86);
  font-size: 0.98rem;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5eead4;
}

.hero .btn--ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28);
}

.hero .btn--primary {
  background: #fff;
  color: var(--navy) !important;
}

.hero .btn--primary:hover {
  background: #f1f5f9;
  color: var(--navy) !important;
}

.hero .btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.15rem, 4.4vw, 3.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 22ch;
  margin-bottom: 1.15rem;
}

.hero__lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__meta strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__meta span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.86rem;
  color: rgba(226, 232, 240, 0.9);
  line-height: 1.4;
}

.hero-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.35rem 0.35rem 0.5rem;
  box-shadow: 0 28px 60px -28px rgba(15, 39, 68, 0.55);
  transform-style: preserve-3d;
}

.hero-panel__chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.9rem 0.55rem;
}

.hero-panel__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
}

.hero-panel__chrome span:nth-child(1) { background: #f43f5e; }
.hero-panel__chrome span:nth-child(2) { background: #f59e0b; }
.hero-panel__chrome span:nth-child(3) { background: #10b981; }

.hero-panel__chrome em {
  margin-left: 0.5rem;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.hero-panel a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.15rem 1.2rem;
  border-radius: 10px;
}

.hero-panel a + a {
  border-top: 1px solid var(--line);
}

.hero-panel a:hover {
  background: var(--paper);
}

.hero-panel__kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.hero-panel strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-panel p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* -------------------------------------------------------------------------- */
/* Product cards                                                              */
/* -------------------------------------------------------------------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: var(--shadow);
}

.product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.product-card__status {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a7018;
  background: var(--gold-soft);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0;
}

.product-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  color: var(--muted);
  flex: 1;
  font-size: 0.98rem;
}

.product-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

/* -------------------------------------------------------------------------- */
/* Service grid                                                               */
/* -------------------------------------------------------------------------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.product-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 16px 40px -20px rgba(15, 39, 68, 0.28);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.25rem;
  border-top: 2px solid var(--navy);
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.service-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.service-card details {
  margin-top: 0.85rem;
}

.service-card summary {
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.service-card summary::after {
  content: " +";
  color: var(--muted);
}

.service-card details[open] summary::after {
  content: " −";
}

.service-card details ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.service-card details li {
  margin-bottom: 0.3rem;
}

/* -------------------------------------------------------------------------- */
/* About / split                                                              */
/* -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.split h2 {
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  max-width: 18ch;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 0;
}

.stat-row div {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.stat-row strong {
  display: block;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-weight: 600;
}

.stat-row span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.quote {
  margin: 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
  color: var(--ink-soft);
  font-style: normal;
}

.quote p {
  margin: 0 0 0.75rem;
}

.quote cite {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.pillars {
  display: grid;
  gap: 1.25rem;
}

.pillars article {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.pillars article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pillars h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.pillars p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

/* -------------------------------------------------------------------------- */
/* How we work                                                                */
/* -------------------------------------------------------------------------- */

.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.model-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  background: var(--white);
}

.model-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.model-card h3 {
  font-size: 1.2rem;
}

.model-card ul {
  margin: 0 0 1.4rem;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.model-card li {
  margin-bottom: 0.35rem;
}

/* -------------------------------------------------------------------------- */
/* Team / insights / partner                                                  */
/* -------------------------------------------------------------------------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  gap: 1.25rem;
}

.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--white);
  text-decoration: none;
  color: inherit;
  display: block;
}

.team-card > a:first-child {
  text-decoration: none;
  color: inherit;
  display: block;
}

.team-card:hover {
  border-color: #94a3b8;
}

.team-card h3 {
  color: var(--ink);
}

.team-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.9rem;
}

.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.team-card__role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.team-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.team-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.team-card__linkedin {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.team-card__linkedin:hover {
  text-decoration: underline;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.insight-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem;
  background: var(--white);
  height: 100%;
}

.insight-card:hover {
  border-color: var(--line-strong);
}

.insight-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.insight-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.partner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.partner-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  background: var(--white);
}

.partner-aside strong {
  display: block;
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin: 0.35rem 0 0.25rem;
}

.partner-aside p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* -------------------------------------------------------------------------- */
/* Contact band                                                               */
/* -------------------------------------------------------------------------- */

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 2.5rem 3rem;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 5.5rem;
}

.contact-band > div:last-child,
.contact-card {
  justify-self: stretch;
  width: 100%;
  padding: 1.5rem 1.5rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, var(--accent-soft) 100%);
  box-shadow: 0 16px 40px -28px rgba(15, 39, 68, 0.35);
}

.contact-card__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-card__title {
  margin: 0 0 1.15rem;
  font-size: 1.2rem;
  color: var(--ink);
}

.contact-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  max-width: 18ch;
}

.contact-meta {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-meta li {
  margin-bottom: 0.45rem;
  color: var(--ink-soft);
}

.contact-meta a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.contact-meta a:hover {
  color: var(--accent);
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(226, 232, 240, 0.78);
  padding: 4rem 0 1.5rem;
  border-top: 0;
  background:
    radial-gradient(900px 500px at 88% 8%, rgba(20, 184, 166, 0.18), transparent 55%),
    radial-gradient(700px 420px at 8% 90%, rgba(196, 162, 39, 0.12), transparent 50%),
    linear-gradient(165deg, #06101c 0%, #0f2744 52%, #0b3d3a 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  z-index: 0;
}

.site-footer .wrap {
  position: relative;
  z-index: 1;
}

.site-footer a {
  color: rgba(226, 232, 240, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: #5eead4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2rem;
}

.site-footer h2,
.site-footer h3 {
  font-family: var(--font);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.site-footer .brand__name {
  color: #fff;
}

.site-footer .brand__name span {
  color: var(--gold);
}

.site-footer .brand {
  margin-bottom: 0.85rem;
}

.site-footer p {
  font-size: 0.92rem;
  max-width: 28ch;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer li a {
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-eco {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

/* -------------------------------------------------------------------------- */
/* Modal                                                                      */
/* -------------------------------------------------------------------------- */

.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.contact-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(420px, 100%);
  height: 100%;
  height: 100dvh;
  max-height: none;
  overflow: auto;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: var(--white);
  border-radius: 16px 0 0 16px;
  box-shadow: -18px 0 50px rgba(15, 23, 42, 0.22);
  z-index: 10001;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s ease;
}

.contact-modal.active {
  transform: translateX(0);
  visibility: visible;
}

body.contact-open .floating-contact-btn {
  opacity: 0;
  pointer-events: none;
}

.contact-modal-header {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 1.6rem 1.5rem 0.75rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.contact-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.contact-modal-header p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.contact-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border: 0;
  background: var(--paper);
  border-radius: 8px;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--ink);
}

.contact-modal-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.contact-modal .form-label,
.contact-card .form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 0.28rem;
}

.contact-modal .form-control,
.contact-card .form-control {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font: inherit;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  background: var(--white);
  color: var(--ink);
}

.contact-modal .form-control:focus,
.contact-card .form-control:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.contact-modal textarea.form-control,
.contact-card textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.modal-submit-btn {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.modal-submit-btn:hover {
  background: var(--navy-mid);
}

.modal-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-modal-info {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-modal-info a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.form-success {
  text-align: center;
  padding: 1.5rem 0;
}

.form-success h4 {
  margin-top: 0.5rem;
}

.floating-contact-btn {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  z-index: 40;
  box-shadow: var(--shadow);
  font-size: 1.1rem;
}

.floating-contact-btn:hover {
  background: var(--navy-mid);
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
  .insight-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .hero__grid,
  .split,
  .partner,
  .contact-band,
  .prose-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .contact-band > div:last-child,
  .contact-card {
    justify-self: stretch;
  }

  .contact-copy {
    position: static;
  }

  .product-grid,
  .model-grid,
  .service-grid,
  .insight-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__meta {
    grid-template-columns: 1fr 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 40;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(12, 34, 56, 0.10);
    padding: 0.5rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0px));
    max-height: min(75dvh, 32rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav .btn,
  .nav a.btn {
    width: 100%;
    max-width: 100%;
    margin-top: 0.85rem;
    padding: 0.8rem 1rem;
    border-bottom: 0;
    justify-content: center;
    text-align: center;
    white-space: normal;
    flex-wrap: wrap;
    line-height: 1.3;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .contact-modal {
    width: 100%;
    border-radius: 0;
  }

  .wrap {
    width: min(var(--wrap), calc(100% - 1.75rem));
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 2.5rem 0 3rem;
  }

  .service-grid,
  .insight-grid,
  .stat-row,
  .hero__meta,
  .team-grid,
  .product-grid,
  .model-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    flex-wrap: wrap;
    line-height: 1.3;
    box-sizing: border-box;
  }

  .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .brand__name {
    font-size: 0.88rem;
    max-width: 14rem;
  }

  .brand__name span {
    display: inline;
  }
}

.product-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 0;
  background: #0b1220;
  padding: 0;
}

.family-note {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.status-badge {
  display: inline-block;
  background: var(--gold-soft);
  color: #8a7018;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.founder-story,
.client-segments .segment,
.difference-point,
.reason,
.service-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow);
}

.founder-story {
  margin: 1.5rem 0;
}

.founder-story ul,
.segment ul,
.service-block ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.founder-story li,
.segment li,
.service-block li {
  margin-bottom: 0.4rem;
}

.our-difference,
.client-segments,
.why-choose-grid,
.approach-grid,
.prose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin: 1.5rem 0;
}

.why-choose-grid {
  grid-template-columns: repeat(2, 1fr);
}

.approach-grid {
  grid-template-columns: repeat(2, 1fr);
}

.approach-grid > div {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.approach-grid p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-block .btn {
  margin-top: 1.1rem;
}

.intro {
  font-size: 1.08rem;
}

.text-muted {
  color: var(--muted);
  font-weight: 500;
}

.partner-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.partner-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--ink-soft);
}

.partner-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.client-segments {
  grid-template-columns: 1fr;
}

.track-record-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #0f2744, #134e4a);
  color: #fff;
}

.track-record-stats .number {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.track-record-stats .label {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  opacity: 0.8;
}

.quote,
.founder-quote {
  margin: 1.75rem 0;
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--accent);
  background: var(--paper);
  border-radius: 0 12px 12px 0;
}

.quote cite,
.founder-quote cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--muted);
}

.cta-section {
  margin-top: 2.5rem;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #0f2744, #134e4a);
  color: #fff;
  text-align: center;
}

.cta-section h3,
.cta-section p {
  color: #fff;
}

.cta-section .btn {
  background: var(--gold);
  color: #0c1f33 !important;
}

.service-block {
  margin-bottom: 1.15rem;
}

.service-block header {
  margin-bottom: 0.85rem;
}

.service-block .tagline {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.service-block h3 {
  margin-bottom: 0.25rem;
}

.service-block h4 {
  margin-top: 1.1rem;
  font-size: 0.95rem;
}

.badge-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.price-note {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  background: #ecfdf5;
  color: #166534;
  font-weight: 600;
  font-size: 0.88rem;
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.compliance-badges span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.signals-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

@media (max-width: 980px) {
  .our-difference,
  .why-choose-grid,
  .approach-grid,
  .track-record-stats,
  .roadmap-grid,
  .signals-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .our-difference,
  .why-choose-grid,
  .approach-grid,
  .track-record-stats,
  .roadmap-grid,
  .signals-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
