:root {
  --navy-950: #071018;
  --navy-900: #0c1a2e;
  --navy-800: #132a45;
  --navy-700: #1c3a5c;
  --navy-600: #254a70;
  --gold-700: #8f7120;
  --gold-600: #a88428;
  --gold-500: #c9a227;
  --gold-400: #dbb94a;
  --gold-300: #edd56b;
  --gold-200: #f5e6a8;
  --bronze: #9a7b4f;
  --cream: #f4f0e8;
  --cream-dark: #e8e2d6;
  --ivory: #faf8f4;
  --surface: #f7f5f1;
  --surface-2: #efeae3;
  --text: #121c2b;
  --muted: #5a6778;
  --border: rgba(19, 42, 69, 0.11);
  --border-strong: rgba(19, 42, 69, 0.18);
  --white: #fff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 20px rgba(11, 24, 41, 0.06);
  --shadow: 0 16px 48px rgba(11, 24, 41, 0.1);
  --shadow-lg: 0 24px 64px rgba(11, 24, 41, 0.16);
  --font: 'Manrope', system-ui, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --header-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.45s;
  --duration-slow: 0.7s;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 48px);
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(ellipse 120% 80% at 100% -20%, rgba(201, 162, 39, 0.06), transparent 50%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(19, 42, 69, 0.04), transparent 45%),
    var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--navy-700); text-decoration: none;
  transition: color var(--duration) var(--ease-smooth), opacity var(--duration) var(--ease-smooth);
}
a:hover { color: var(--gold-600); }

.container { width: min(1200px, 92%); margin: 0 auto; }
.container--narrow { width: min(760px, 92%); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--navy-900); color: var(--white); padding: .75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ── Utility bar ── */
.header-shell { position: sticky; top: 0; z-index: 200; }
.utility-bar {
  background: var(--navy-950);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.utility-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 38px; flex-wrap: wrap;
}
.utility-bar a { color: rgba(255,255,255,.8); }
.utility-bar a:hover { color: var(--gold-300); }
.utility-bar__left, .utility-bar__right { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.utility-bar i { color: var(--gold-400); margin-right: .35rem; }

/* ── Header ── */
.site-header {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--duration) var(--ease-smooth), background var(--duration) var(--ease-smooth), transform var(--duration) var(--ease-out);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,.96);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1.5rem;
}

.brand { display: flex; align-items: center; gap: .85rem; color: var(--navy-900); }
.brand--footer { margin-bottom: 1rem; }
.brand__mark {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-950));
  color: var(--gold-300);
  display: grid; place-items: center;
  font-weight: 800; font-size: .95rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 8px 20px rgba(11,24,41,.2);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-size: 1.1rem; font-weight: 800; letter-spacing: -.02em; }
.brand__text small { color: var(--muted); font-size: .72rem; font-weight: 500; }

.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.site-nav > ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: .25rem; align-items: center;
}
.site-nav > ul > li > a,
.nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .55rem .85rem; border-radius: 999px;
  font-weight: 600; font-size: .92rem; color: var(--text);
  transition: background var(--duration) var(--ease-smooth), color var(--duration) var(--ease-smooth), transform var(--duration) var(--ease-out);
}
.site-nav > ul > li > a:hover,
.nav-dropdown-toggle:hover {
  background: var(--cream); color: var(--navy-900); transform: translateY(-1px);
}
.site-nav a.is-active, .nav-dropdown-toggle.is-active { color: var(--gold-600); }
.nav-dropdown-toggle i { font-size: .65rem; opacity: .6; transition: transform .2s; }
.has-dropdown:hover .nav-dropdown-toggle i { transform: rotate(180deg); }

.site-nav__cta { display: flex; gap: .5rem; align-items: center; }

.has-dropdown { position: relative; }
.has-dropdown:hover,
.has-dropdown.is-open {
  z-index: 120;
}
.has-dropdown::after {
  content: '';
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 18px;
  display: none;
}
.has-dropdown:hover::after,
.has-dropdown.is-open::after {
  display: block;
}
.dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, calc(100vw - 2rem));
  padding-top: 1rem;
  z-index: 60;
  pointer-events: none;
}
.dropdown-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1rem;
}
.dropdown-panel__box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  pointer-events: auto;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown.is-open .dropdown-panel {
  display: block;
  pointer-events: auto;
  animation: dropdownIn .22s var(--ease);
}
.has-dropdown:hover .nav-dropdown-toggle,
.has-dropdown.is-open .nav-dropdown-toggle {
  transform: none;
}
@keyframes dropdownIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.dropdown-panel__head {
  padding: .5rem .75rem 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: .5rem;
}
.dropdown-panel__head strong { display: block; color: var(--navy-900); font-size: .95rem; }
.dropdown-panel__head span { font-size: .8rem; color: var(--muted); }
.site-nav .dropdown {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: .15rem;
}
.site-nav .dropdown a {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .7rem .75rem; border-radius: var(--radius-sm);
  transition: background .2s;
}
.site-nav .dropdown a:hover { background: var(--cream); }
.dropdown__icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-700));
  color: var(--gold-300); display: grid; place-items: center; font-size: .9rem;
}
.dropdown__text strong { display: block; font-size: .88rem; color: var(--navy-900); line-height: 1.3; }
.dropdown__text small { display: block; font-size: .75rem; color: var(--muted); line-height: 1.35; margin-top: .15rem; }
.dropdown-panel__all {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: .75rem; padding: .65rem;
  border-radius: var(--radius-sm);
  background: var(--cream); font-weight: 700; font-size: .85rem; color: var(--navy-800);
}
.dropdown-panel__all:hover { background: var(--cream-dark); color: var(--navy-900); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: var(--cream); border: 0; cursor: pointer;
  padding: .65rem; border-radius: 10px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--navy-900); border-radius: 2px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .7rem 1.35rem; border-radius: 999px; font-weight: 700;
  border: 2px solid transparent; cursor: pointer; font-family: inherit; font-size: .92rem;
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-smooth),
    background var(--duration) var(--ease-smooth), color var(--duration) var(--ease-smooth),
    border-color var(--duration) var(--ease-smooth);
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: .12s; }
.btn i { transition: transform var(--duration) var(--ease-out); }
.btn:hover i { transform: translateX(3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950); border-color: transparent;
  box-shadow: 0 8px 24px rgba(196, 160, 53, .35);
}
.btn-primary:hover { box-shadow: 0 14px 36px rgba(196, 160, 53, .48); color: var(--navy-950); }

.btn-cta-primary {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-300) 100%);
  color: var(--navy-950);
  box-shadow: 0 10px 32px rgba(196, 160, 53, .4), inset 0 1px 0 rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-cta-primary:hover {
  box-shadow: 0 16px 40px rgba(196, 160, 53, .5), inset 0 1px 0 rgba(255,255,255,.45);
  color: var(--navy-950);
}
.btn-cta-secondary {
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-cta-secondary:hover {
  background: var(--cream);
  border-color: rgba(196,160,53,.35);
  color: var(--navy-900);
  box-shadow: var(--shadow);
}
.btn-cta-secondary--glass {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.28);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.btn-cta-secondary--glass:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.btn-ghost {
  background: transparent; border-color: var(--border); color: var(--navy-800);
}
.btn-ghost:hover { background: var(--cream); }
.btn-outline {
  background: transparent; border-color: var(--navy-800); color: var(--navy-800);
}
.btn-outline:hover { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }
.btn-glass {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,.18); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,.45); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--navy-900); }
.btn-light { background: var(--white); color: var(--navy-900); box-shadow: var(--shadow-sm); }
.btn-sm { padding: .5rem 1rem; font-size: .82rem; }
.btn-lg { padding: .95rem 1.65rem; font-size: .98rem; }

/* ── Hero ── */
.hero--pro {
  position: relative; padding: 4.5rem 0 5rem;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, #162f4f 100%);
  color: var(--white); overflow: hidden;
}
.hero--video { background: var(--navy-950); }
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__video {
  position: absolute; inset: 0; overflow: hidden;
}
.hero__video-el {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  transform: scale(1.02);
}
.hero__video-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 16, 24, 0.92) 0%, rgba(7, 16, 24, 0.78) 42%, rgba(12, 26, 46, 0.55) 100%),
    linear-gradient(180deg, rgba(7, 16, 24, 0.35) 0%, rgba(7, 16, 24, 0.65) 100%);
}
.hero__layout { position: relative; z-index: 1; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero__glow--1 { width: 400px; height: 400px; top: -100px; right: 10%; background: rgba(196,160,53,.18); }
.hero__glow--2 { width: 300px; height: 300px; bottom: -50px; left: 5%; background: rgba(80,130,200,.15); }

.hero__layout {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .9rem; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 1.25rem; color: var(--gold-300);
}
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 600; line-height: 1.06; margin: 0 0 1.25rem;
  letter-spacing: -.01em;
}
.hero__lead { font-size: 1.08rem; max-width: 52ch; opacity: .88; margin-bottom: 2rem; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.hero__trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; opacity: .75; font-weight: 500;
}
.hero__trust-item i { color: var(--gold-400); }

.hero-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: calc(var(--radius) + 8px);
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.hero-panel__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .85rem; font-weight: 700;
}
.hero-panel__head em { font-style: normal; color: var(--gold-300); font-size: .75rem; }
.hero-panel__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-bottom: 1.25rem;
}
.hero-panel__stats div {
  text-align: center; padding: .85rem .5rem;
  background: rgba(255,255,255,.05); border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.08);
}
.hero-panel__stats strong { display: block; font-size: 1.35rem; color: var(--gold-300); }
.hero-panel__stats span { font-size: .7rem; opacity: .7; text-transform: uppercase; letter-spacing: .04em; }
.hero-panel__steps { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.hero-panel__steps li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .65rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04);
}
.hero-panel__step-num {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: var(--gold-500); color: var(--navy-950);
  font-size: .75rem; font-weight: 800; display: grid; place-items: center;
}
.hero-panel__steps strong { display: block; font-size: .82rem; margin-bottom: .1rem; }
.hero-panel__steps small { font-size: .72rem; opacity: .65; line-height: 1.35; }

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  box-shadow: var(--shadow-sm);
}
.trust-strip__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.trust-strip__item {
  display: flex; align-items: center; gap: .65rem;
  font-size: .82rem; font-weight: 600; color: var(--navy-800);
}
.trust-strip__item i {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--cream); color: var(--gold-600);
  display: grid; place-items: center; flex-shrink: 0;
}

/* ── Page hero ── */
.page-hero, .service-hero {
  position: relative; padding: 4rem 0 3.5rem;
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white); overflow: hidden;
}
.page-hero__bg, .service-hero .page-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(196,160,53,.14), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(100,150,220,.1), transparent 35%);
}
.page-hero__inner { position: relative; }
.page-hero h1, .service-hero h1 {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; margin: 0 0 .85rem; line-height: 1.1;
}
.page-hero-lead { font-size: 1.05rem; max-width: 62ch; opacity: .9; margin-bottom: 1.5rem; line-height: 1.7; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.page-hero .btn-outline,
.service-hero .btn-outline {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.page-hero .btn-outline:hover,
.service-hero .btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy-900);
}
.breadcrumb ol { list-style: none; padding: 0; margin: 0 0 1.25rem; display: flex; flex-wrap: wrap; gap: .5rem; font-size: .82rem; opacity: .75; }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: .5rem; opacity: .5; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.service-hero__badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .8rem; border-radius: 999px;
  background: rgba(196,160,53,.18); border: 1px solid rgba(196,160,53,.3);
  color: var(--gold-300); font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem;
}

/* ── Sections ── */
.section { padding: 5rem 0; }
.section--pro { padding: 5.5rem 0; }
.section--alt {
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--dark {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}
.section--dark .section-badge { color: var(--gold-300); }
.section--dark .section-header h2 { color: var(--white); }
.section--dark .section-desc { color: rgba(255,255,255,.7); }
.section--cta {
  background: linear-gradient(180deg, var(--cream), var(--surface));
  border-top: 1px solid var(--border);
}
.section-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--gold-600); font-weight: 800;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .65rem;
}
.section-badge--light { color: var(--gold-300); }
.section-header { margin-bottom: 2.5rem; max-width: 720px; }
.section-header h2 {
  font-family: var(--font-serif); font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 600; margin: 0 0 .65rem; color: var(--navy-900); line-height: 1.12;
  letter-spacing: -.01em;
}
.section-desc { color: var(--muted); margin: 0; font-size: 1.02rem; line-height: 1.7; }
.lead { font-size: 1.12rem; color: var(--muted); line-height: 1.75; }
.text-center { text-align: center; }
.content-block h2 {
  font-family: var(--font-serif); font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy-900); margin: 0 0 1rem;
}

.split-section {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: start;
}

/* ── About page ── */
.about-checklist {
  list-style: none; margin: 1.25rem 0 0; padding: 0;
  display: grid; gap: .55rem;
}
.about-checklist li {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 600; font-size: .92rem; color: var(--navy-800);
}
.about-checklist i { color: var(--gold-600); font-size: .85rem; }
.about-checklist--light li { color: rgba(255,255,255,.88); }
.about-checklist--light i { color: var(--gold-400); }
.about-panel {
  background: linear-gradient(165deg, var(--navy-950) 0%, var(--navy-800) 55%, #1a3354 100%);
  color: var(--white); border-radius: calc(var(--radius) + 6px);
  padding: 2rem; border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
}
.about-panel__label {
  display: inline-block; font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; color: var(--gold-300); margin-bottom: .5rem;
}
.about-panel h3 { margin: 0 0 .65rem; font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; }
.about-panel > p { margin: 0; opacity: .82; font-size: .92rem; line-height: 1.65; }
.about-panel__stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-top: 1.5rem;
}
.about-panel__stats div {
  text-align: center; padding: 1rem .75rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
}
.about-panel__stats strong { display: block; font-size: 1.6rem; color: var(--gold-300); line-height: 1.1; }
.about-panel__stats span { font-size: .72rem; opacity: .7; font-weight: 600; }
.mission-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.mission-card {
  padding: 1.75rem; border-radius: calc(var(--radius) + 2px);
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mission-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,162,39,.18), rgba(201,162,39,.06));
  color: var(--gold-600); display: grid; place-items: center; margin-bottom: 1rem;
}
.mission-card h3 { margin: 0 0 .5rem; font-size: 1.1rem; color: var(--navy-900); }
.mission-card p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.65; }
.about-timeline {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: calc(var(--radius) + 4px); padding: 1.5rem;
}
.about-timeline h3 { margin: 0 0 1rem; font-size: 1rem; color: var(--gold-300); }
.about-timeline__item {
  display: flex; gap: .85rem; padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.about-timeline__item:last-of-type { border-bottom: 0; }
.about-timeline__item > span {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  background: rgba(201,162,39,.2); color: var(--gold-300);
  display: grid; place-items: center; font-size: .75rem; font-weight: 800;
}
.about-timeline__item strong { display: block; font-size: .88rem; color: var(--white); margin-bottom: .15rem; }
.about-timeline__item p { margin: 0; font-size: .8rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.about-timeline__link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .75rem; font-size: .82rem; font-weight: 700; color: var(--gold-300);
}
.about-timeline__link:hover { color: var(--gold-200); }
.about-contact-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 2rem 2.25rem; border-radius: calc(var(--radius) + 6px);
  background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow);
}
.about-contact-strip h2 {
  font-family: var(--font-serif); font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin: .35rem 0 .5rem; color: var(--navy-900);
}
.about-contact-strip p { margin: 0; color: var(--muted); max-width: 48ch; line-height: 1.65; }
.about-contact-strip__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── Service cards ── */
.service-card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem;
}
.service-card {
  position: relative;
  background: linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .85rem;
  transition: transform var(--duration-slow) var(--ease-out), box-shadow var(--duration) var(--ease-smooth), border-color var(--duration) var(--ease-smooth);
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  opacity: 0; transition: opacity .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(196,160,53,.25);
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(145deg, var(--navy-800), var(--navy-700));
  color: var(--gold-300); display: grid; place-items: center; font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(11,24,41,.15);
}
.service-card__badge {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  color: var(--gold-600); letter-spacing: .08em;
}
.service-card h2, .service-card h3 { margin: 0; font-size: 1.15rem; line-height: 1.35; }
.service-card h2 a, .service-card h3 a { color: var(--navy-900); }
.service-card h2 a:hover, .service-card h3 a:hover { color: var(--gold-600); }
.service-card p { margin: 0; color: var(--muted); font-size: .92rem; flex: 1; line-height: 1.65; }
.service-card__steps {
  margin: 0; padding: 0; list-style: none;
  display: grid; gap: .4rem; font-size: .8rem; color: var(--muted);
}
.service-card__steps li {
  padding-left: 1rem; position: relative;
}
.service-card__steps li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500);
}
.service-card__meta { display: flex; gap: 1rem; font-size: .78rem; color: var(--gold-600); font-weight: 700; }
.service-card__link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-size: .88rem; color: var(--navy-800); margin-top: .25rem;
}
.service-card__link:hover { color: var(--gold-600); gap: .65rem; }
.service-card--large { padding: 2rem; }

/* Feature cards */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--cream); color: var(--gold-600);
  display: grid; place-items: center; font-size: 1.15rem; margin-bottom: 1rem;
}
.feature-card h3 { margin: 0 0 .5rem; font-size: 1.05rem; color: var(--navy-900); }
.feature-card p { margin: 0; font-size: .9rem; color: var(--muted); line-height: 1.6; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.35rem;
  transition: box-shadow .25s;
}
.card:hover { box-shadow: var(--shadow-sm); }
.card h3 { margin: 0 0 .5rem; font-size: 1rem; color: var(--navy-900); }
.card p { margin: 0; font-size: .9rem; color: var(--muted); }
.card--simple {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.25rem;
}
.card--simple::before {
  content: '◆'; color: var(--gold-500); font-size: .6rem; flex-shrink: 0;
}
.card--simple p { margin: 0; font-weight: 600; font-size: .9rem; color: var(--navy-800); }

/* Lists & process */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.check-list li {
  padding: 1rem 1.15rem 1rem 3rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); position: relative;
  font-size: .95rem; line-height: 1.55;
  transition: border-color .2s, box-shadow .2s;
}
.check-list li:hover { border-color: rgba(196,160,53,.3); box-shadow: var(--shadow-sm); }
.check-list li::before {
  content: '✓'; position: absolute; left: 1rem; top: 1rem;
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--cream); color: var(--gold-600);
  font-weight: 800; font-size: .75rem;
  display: grid; place-items: center;
}
.check-list--gold li { border-color: rgba(196,160,53,.2); background: rgba(196,160,53,.04); }

.pill-grid { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill {
  padding: .55rem 1rem; border-radius: 999px;
  background: var(--navy-800); color: var(--white); font-size: .84rem; font-weight: 600;
}
.pill--outline { background: var(--white); border: 1px solid var(--border); color: var(--navy-800); }

.process-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.process-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.15rem 1.25rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s;
}
.process-list li:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.process-list__num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950); font-weight: 800; font-size: .9rem;
  display: grid; place-items: center;
}

.process-timeline { display: grid; gap: .85rem; }
.process-timeline--compact .process-timeline__item {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1);
}
.process-timeline--compact .process-timeline__item h3 { color: var(--white); }
.process-timeline--compact .process-timeline__item p { color: rgba(255,255,255,.65); }
.process-timeline--compact .process-timeline__num {
  background: rgba(196,160,53,.2); color: var(--gold-300); border: 1px solid rgba(196,160,53,.3);
}
.process-timeline__item {
  display: flex; gap: 1rem; padding: 1.15rem 1.25rem;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  transition: box-shadow .25s;
}
.process-timeline__item:hover { box-shadow: var(--shadow-sm); }
.process-timeline__num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy-800); color: var(--gold-300); font-weight: 800;
  display: grid; place-items: center; font-size: .95rem;
}
.process-timeline__item h2, .process-timeline__item h3 { margin: 0 0 .3rem; font-size: 1rem; color: var(--navy-900); }
.process-timeline__item p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }

.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.related-card {
  display: block; padding: 1.35rem; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--white);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(196,160,53,.3); }
.related-card strong { display: block; color: var(--navy-900); margin-bottom: .35rem; font-size: .95rem; }
.related-card span { display: block; font-size: .88rem; color: var(--muted); margin-bottom: .65rem; line-height: 1.5; }
.related-card em { font-style: normal; font-size: .82rem; color: var(--gold-600); font-weight: 700; }

/* ── Forms ── */
.form-wrap { position: relative; width: 100%; max-width: 100%; min-width: 0; }
.app-form { background: transparent; border: 0; padding: 0; box-shadow: none; width: 100%; max-width: 100%; min-width: 0; }
.app-form--premium .form-grid,
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; margin-bottom: 1.5rem; width: 100%; min-width: 0; }
.form-group { display: flex; flex-direction: column; gap: .45rem; min-width: 0; }
.form-group--full { grid-column: 1 / -1; }
.form-group label { font-weight: 700; font-size: .84rem; color: var(--navy-800); }
.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  width: 100%; max-width: 100%; min-width: 0;
  padding: .85rem 1.05rem; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  font: inherit; background: var(--ivory);
  transition: border-color var(--duration) var(--ease-smooth), box-shadow var(--duration) var(--ease-smooth), background var(--duration) var(--ease-smooth);
}
.form-group input[type="date"] { min-height: 48px; }
.form-group select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a6778' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.app-form [data-submit-btn] { max-width: 100%; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #9aa5b5; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, .14); background: var(--white);
}
.form-service-tag {
  display: flex; align-items: center; gap: .65rem; padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(201,162,39,.1), rgba(201,162,39,.04));
  border: 1px solid rgba(201,162,39,.25); font-size: .9rem;
}
.form-service-tag i { color: var(--gold-600); }
.form-file { position: relative; }
.form-file input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.form-file__label {
  display: flex; align-items: center; justify-content: center; gap: .65rem;
  padding: 1.25rem; border: 2px dashed var(--border-strong); border-radius: var(--radius-sm);
  background: var(--ivory); color: var(--muted); font-size: .88rem; font-weight: 600;
}
.form-file:hover .form-file__label { border-color: var(--gold-500); background: rgba(201,162,39,.05); }
.btn__loading { display: none; align-items: center; gap: .4rem; }
.btn__loading:not([hidden]) { display: inline-flex; }
.btn__text[hidden],
.btn__icon[hidden],
.btn__loading[hidden] { display: none !important; }
[data-submit-btn]:disabled { opacity: .75; cursor: not-allowed; transform: none !important; }
.req { color: #c53030; }
.checkbox-label {
  display: flex; gap: .75rem; align-items: flex-start; width: 100%;
  font-weight: 500; cursor: pointer; font-size: .86rem; color: var(--muted); line-height: 1.55;
}
.checkbox-label--card { padding: 1rem 1.1rem; border-radius: var(--radius-sm); background: var(--ivory); border: 1px solid var(--border); }
.checkbox-label input[type="checkbox"] {
  width: 1.1rem; height: 1.1rem; min-width: 1.1rem; max-width: 1.1rem;
  margin-top: .15rem; padding: 0; flex-shrink: 0; accent-color: var(--gold-600);
}
.checkbox-label span { flex: 1; min-width: 0; }

.alert { padding: 1rem 1.15rem; border-radius: var(--radius-sm); margin-bottom: 1.25rem; font-weight: 600; font-size: .9rem; }
.alert--success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert--error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.contact-layout { display: grid; grid-template-columns: 340px 1fr; gap: 2.5rem; align-items: start; }
.contact-layout .contact-info,
.contact-layout .contact-form-area { opacity: 1; transform: none; }
.contact-info {
  background: linear-gradient(165deg, var(--navy-950) 0%, var(--navy-800) 55%, #1a3354 100%);
  color: var(--white); padding: 2.25rem; border-radius: calc(var(--radius) + 4px);
  position: sticky; top: calc(var(--header-h) + 48px);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
}
.contact-info h2 { margin: 0 0 .75rem; color: var(--white); font-family: var(--font-serif); font-weight: 600; font-size: 1.85rem; }
.contact-info__lead { margin: 0 0 1.5rem; opacity: .82; font-size: .92rem; line-height: 1.65; }
.contact-info__cards { list-style: none; margin: 0 0 1.75rem; padding: 0; display: grid; gap: .85rem; }
.contact-info__cards li {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: .9rem 1rem; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
}
.contact-info__cards i { color: var(--gold-400); font-size: 1rem; margin-top: .15rem; }
.contact-info__cards strong { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; opacity: .65; margin-bottom: .2rem; }
.contact-info__cards a, .contact-info__cards span { color: rgba(255,255,255,.92); font-size: .9rem; font-weight: 600; }
.contact-info__cards a:hover { color: var(--gold-300); }
.contact-form-area {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
}
.contact-form-area__head .section-header { margin-bottom: 1.5rem; }
.contact-info .contact-list a { color: var(--gold-300); }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list--block li { margin-bottom: 1.25rem; }
.contact-list--block strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; opacity: .6; margin-bottom: .25rem; }

/* Premium CTA */
.cta-premium {
  position: relative; padding: 4.5rem 0; overflow: hidden;
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800) 55%, #1a3354);
  color: var(--white);
}
.cta-premium__bg { position: absolute; inset: 0; pointer-events: none; }
.cta-premium__glow {
  position: absolute; border-radius: 50%; filter: blur(90px);
  animation: ctaGlow 8s var(--ease-smooth) infinite alternate;
}
.cta-premium__glow--1 { width: 420px; height: 420px; top: -120px; right: 5%; background: rgba(196,160,53,.22); }
.cta-premium__glow--2 { width: 320px; height: 320px; bottom: -80px; left: 8%; background: rgba(100,150,220,.12); animation-delay: -3s; }
@keyframes ctaGlow {
  from { transform: translate(0, 0) scale(1); opacity: .85; }
  to { transform: translate(12px, -8px) scale(1.08); opacity: 1; }
}
.cta-premium__inner {
  position: relative;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 2.5rem; align-items: center;
}
.cta-premium__badge {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .4rem .85rem; border-radius: 999px;
  background: rgba(196,160,53,.15); border: 1px solid rgba(196,160,53,.35);
  color: var(--gold-300); font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem;
}
.cta-premium__content h2 {
  font-family: var(--font-serif); font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 600; line-height: 1.1; margin: 0 0 .85rem; letter-spacing: -.01em;
}
.cta-premium__content p { margin: 0 0 1.25rem; opacity: .88; max-width: 52ch; line-height: 1.7; font-size: 1.02rem; }
.cta-premium__features {
  list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem;
}
.cta-premium__features li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; font-weight: 600; opacity: .9;
}
.cta-premium__features i { color: var(--gold-400); font-size: .85rem; }
.cta-premium__panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.75rem;
  backdrop-filter: blur(16px);
  display: grid; gap: .85rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
  transition: transform var(--duration-slow) var(--ease-out), box-shadow var(--duration) var(--ease-smooth);
}
.cta-premium:hover .cta-premium__panel { transform: translateY(-4px); box-shadow: 0 28px 60px rgba(0,0,0,.28); }
.cta-premium__panel-label {
  margin: 0; font-size: .78rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold-300); opacity: .9;
}
.cta-premium__panel .btn { width: 100%; justify-content: center; }
.cta-premium__note {
  margin: .25rem 0 0; text-align: center; font-size: .78rem; opacity: .65; font-weight: 600;
}
.cta-premium__note i { margin-right: .35rem; color: var(--gold-400); }

/* ── Footer ── */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.8); }
.site-footer__cta {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 3.5rem 0;
}
.site-footer__cta-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem;
}
.site-footer__cta h2 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem); margin: .5rem 0; color: var(--white);
}
.site-footer__cta p { margin: 0; opacity: .8; max-width: 48ch; }
.site-footer__cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.site-footer__grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}
.site-footer__brand p { font-size: .9rem; line-height: 1.7; opacity: .75; max-width: 36ch; margin: 0 0 1.25rem; }
.site-footer__contact { display: grid; gap: .5rem; }
.site-footer__contact a { color: rgba(255,255,255,.8); font-size: .88rem; }
.site-footer__contact a:hover { color: var(--gold-300); }
.site-footer__contact i { width: 1.25rem; color: var(--gold-400); }
.site-footer h4 {
  color: var(--gold-300); margin: 0 0 1.15rem; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .1em; font-weight: 800;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a:not(.btn) { color: rgba(255,255,255,.72); font-size: .88rem; }
.site-footer a:not(.btn):hover { color: var(--gold-300); }
.site-footer__cta-actions .btn-cta-primary,
.site-footer__cta-actions .btn-cta-primary:hover { color: var(--navy-950); }
.site-footer__cta-actions .btn-cta-secondary,
.site-footer__cta-actions .btn-cta-secondary:hover { color: var(--navy-900); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.site-footer__bottom-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem;
  font-size: .82rem; opacity: .55;
}
.site-footer__trust {
  border-top: 1px solid rgba(201,162,39,.12);
  padding: 1.35rem 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.28));
}
.footer-trust-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem;
}
.footer-trust-badge {
  display: flex; align-items: center; gap: .7rem;
  padding: .8rem .85rem; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  min-height: 64px;
}
.footer-trust-badge__icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 10px;
  background: rgba(201,162,39,.14); border: 1px solid rgba(201,162,39,.22);
  color: var(--gold-400); display: grid; place-items: center; font-size: .9rem;
}
.footer-trust-badge__text { display: flex; flex-direction: column; gap: .12rem; min-width: 0; }
.footer-trust-badge__text strong { font-size: .8rem; font-weight: 800; color: rgba(255,255,255,.92); line-height: 1.2; }
.footer-trust-badge__text small { font-size: .67rem; font-weight: 500; color: rgba(255,255,255,.5); line-height: 1.3; }
@media (min-width: 768px) {
  .footer-trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .85rem; }
  .footer-trust-badge { padding: .9rem 1rem; }
}

.utility-bar__secure { color: rgba(255,255,255,.85); font-weight: 600; }
.utility-bar__secure i { color: var(--gold-400); }

.trust-bar {
  background: linear-gradient(180deg, #0a1520, var(--navy-950));
  border-bottom: 1px solid rgba(201,162,39,.18);
}
.trust-bar__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust-bar__item {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .65rem .75rem;
  border-right: 1px solid rgba(255,255,255,.06);
  min-height: 44px;
}
.trust-bar__item:last-child { border-right: 0; }
.trust-bar__icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  background: rgba(201,162,39,.12); border: 1px solid rgba(201,162,39,.22);
  color: var(--gold-400); display: grid; place-items: center; font-size: .68rem;
}
.trust-bar__label {
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: rgba(255,255,255,.78); line-height: 1.25;
}

.form-security-note {
  display: flex; align-items: flex-start; gap: .65rem;
  margin: 0 0 1rem; padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(201,162,39,.08); border: 1px solid rgba(201,162,39,.2);
  font-size: .82rem; color: var(--muted); line-height: 1.55;
}
.form-security-note i { color: var(--gold-600); margin-top: .15rem; flex-shrink: 0; }
.form-security-note strong { color: var(--navy-800); }
.form-honeypot {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none;
}

.security-trust__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.15rem;
}
.security-trust__card {
  padding: 1.5rem 1.35rem; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--white);
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.security-trust__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.security-trust__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,162,39,.18), rgba(201,162,39,.06));
  color: var(--gold-600); display: grid; place-items: center; margin-bottom: .85rem;
}
.security-trust__card h3 { margin: 0 0 .5rem; font-size: 1rem; color: var(--navy-900); }
.security-trust__card p { margin: 0; font-size: .88rem; color: var(--muted); line-height: 1.6; }
.security-trust__legal {
  margin-top: 2rem; font-size: .88rem; color: var(--muted); font-weight: 600;
}
.security-trust__legal a { color: var(--gold-600); font-weight: 700; }
.security-trust__legal i { margin-right: .3rem; }

.legal-content--wide { max-width: 820px; }
.legal-meta {
  font-size: .86rem; color: var(--muted); margin: 0 0 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.legal-meta a { font-weight: 700; color: var(--gold-600); }
.legal-content h2 {
  font-family: var(--font-serif); font-size: 1.35rem; color: var(--navy-900);
  margin: 2rem 0 .75rem;
}
.legal-content h3 {
  font-size: 1.05rem; color: var(--navy-800); margin: 1.5rem 0 .65rem;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--muted); line-height: 1.75; }
.legal-content ul,
.legal-content ol { padding-left: 1.25rem; line-height: 1.75; color: var(--muted); margin: 0 0 1rem; }
.legal-content li { margin-bottom: .35rem; }
.legal-info-list {
  list-style: none; padding: 1rem 1.15rem; margin: 0 0 1rem;
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.legal-info-list li { margin-bottom: .45rem; color: var(--navy-800); font-size: .92rem; }
.legal-info-list li:last-child { margin-bottom: 0; }
.legal-table {
  width: 100%; border-collapse: collapse; margin: 0 0 1.25rem;
  font-size: .88rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
}
.legal-table th,
.legal-table td {
  padding: .75rem .9rem; text-align: left; border-bottom: 1px solid var(--border);
  vertical-align: top; color: var(--muted);
}
.legal-table th {
  background: var(--cream); color: var(--navy-800); font-weight: 700; font-size: .8rem;
}
.legal-table tr:last-child td { border-bottom: 0; }
@media (max-width: 600px) {
  .legal-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 190;
  padding: .85rem 1rem calc(.85rem + env(safe-area-inset-bottom));
  background: rgba(7,16,24,.94); color: rgba(255,255,255,.9);
  border-top: 1px solid rgba(255,255,255,.1);
  transform: translateY(110%); transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  width: min(1200px, 94%); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem;
}
.cookie-banner p { margin: 0; font-size: .84rem; line-height: 1.55; max-width: 62ch; }
.cookie-banner a { color: var(--gold-300); font-weight: 700; }
.cookie-banner i { color: var(--gold-400); margin-right: .35rem; }
.site-footer__bottom p { margin: 0; }

.legal-content p { color: var(--muted); line-height: 1.75; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; }
  .split-section { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .about-contact-strip { flex-direction: column; text-align: center; padding: 1.5rem 1.25rem; }
  .about-contact-strip p { margin-left: auto; margin-right: auto; }
  .about-contact-strip__actions { width: 100%; justify-content: center; }
  .about-contact-strip__actions .btn { width: 100%; justify-content: center; }
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .utility-bar__right { display: none; }
  .utility-bar__secure { display: none; }
  .trust-bar { display: none; }
  .site-header__inner { position: relative; }
  .site-nav { display: none !important; }
  .dropdown-panel { display: none !important; }
  .has-dropdown.is-open .dropdown-panel { display: none !important; }
  .menu-toggle {
    display: flex !important;
    position: relative;
    z-index: 10001;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
  }
  .menu-toggle span { transition: transform 0.25s ease, opacity 0.2s ease; }
  .menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .contact-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-info { position: static; padding: 1.5rem; }
  .contact-info .btn { width: 100%; white-space: normal; text-align: center; }
  .contact-form-area { padding: 1.25rem 1rem; overflow: hidden; }
  .contact-form-area__head .section-header { margin-bottom: 1rem; }
  .form-grid { grid-template-columns: 1fr; gap: .9rem; margin-bottom: 1.25rem; }
  .app-form [data-submit-btn] { width: 100%; white-space: normal; justify-content: center; }
  .form-service-tag { flex-wrap: wrap; }
  .form-service-tag span { overflow-wrap: anywhere; word-break: break-word; }
  .checkbox-label--card { padding: .85rem .9rem; }
  .form-file__label { padding: 1rem .75rem; flex-wrap: wrap; text-align: center; }
  .cta-premium__inner { grid-template-columns: 1fr; text-align: center; }
  .cta-premium__content p { margin-left: auto; margin-right: auto; }
  .cta-premium__features { justify-items: center; }
  .site-footer__cta-inner { flex-direction: column; text-align: center; }
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ── Mobile menu (mmenu) — built into style.css ── */
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  visibility: hidden;
}

.mmenu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mmenu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 24, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mmenu.is-open .mmenu__overlay {
  opacity: 1;
}

.mmenu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 360px);
  height: 100%;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.mmenu.is-open .mmenu__panel {
  transform: translateX(0);
}

.mmenu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.mmenu__title {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.mmenu__close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.mmenu__nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mmenu__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  touch-action: manipulation;
}

.mmenu__item i:first-child {
  width: 20px;
  text-align: center;
  color: var(--gold-400);
  font-size: 0.9rem;
}

.mmenu__item.is-active {
  background: rgba(201, 162, 39, 0.14);
  border-color: rgba(201, 162, 39, 0.28);
  color: var(--white);
}

.mmenu__item--toggle {
  justify-content: flex-start;
}

.mmenu__chev {
  margin-left: auto;
  font-size: 0.7rem;
  opacity: 0.6;
  transition: transform 0.25s ease;
}

.mmenu__item--toggle.is-open .mmenu__chev {
  transform: rotate(180deg);
}

.mmenu__sub {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.35rem 0 0.5rem 0.5rem;
}

.mmenu__sub-item {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.35;
  background: rgba(0, 0, 0, 0.15);
  touch-action: manipulation;
}

.mmenu__sub-item:active {
  background: rgba(201, 162, 39, 0.12);
}

.mmenu__sub-all {
  display: block;
  margin-top: 0.25rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold-300);
  text-decoration: none;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.mmenu__contact {
  flex-shrink: 0;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.5rem;
}

.mmenu__contact a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.mmenu__contact i {
  color: var(--gold-400);
  width: 16px;
  text-align: center;
}

.mmenu__actions {
  flex-shrink: 0;
  padding: 0.85rem 1rem calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.55rem;
  background: rgba(7, 16, 24, 0.6);
}

.mmenu__btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

body.mmenu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

body.mmenu-open .floating-cta {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

@media (min-width: 901px) {
  .mmenu { display: none !important; }
}

@media (max-width: 600px) {
  .container, .container--narrow { width: min(1200px, 94%); }
  .trust-strip__inner { grid-template-columns: 1fr; }
  .hero--pro { padding: 3rem 0 3.5rem; }
  .section, .section--pro { padding: 3.5rem 0; }
  .contact-form-area { padding: 1rem .85rem; }
  .contact-info { padding: 1.25rem; }
  .section-desc { font-size: .95rem; }
  .form-group input:not([type="checkbox"]):not([type="radio"]),
  .form-group select,
  .form-group textarea { padding: .8rem .9rem; font-size: 16px; }
}
