:root {
  --navy-950: #04111d;
  --navy-900: #071a2b;
  --navy-850: #0a2236;
  --navy-800: #0e2a42;
  --ink: #102132;
  --muted: #607080;
  --paper: #f7f5f0;
  --white: #ffffff;
  --gold: #c8a76a;
  --gold-light: #e2ca9c;
  --gold-dark: #9d7b40;
  --line: rgba(14, 42, 66, .12);
  --shadow: 0 24px 70px rgba(4, 17, 29, .13);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 999;
  background: var(--white);
  color: var(--navy-900);
  padding: 10px 15px;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }
.section-dark { color: var(--white); background: var(--navy-900); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(5, 21, 34, .92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { width: 174px; height: auto; max-height: 66px; object-fit: contain; object-position: left center; filter: drop-shadow(0 4px 14px rgba(0,0,0,.18)); }
.footer-logo { width: 190px; max-height: 90px; }
.primary-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 700; }
.nav-link,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.72);
  background: transparent;
  font: inherit;
  cursor: pointer;
  transition: color .2s ease;
}
.nav-link::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .2s ease;
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.open > .nav-dropdown-toggle { color: var(--white); }
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle:focus-visible::after,
.nav-dropdown.open > .nav-dropdown-toggle::after { width: 100%; }
.nav-dropdown { position: relative; display: flex; align-items: center; min-height: 88px; }
.nav-dropdown-toggle svg { width: 11px; height: 8px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: transform .22s ease; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-submenu {
  position: absolute;
  top: calc(100% - 7px);
  left: 50%;
  width: 326px;
  padding: 10px;
  border: 1px solid rgba(226,202,156,.18);
  border-radius: 18px;
  background: rgba(5,21,34,.98);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.nav-submenu::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.nav-dropdown.open .nav-submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-submenu a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.75);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.nav-submenu a:hover,
.nav-submenu a:focus-visible { color: var(--white); background: rgba(255,255,255,.06); transform: translateX(2px); }
.submenu-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(226,202,156,.25);
  border-radius: 10px;
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: .08em;
}
.nav-submenu strong { display: block; color: inherit; font-size: 13px; line-height: 1.25; }
.nav-submenu small { display: block; margin-top: 4px; color: rgba(255,255,255,.42); font-size: 10px; font-weight: 500; line-height: 1.3; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--white); transition: transform .2s, opacity .2s; }

@media (min-width: 861px) {
  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
  .nav-dropdown:hover .nav-dropdown-toggle,
  .nav-dropdown:focus-within .nav-dropdown-toggle { color: var(--white); }
  .nav-dropdown:hover .nav-dropdown-toggle::after,
  .nav-dropdown:focus-within .nav-dropdown-toggle::after { width: 100%; }
  .nav-dropdown:hover .nav-dropdown-toggle svg,
  .nav-dropdown:focus-within .nav-dropdown-toggle svg { transform: rotate(180deg); }
}

.hero { position: relative; overflow: hidden; padding: 165px 0 0; min-height: 830px; background:
  linear-gradient(115deg, rgba(7,26,43,.98) 5%, rgba(8,29,47,.96) 48%, rgba(4,17,29,.98) 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 62px 62px; mask-image: linear-gradient(to bottom, black 0%, transparent 82%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 109px; height: 1px; background: rgba(255,255,255,.09); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .42; }
.hero-glow-one { width: 520px; height: 520px; right: 7%; top: 130px; background: radial-gradient(circle, rgba(35,112,145,.42), transparent 68%); }
.hero-glow-two { width: 420px; height: 420px; left: -190px; top: 100px; background: radial-gradient(circle, rgba(200,167,106,.14), transparent 68%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 78px; padding-bottom: 72px; }
.hero-copy { padding-top: 12px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 24px; color: var(--gold-light); font-size: 11px; line-height: 1; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow > span { width: 32px; height: 1px; background: var(--gold); }
.eyebrow.dark { color: var(--gold-dark); }
.eyebrow.centered { justify-content: center; }
.hero h1, .why h2 { margin: 0; font-size: clamp(52px, 5.2vw, 78px); line-height: 1.03; letter-spacing: -.055em; font-weight: 700; }
.hero h1 em, .why h2 em { color: var(--gold-light); font-family: "Playfair Display", Georgia, serif; font-weight: 600; }
.hero-lead { max-width: 600px; margin: 30px 0 34px; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent; font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 13px 35px rgba(200,167,106,.2); }
.button-primary:hover { box-shadow: 0 17px 42px rgba(200,167,106,.32); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.04); }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.trust-line { display: flex; align-items: center; gap: 16px; margin-top: 40px; }
.avatars { display: flex; }
.avatars span { width: 36px; height: 36px; display: grid; place-items: center; margin-left: -8px; border: 3px solid var(--navy-900); border-radius: 50%; background: var(--white); color: var(--navy-900); font-size: 10px; font-weight: 800; }
.avatars span:first-child { margin-left: 0; background: var(--gold); }
.avatars span:nth-child(2) { background: #d7dde2; }
.avatars span:nth-child(3) { background: #a8bdc7; }
.trust-line p { margin: 0; color: rgba(255,255,255,.53); font-size: 11px; line-height: 1.55; }
.trust-line strong { color: var(--white); font-size: 12px; }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.finance-panel { position: relative; z-index: 3; width: min(100%, 510px); padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.115), rgba(255,255,255,.045)); backdrop-filter: blur(18px); box-shadow: 0 40px 90px rgba(0,0,0,.32); transform: perspective(1100px) rotateY(-4deg) rotateX(2deg); }
.panel-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.panel-top > div { display: grid; }
.panel-label { color: rgba(255,255,255,.43); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.panel-top strong { margin-top: 5px; font-size: 15px; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border: 1px solid rgba(105,216,166,.18); border-radius: 999px; background: rgba(64,171,125,.12); color: #9be3c2; font-size: 9px; font-weight: 700; }
.status-pill i { width: 6px; height: 6px; border-radius: 50%; background: #6bd8a6; box-shadow: 0 0 0 4px rgba(107,216,166,.12); }
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.metric-card { padding: 17px; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: rgba(4,17,29,.32); }
.metric-card span, .metric-card small { display: block; color: rgba(255,255,255,.45); font-size: 9px; }
.metric-card strong { display: block; margin: 4px 0 2px; font-size: 27px; line-height: 1.2; }
.metric-card.accent strong { color: var(--gold-light); }
.chart-card { margin-top: 12px; padding: 18px 17px 8px; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: rgba(4,17,29,.34); overflow: hidden; }
.chart-head { display: flex; justify-content: space-between; gap: 15px; font-size: 10px; font-weight: 700; }
.chart-head small { color: rgba(255,255,255,.37); font-weight: 500; }
.chart { width: 100%; height: 150px; margin-top: 4px; overflow: visible; }
.grid-lines line { stroke: rgba(255,255,255,.06); stroke-width: 1; }
.chart .area { fill: url(#chartFill); }
.chart .line { fill: none; stroke: var(--gold-light); stroke-width: 3; stroke-linecap: round; filter: drop-shadow(0 0 5px rgba(226,202,156,.35)); }
.panel-footer { display: flex; align-items: center; gap: 12px; margin-top: 17px; }
.license-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; color: var(--navy-950); background: var(--gold); font-weight: 900; }
.panel-footer p { margin: 0; font-size: 10px; line-height: 1.45; }
.panel-footer span { color: rgba(255,255,255,.43); font-size: 9px; }
.visual-orbit { position: absolute; border: 1px solid rgba(200,167,106,.16); border-radius: 50%; }
.orbit-one { width: 510px; height: 510px; }
.orbit-two { width: 610px; height: 610px; border-color: rgba(255,255,255,.06); }
.floating-badge { position: absolute; z-index: 5; display: flex; align-items: center; gap: 10px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 15px; background: rgba(9,34,53,.92); box-shadow: 0 20px 45px rgba(0,0,0,.28); backdrop-filter: blur(12px); }
.floating-badge strong { color: var(--gold-light); font-size: 24px; line-height: 1; }
.floating-badge span { color: rgba(255,255,255,.58); font-size: 8px; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }
.badge-years { left: -20px; top: 65px; }
.badge-firms { right: -18px; bottom: 62px; }
.stats-strip { position: relative; z-index: 3; min-height: 110px; display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-strip > div { display: flex; align-items: center; gap: 13px; padding: 25px 30px; border-left: 1px solid rgba(255,255,255,.09); }
.stats-strip > div:last-child { border-right: 1px solid rgba(255,255,255,.09); }
.stats-strip strong { color: var(--gold-light); font-size: 31px; letter-spacing: -.04em; }
.stats-strip span { color: rgba(255,255,255,.49); font-size: 10px; line-height: 1.4; text-transform: uppercase; letter-spacing: .1em; }

.section-heading h2, .about-copy h2, .contact-copy h2 { margin: 0; font-size: clamp(38px, 4vw, 58px); line-height: 1.08; letter-spacing: -.045em; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; margin-bottom: 54px; }
.split-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 14px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.service-card { position: relative; min-height: 340px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.62); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; overflow: hidden; }
.service-card::before { content: ""; position: absolute; right: -50px; bottom: -70px; width: 170px; height: 170px; border: 1px solid rgba(14,42,66,.07); border-radius: 50%; transition: transform .35s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(200,167,106,.45); }
.service-card:hover::before { transform: scale(1.25); }
.service-card.featured { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }
.service-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 35px; border-radius: 14px; background: rgba(200,167,106,.12); }
.service-icon svg { width: 24px; fill: none; stroke: var(--gold-dark); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.featured .service-icon { background: rgba(226,202,156,.12); }
.featured .service-icon svg { stroke: var(--gold-light); }
.service-number { position: absolute; right: 25px; top: 25px; color: rgba(14,42,66,.18); font-size: 12px; font-weight: 800; }
.featured .service-number { color: rgba(255,255,255,.22); }
.service-card h3 { margin: 0 0 13px; font-size: 20px; letter-spacing: -.025em; }
.service-card p { margin: 0 0 24px; color: var(--muted); font-size: 13px; }
.featured p { color: rgba(255,255,255,.56); }
.service-card a { margin-top: auto; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.service-card a span { color: var(--gold-dark); margin-left: 6px; }
.featured a span { color: var(--gold-light); }

.service-paths { margin-top: 86px; padding-top: 78px; border-top: 1px solid var(--line); scroll-margin-top: 110px; }
.service-paths-intro { display: grid; grid-template-columns: .62fr 1.38fr; gap: 72px; align-items: start; margin-bottom: 34px; }
.service-paths-intro .eyebrow { margin-top: 12px; }
.service-paths-intro h3 { max-width: 760px; margin: 0 0 15px; font-size: clamp(30px, 3vw, 44px); line-height: 1.12; letter-spacing: -.04em; }
.service-paths-intro p:not(.eyebrow) { max-width: 830px; margin: 0; color: var(--muted); font-size: 14px; }
.service-path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.service-path-card { position: relative; min-height: 470px; display: flex; flex-direction: column; padding: 31px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.72); overflow: hidden; isolation: isolate; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.service-path-card::before { content: ""; position: absolute; z-index: -1; width: 250px; height: 250px; right: -115px; top: -115px; border-radius: 50%; background: radial-gradient(circle, rgba(200,167,106,.18), rgba(200,167,106,0) 70%); transition: transform .4s ease; }
.service-path-card:hover { transform: translateY(-8px); border-color: rgba(200,167,106,.5); box-shadow: var(--shadow); }
.service-path-card:hover::before { transform: scale(1.35); }
.service-path-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 48px; }
.service-path-badge { display: inline-flex; align-items: center; min-height: 27px; padding: 0 11px; border-radius: 999px; background: rgba(14,42,66,.07); color: var(--navy-800); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-path-arrow { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(14,42,66,.12); border-radius: 50%; color: var(--gold-dark); font-size: 16px; transition: transform .25s ease, background .25s ease; }
.service-path-card:hover .service-path-arrow { transform: translate(2px,-2px); background: rgba(200,167,106,.13); }
.service-path-index { color: rgba(14,42,66,.25); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.service-path-card h3 { margin: 11px 0 13px; font-size: 25px; line-height: 1.15; letter-spacing: -.035em; }
.service-path-card > p { margin: 0 0 22px; color: var(--muted); font-size: 12px; line-height: 1.72; }
.service-path-card ul { display: grid; gap: 9px; margin: 0 0 29px; padding: 0; list-style: none; }
.service-path-card li { position: relative; padding-left: 20px; color: #435565; font-size: 10px; font-weight: 650; line-height: 1.5; }
.service-path-card li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold-dark); font-weight: 900; }
.service-path-link { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(14,42,66,.1); color: var(--navy-900); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-path-link i { color: var(--gold-dark); font-style: normal; font-size: 16px; }
.service-path-additional { color: var(--white); border-color: var(--navy-900); background: linear-gradient(145deg, var(--navy-900), var(--navy-800)); }
.service-path-additional::before { background: radial-gradient(circle, rgba(226,202,156,.19), rgba(226,202,156,0) 70%); }
.service-path-additional .service-path-badge { color: var(--gold-light); background: rgba(226,202,156,.12); }
.service-path-additional .service-path-arrow { border-color: rgba(255,255,255,.16); color: var(--gold-light); }
.service-path-additional .service-path-index { color: rgba(255,255,255,.3); }
.service-path-additional > p, .service-path-additional li { color: rgba(255,255,255,.62); }
.service-path-additional li::before, .service-path-additional .service-path-link i { color: var(--gold-light); }
.service-path-additional .service-path-link { color: var(--white); border-top-color: rgba(255,255,255,.12); }
.service-path-free { border-color: rgba(0,139,121,.22); background: linear-gradient(145deg, rgba(235,248,226,.94), rgba(247,252,240,.94)); }
.service-path-free::before { background: radial-gradient(circle, rgba(126,190,67,.22), rgba(126,190,67,0) 70%); }
.service-path-free .service-path-badge { color: #247761; background: rgba(0,139,121,.1); }
.service-path-free .service-path-arrow, .service-path-free .service-path-link i, .service-path-free li::before { color: #247761; }
.service-path-free:hover { border-color: rgba(0,139,121,.48); }

.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; align-items: center; }
.about-visual { position: relative; min-height: 590px; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(145deg, #0c2c45, #061724); box-shadow: var(--shadow); }
.about-pattern { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(35deg, transparent 44%, rgba(255,255,255,.08) 45%, rgba(255,255,255,.08) 46%, transparent 47%), linear-gradient(145deg, transparent 44%, rgba(255,255,255,.06) 45%, rgba(255,255,255,.06) 46%, transparent 47%); background-size: 70px 70px; }
.about-monogram { position: absolute; right: -22px; bottom: -105px; font-family: "Playfair Display", Georgia, serif; color: rgba(200,167,106,.1); font-size: 530px; line-height: 1; }
.about-quote { position: absolute; left: 38px; top: 42px; z-index: 2; }
.quote-mark { color: var(--gold); font-family: Georgia, serif; font-size: 70px; line-height: .7; }
.about-quote p { margin: 12px 0 0; color: var(--white); font-family: "Playfair Display", Georgia, serif; font-size: 29px; line-height: 1.35; }
.about-seal { position: absolute; right: 35px; bottom: 35px; width: 132px; height: 132px; display: grid; place-items: center; padding: 20px; border: 1px solid rgba(226,202,156,.36); border-radius: 50%; color: var(--gold-light); text-align: center; transform: rotate(-8deg); }
.about-seal::before { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(226,202,156,.3); border-radius: 50%; }
.about-seal span { position: relative; font-size: 7px; font-weight: 800; letter-spacing: .16em; }
.about-seal strong { position: relative; font-size: 28px; line-height: 1; }
.about-copy .large-copy { margin: 28px 0 18px; color: var(--ink); font-size: 17px; font-weight: 600; }
.about-copy > p:not(.eyebrow):not(.large-copy) { color: var(--muted); font-size: 14px; }
.check-list { display: grid; gap: 17px; margin: 30px 0; }
.check-list > div { display: flex; gap: 14px; align-items: flex-start; }
.check-list i { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: rgba(200,167,106,.15); color: var(--gold-dark); font-style: normal; font-size: 12px; font-weight: 900; }
.check-list span { display: grid; }
.check-list strong { font-size: 13px; }
.check-list small { color: var(--muted); font-size: 11px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 4px; border-bottom: 1px solid rgba(157,123,64,.42); color: var(--gold-dark); font-size: 12px; font-weight: 800; }

.process { background: var(--paper); }
.section-heading.center { max-width: 720px; margin: 0 auto 66px; text-align: center; }
.section-heading.center p:last-child { color: var(--muted); font-size: 14px; }
.process-grid { display: grid; grid-template-columns: 1fr 90px 1fr 90px 1fr; align-items: center; }
.process-step { position: relative; min-height: 250px; padding: 31px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.step-number { position: absolute; top: 25px; right: 25px; color: rgba(14,42,66,.17); font-size: 12px; font-weight: 800; }
.step-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 35px; border-radius: 50%; background: var(--navy-900); color: var(--gold-light); font-size: 20px; }
.process-step h3 { margin: 0 0 11px; font-size: 18px; }
.process-step p { margin: 0; color: var(--muted); font-size: 12px; }
.process-line { height: 1px; background: rgba(14,42,66,.15); position: relative; }
.process-line span { position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--gold-dark); border-right: 1px solid var(--gold-dark); transform: rotate(45deg); }

.why { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); }
.why::after { content: ""; position: absolute; width: 700px; height: 700px; right: -260px; top: -250px; border: 1px solid rgba(200,167,106,.1); border-radius: 50%; box-shadow: 0 0 0 80px rgba(200,167,106,.025), 0 0 0 160px rgba(200,167,106,.018); }
.why-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.why h2 { font-size: clamp(43px, 4.2vw, 62px); }
.why-copy > p:not(.eyebrow) { margin: 25px 0 30px; color: rgba(255,255,255,.58); font-size: 14px; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.benefit-grid article { min-height: 205px; padding: 27px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); background: rgba(255,255,255,.045); backdrop-filter: blur(10px); }
.benefit-grid strong { color: var(--gold); font-size: 10px; letter-spacing: .15em; }
.benefit-grid h3 { margin: 35px 0 10px; font-size: 17px; }
.benefit-grid p { margin: 0; color: rgba(255,255,255,.48); font-size: 11px; }

.contact { padding-bottom: 80px; background: var(--paper); }
.contact-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; padding: 64px; border-radius: var(--radius-lg); color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.contact-copy h2 { color: var(--white); }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.55); font-size: 13px; }
.contact-details { display: grid; gap: 14px; margin-top: 40px; }
.contact-details a, .contact-details > div { display: grid; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-details span { color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-details strong { margin-top: 3px; font-size: 13px; }
.contact-form { display: grid; gap: 16px; padding: 32px; border-radius: var(--radius-md); background: var(--white); color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; font-size: 10px; font-weight: 800; letter-spacing: .04em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(14,42,66,.14); border-radius: 11px; outline: none; background: #fafafa; color: var(--ink); padding: 13px 14px; font-size: 12px; font-weight: 500; transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(200,167,106,.12); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .invalid { border-color: #b94747; }
.field-error { min-height: 12px; color: #b94747; font-size: 9px; font-weight: 600; }
.form-submit { width: 100%; border: 0; }
.form-note { margin: -5px 0 0; color: #83909b; font-size: 9px; text-align: center; }
.form-status { min-height: 20px; font-size: 11px; font-weight: 700; text-align: center; }
.form-status.success { color: #2a7d5b; }
.form-status.error { color: #b94747; }

.site-footer { color: rgba(255,255,255,.6); background: var(--navy-950); }
.footer-top { display: grid; grid-template-columns: .7fr 1.2fr 1.1fr; align-items: center; gap: 50px; padding: 55px 0; }
.footer-brand { color: var(--white); }
.footer-top > p { max-width: 390px; margin: 0; font-size: 12px; }
.footer-links { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 23px; color: var(--white); font-size: 11px; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: 9px; letter-spacing: .06em; }
.footer-bottom a {
  color: var(--lime-400);
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

.floating-call { position: fixed; right: 23px; bottom: 23px; z-index: 50; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--navy-950); box-shadow: 0 14px 35px rgba(4,17,29,.3); transition: transform .2s ease; }
.floating-call:hover { transform: translateY(-3px) scale(1.03); }
.floating-call svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal-delay { transition-delay: .16s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .finance-panel { transform: none; }
  .stats-strip > div { padding-inline: 18px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-path-grid { grid-template-columns: repeat(2, 1fr); }
  .service-path-card:last-child { grid-column: 1 / -1; min-height: 390px; }
  .about-grid, .why-grid { gap: 55px; }
  .process-grid { grid-template-columns: 1fr 42px 1fr 42px 1fr; }
  .contact-shell { gap: 45px; padding: 48px; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 90px 0; }
  .menu-toggle { display: block; position: relative; z-index: 103; cursor: pointer; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 24px; padding: 116px 32px 50px; background: var(--navy-950); transform: translateX(100%); transition: transform .3s ease; font-size: 21px; overflow-y: auto; }
  .primary-nav.open { transform: translateX(0); }
  .nav-link { width: 100%; font-size: 21px; }
  .nav-dropdown { width: 100%; min-height: 0; display: block; }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; font-size: 21px; }
  .nav-dropdown-toggle svg { width: 14px; height: 10px; margin-right: 4px; }
  .nav-submenu {
    position: static;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    padding: 0 8px;
    border: 0;
    border-radius: 16px;
    background: rgba(255,255,255,.035);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: none;
    transition: max-height .3s ease, margin .3s ease, padding .3s ease, opacity .2s ease, visibility .2s ease;
  }
  .nav-dropdown.open .nav-submenu { max-height: 270px; margin-top: 15px; padding: 8px; opacity: 1; visibility: visible; transform: none; }
  .nav-submenu::before { display: none; }
  .nav-submenu a { min-height: 64px; }
  .nav-submenu strong { font-size: 14px; }
  .nav-submenu small { font-size: 10px; }
  .hero { padding-top: 135px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-visual { max-width: 600px; width: 100%; margin: 0 auto; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip > div:nth-child(3) { border-top: 1px solid rgba(255,255,255,.09); }
  .stats-strip > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.09); border-right: 1px solid rgba(255,255,255,.09); }
  .split-heading, .service-paths-intro, .about-grid, .why-grid, .contact-shell { grid-template-columns: 1fr; }
  .split-heading, .service-paths-intro { gap: 25px; }
  .service-path-grid { grid-template-columns: 1fr; }
  .service-path-card:last-child { grid-column: auto; min-height: 430px; }
  .about-visual { min-height: 500px; }
  .process-grid { grid-template-columns: 1fr; gap: 14px; }
  .process-line { width: 1px; height: 34px; margin: 0 auto; }
  .process-line span { right: -3px; top: auto; bottom: 0; transform: rotate(135deg); }
  .contact-shell { padding: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 25px; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .nav-wrap { height: 75px; }
  .brand-logo { width: 148px; max-height: 58px; }
  .footer-logo { width: 175px; max-height: 82px; }
  .hero { padding-top: 118px; }
  .hero h1 { font-size: 45px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-visual { min-height: 450px; }
  .finance-panel { padding: 17px; border-radius: 21px; }
  .floating-badge { display: none; }
  .orbit-one { width: 410px; height: 410px; }
  .orbit-two { width: 500px; height: 500px; }
  .chart { height: 120px; }
  .stats-strip > div { padding: 20px 13px; gap: 9px; }
  .stats-strip strong { font-size: 25px; }
  .stats-strip span { font-size: 8px; }
  .section { padding: 76px 0; }
  .section-heading h2, .about-copy h2, .contact-copy h2 { font-size: 38px; }
  .service-grid, .service-path-grid, .benefit-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .service-paths { margin-top: 62px; padding-top: 58px; }
  .service-path-card { min-height: 0; padding: 26px; }
  .service-path-card:last-child { min-height: 0; }
  .service-path-top { margin-bottom: 38px; }
  .about-grid { gap: 45px; }
  .about-visual { min-height: 430px; }
  .about-monogram { font-size: 420px; }
  .about-quote { left: 25px; top: 30px; }
  .about-quote p { font-size: 23px; }
  .about-seal { width: 112px; height: 112px; right: 24px; bottom: 24px; }
  .why h2 { font-size: 41px; }
  .contact { padding-bottom: 40px; }
  .contact-shell { width: 100%; border-radius: 0; padding: 50px 20px; }
  .contact-form { padding: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .floating-call { width: 50px; height: 50px; right: 16px; bottom: 16px; }
}

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


/* SERVICE DETAIL PAGES */
.service-page-hero { position: relative; overflow: hidden; min-height: 700px; padding: 155px 0 100px; background: linear-gradient(118deg, rgba(7,26,43,.99), rgba(10,34,54,.97) 55%, rgba(4,17,29,.99)); }
.service-page-hero::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 62px 62px; mask-image: linear-gradient(to bottom, black, transparent 95%); }
.service-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 85px; align-items: center; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-bottom: 38px; color: rgba(255,255,255,.45); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb strong { color: rgba(255,255,255,.78); }
.service-hero-copy h1 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(48px, 5.3vw, 76px); line-height: 1.05; letter-spacing: -.035em; }
.service-hero-copy h1 em { color: var(--gold-light); font-weight: 600; }
.service-hero-lead { max-width: 680px; margin: 28px 0 0; color: rgba(255,255,255,.64); font-size: 16px; line-height: 1.8; }
.service-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 35px; }
.service-hero-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 35px; }
.service-hero-badges span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: rgba(255,255,255,.68); background: rgba(255,255,255,.035); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-hero-visual { position: relative; padding: 38px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); box-shadow: 0 35px 90px rgba(0,0,0,.24); backdrop-filter: blur(18px); }
.service-hero-visual::after { content: ""; position: absolute; width: 170px; height: 170px; right: -65px; top: -65px; border: 1px solid rgba(200,167,106,.2); border-radius: 50%; box-shadow: 0 0 0 34px rgba(200,167,106,.035), 0 0 0 68px rgba(200,167,106,.02); }
.service-visual-kicker { color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: .22em; }
.service-hero-visual h2 { max-width: 420px; margin: 15px 0 30px; color: var(--white); font-size: 28px; }
.hero-service-list { display: grid; gap: 10px; }
.hero-service-row { position: relative; z-index: 2; display: grid; grid-template-columns: 36px 1fr 25px; gap: 10px; align-items: center; padding: 16px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(4,17,29,.28); }
.hero-service-row i { color: var(--gold); font-style: normal; font-size: 10px; font-weight: 800; }
.hero-service-row span { font-size: 12px; font-weight: 700; }
.hero-service-row b { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-950); background: var(--gold); font-size: 10px; }
.service-visual-bottom { display: flex; justify-content: space-between; gap: 10px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: 8px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.service-page-hero-additional .service-hero-visual { background: linear-gradient(145deg, rgba(20,71,91,.32), rgba(255,255,255,.03)); }
.service-page-hero-free .service-hero-visual { background: linear-gradient(145deg, rgba(55,115,78,.26), rgba(255,255,255,.03)); }
.service-page-hero-free .hero-service-row b { background: #a9d86e; }

.service-overview { background: var(--paper); }
.service-layout { display: grid; grid-template-columns: 300px 1fr; gap: 55px; align-items: start; }
.sidebar-sticky { position: sticky; top: 118px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 18px 45px rgba(4,17,29,.06); }
.sidebar-sticky h2 { margin: -5px 0 24px; font-size: 25px; }
.service-sidebar nav { display: grid; border-top: 1px solid var(--line); }
.service-sidebar nav a { display: grid; grid-template-columns: 28px 1fr; gap: 9px; align-items: start; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 10px; line-height: 1.4; font-weight: 700; transition: color .2s, transform .2s; }
.service-sidebar nav a:hover { color: var(--gold-dark); transform: translateX(3px); }
.service-sidebar nav span { color: var(--gold-dark); font-size: 8px; letter-spacing: .08em; }
.sidebar-contact { display: grid; gap: 5px; margin-top: 24px; padding: 20px; border-radius: 15px; color: var(--white); background: var(--navy-900); }
.sidebar-contact span { color: rgba(255,255,255,.55); font-size: 9px; }
.sidebar-contact strong { font-size: 15px; }
.sidebar-contact a { margin-top: 9px; color: var(--gold-light); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.service-details { display: grid; gap: 28px; }
.service-detail-card { scroll-margin-top: 115px; padding: 45px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 18px 55px rgba(4,17,29,.055); }
.service-detail-card.detail-standard { border-top: 4px solid var(--gold); }
.service-detail-card.detail-additional { border-top: 4px solid #397c91; }
.detail-card-head { display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: center; }
.detail-index { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; color: var(--gold-dark); background: rgba(200,167,106,.13); font-size: 14px; font-weight: 800; }
.detail-card-head p { margin: 0 0 4px; color: var(--gold-dark); font-size: 8px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.detail-card-head h2 { margin: 0; font-size: clamp(28px, 3vw, 39px); line-height: 1.15; }
.detail-intro { margin: 28px 0; color: var(--muted); font-size: 14px; }
.detail-content-grid { display: grid; grid-template-columns: 1fr 280px; gap: 35px; padding-top: 28px; border-top: 1px solid var(--line); }
.detail-content-grid h3 { margin: 0 0 16px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.detail-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.detail-list li { position: relative; padding-left: 24px; color: var(--muted); font-size: 12px; }
.detail-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--gold-dark); font-weight: 900; }
.detail-benefit { padding: 23px; border-radius: 17px; background: var(--paper); }
.detail-benefit > span { color: var(--gold-dark); font-size: 8px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.detail-benefit p { margin: 12px 0 18px; color: var(--ink); font-size: 11px; font-weight: 600; }
.detail-benefit a { display: flex; justify-content: space-between; gap: 10px; padding-top: 15px; border-top: 1px solid var(--line); color: var(--gold-dark); font-size: 9px; font-weight: 800; }

.analytics-types { padding: 45px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); }
.analytics-heading { display: grid; grid-template-columns: .7fr 1.3fr; gap: 25px; align-items: end; margin-bottom: 32px; }
.analytics-heading > span { color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.analytics-heading h2 { margin: 0; color: var(--white); font-size: 34px; }
.analytics-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 11px; }
.analytics-grid article { min-height: 170px; padding: 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.045); }
.analytics-grid b { color: var(--gold); font-size: 9px; }
.analytics-grid h3 { margin: 24px 0 8px; color: var(--white); font-size: 16px; }
.analytics-grid p { margin: 0; color: rgba(255,255,255,.52); font-size: 10px; }

.related-services { background: var(--white); }
.related-service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.related-service-card { position: relative; min-height: 255px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); transition: transform .25s, box-shadow .25s, border-color .25s; }
.related-service-card:hover { transform: translateY(-5px); border-color: rgba(157,123,64,.38); box-shadow: 0 22px 55px rgba(4,17,29,.1); }
.related-service-card > span { color: var(--gold-dark); font-size: 8px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.related-service-card h3 { margin: 45px 0 10px; font-size: 24px; }
.related-service-card p { max-width: 280px; margin: 0; color: var(--muted); font-size: 11px; }
.related-service-card > b { position: absolute; right: 28px; bottom: 25px; color: var(--gold-dark); font-size: 20px; }
.related-service-card.current { color: var(--white); background: var(--navy-900); }
.related-service-card.current h3 { color: var(--white); }
.related-service-card.current p { color: rgba(255,255,255,.52); }
.related-service-card.current > span, .related-service-card.current > b { color: var(--gold-light); }
.related-free { border-color: rgba(64,128,91,.18); }

.free-services { background: var(--paper); }
.free-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.free-feature-card { position: relative; padding: 48px; overflow: hidden; border: 1px solid rgba(54,118,80,.17); border-radius: var(--radius-lg); background: linear-gradient(145deg,#fff,#f1f7ed); box-shadow: 0 25px 65px rgba(21,65,40,.08); }
.free-feature-card:nth-child(2) { background: linear-gradient(145deg,#fff,#f4f7ef); }
.free-feature-number { position: absolute; right: -13px; top: -62px; color: rgba(55,118,80,.07); font-family: "Playfair Display",Georgia,serif; font-size: 190px; line-height: 1; }
.free-feature-icon { position: relative; z-index: 1; width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 55px; border-radius: 18px; color: #175a45; background: rgba(86,153,96,.14); font-size: 23px; }
.free-label { color: #2b765c; font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.free-feature-card h2 { position: relative; z-index: 1; margin: 14px 0 22px; font-size: clamp(30px,3.4vw,42px); line-height: 1.12; }
.free-feature-card > p { color: var(--muted); font-size: 13px; }
.free-feature-card ul { display: grid; gap: 11px; margin: 26px 0; padding: 25px 0; border-top: 1px solid rgba(55,118,80,.14); border-bottom: 1px solid rgba(55,118,80,.14); list-style: none; }
.free-feature-card li { position: relative; padding-left: 25px; color: var(--ink); font-size: 11px; font-weight: 600; }
.free-feature-card li::before { content:"✓"; position:absolute; left:0; color:#2b765c; font-weight:900; }
.free-benefit { display: grid; gap: 7px; padding: 20px; border-radius: 15px; background: rgba(255,255,255,.72); }
.free-benefit strong { color:#2b765c; font-size:9px; letter-spacing:.13em; text-transform:uppercase; }
.free-benefit span { font-size:11px; font-weight:600; }
.free-process { position:relative; overflow:hidden; background:linear-gradient(135deg,#071a2b,#113e38); }
.free-process-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:85px; align-items:center; }
.free-process-copy > p:not(.eyebrow) { color:rgba(255,255,255,.55); font-size:13px; }
.free-process-copy h2 { font-size:clamp(39px,4.2vw,58px); }
.free-process-copy .button { margin-top:25px; }
.free-process-steps { display:grid; gap:12px; }
.free-process-steps article { display:grid; grid-template-columns:54px 1fr; gap:19px; padding:24px; border:1px solid rgba(255,255,255,.1); border-radius:17px; background:rgba(255,255,255,.045); }
.free-process-steps article > span { width:54px;height:54px;display:grid;place-items:center;border-radius:50%;color:#09271f;background:#a9d86e;font-size:10px;font-weight:800; }
.free-process-steps h3 { margin:0 0 5px;color:var(--white);font-size:17px; }
.free-process-steps p { margin:0;color:rgba(255,255,255,.48);font-size:10px; }

@media (max-width: 1080px) {
  .service-hero-grid { gap: 45px; }
  .service-layout { grid-template-columns: 250px 1fr; gap: 32px; }
  .detail-content-grid { grid-template-columns: 1fr; }
  .related-service-grid { grid-template-columns: repeat(2,1fr); }
  .related-service-card:last-child { grid-column: 1/-1; }
  .free-feature-card { padding: 38px; }
}
@media (max-width: 860px) {
  .service-page-hero { padding-top: 135px; }
  .service-hero-grid, .service-layout, .free-process-grid { grid-template-columns: 1fr; }
  .service-hero-visual { max-width: 650px; }
  .service-sidebar { display: none; }
  .analytics-heading { grid-template-columns: 1fr; }
  .free-feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .service-page-hero { min-height: 0; padding: 112px 0 72px; }
  .service-hero-copy h1 { font-size: 43px; }
  .service-hero-actions { flex-direction: column; }
  .service-hero-visual { padding: 24px; }
  .service-hero-visual h2 { font-size: 24px; }
  .service-detail-card, .analytics-types, .free-feature-card { padding: 25px; border-radius: 22px; }
  .detail-card-head { grid-template-columns: 48px 1fr; gap: 14px; }
  .detail-index { width: 48px; height: 48px; border-radius: 14px; }
  .detail-card-head h2 { font-size: 27px; }
  .analytics-grid, .related-service-grid { grid-template-columns: 1fr; }
  .related-service-card:last-child { grid-column: auto; }
  .free-feature-icon { margin-bottom: 38px; }
  .free-process-steps article { grid-template-columns: 44px 1fr; padding: 18px; }
  .free-process-steps article > span { width:44px;height:44px; }
}
