@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --white: #ffffff;
  --bg: #f7f8fa;
  --bg-warm: #faf9f7;
  --surface: #ffffff;
  --text: #0a1628;
  --text-secondary: #3d4f66;
  --text-muted: #6b7c93;
  --border: #e2e8f0;
  --border-light: #eef2f7;
  --accent: #0a1628;
  --accent-mid: #152238;
  --accent-soft: #eef2f8;
  --gold: #b8963e;
  --gold-light: #d4b56a;
  --gold-soft: rgba(184, 150, 62, 0.1);
  --blue-soft: #f0f4fa;
  --shadow-xs: 0 1px 2px rgba(10, 22, 40, 0.04);
  --shadow-sm: 0 4px 20px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 40px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.12);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1200px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --header-h: 80px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.25s var(--ease);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--accent-mid); text-decoration: none; transition: color var(--transition); }
a:not(.btn):hover { color: var(--gold); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-xs);
  background: rgba(255, 255, 255, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo:hover { text-decoration: none; color: var(--text); }

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
  color: var(--text);
  transition: transform var(--transition);
}

.logo:hover .logo-mark { transform: scale(1.04); }

.logo-mark-lg {
  width: 52px;
  height: 52px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 0.125rem;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-sub {
  font-family: var(--font);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Legacy fallback — hidden when mark is present */
.logo-icon {
  display: none;
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-mid) 100%);
  color: var(--white);
  border-radius: var(--radius-sm);
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.2);
}

.main-nav { display: flex; align-items: center; gap: 0.125rem; }

.main-nav a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: var(--accent-soft);
  text-decoration: none;
}

.nav-actions { display: flex; gap: 0.625rem; margin-left: 1.5rem; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6875rem 1.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  font-family: inherit;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.15);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-mid);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.2);
}

.main-nav a.btn-primary,
.main-nav a.btn-primary:hover {
  color: #ffffff;
  background: var(--accent);
}

.main-nav a.btn-primary:hover {
  background: var(--accent-mid);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background: var(--white);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(184, 150, 62, 0.3);
}

.btn-gold:hover {
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184, 150, 62, 0.4);
}

.btn-lg { padding: 0.9375rem 2rem; font-size: 0.9375rem; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 1px;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  background: var(--white);
  padding: calc(var(--header-h) + 5rem) 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(184, 150, 62, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(10, 22, 40, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: var(--header-h);
  right: 0;
  width: 45%;
  height: calc(100% - var(--header-h));
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--bg-warm) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem 0.375rem 0.75rem;
  background: var(--gold-soft);
  border: 1px solid rgba(184, 150, 62, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 46ch;
  line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.875rem; align-items: center; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.hero-trust-item strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero-trust-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.hero-trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero visual panel */
.hero-panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.hero-panel-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.08);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.hero-mini-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.125rem;
  transition: all var(--transition);
  cursor: default;
}

.hero-mini-card:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.hero-mini-card.wide { grid-column: span 2; }

.hero-mini-card .icon-wrap {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.hero-mini-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-mini-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-mini-card .trend {
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
  margin-top: 0.5rem;
}

/* ─── Sections ─── */
.section { padding: 6rem 0; }
.section-white { background: var(--white); }
.section-alt { background: var(--bg); }
.section-warm { background: var(--bg-warm); }

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

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

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

/* ─── Cards ─── */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
  transform: translateY(-4px);
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
  transition: all var(--transition);
}

.card:hover .card-icon {
  background: var(--accent);
  color: var(--white);
}

.card-icon svg { width: 24px; height: 24px; }

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}

.card-link:hover {
  color: var(--gold);
  gap: 0.625rem;
  text-decoration: none;
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184, 150, 62, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.875rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* ─── Page Header ─── */
.page-header {
  background: var(--white);
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(184, 150, 62, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-header .container { position: relative; }

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 58ch;
  line-height: 1.7;
}

.breadcrumb {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }

/* ─── CEO Block ─── */
.ceo-block {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.ceo-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  position: relative;
}

.ceo-photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.3));
}

.ceo-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.ceo-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.ceo-info .role {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.ceo-info p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.75;
}

/* ─── Testimonials ─── */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-soft);
  color: rgba(184, 150, 62, 0.25);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  pointer-events: none;
}

.testimonial blockquote {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.75;
  font-style: normal;
  position: relative;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial cite strong {
  display: block;
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 600;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
  flex-shrink: 0;
}

.stars {
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 3px;
  font-size: 0.875rem;
}

/* ─── Forms ─── */
.form-page {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 3rem) 2rem 3rem;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(184, 150, 62, 0.05) 0%, transparent 60%),
    var(--bg);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3rem;
  width: 100%;
  max-width: 460px;
  box-shadow: var(--shadow-lg);
}

.form-card-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.form-card-logo .logo {
  flex-direction: column;
  gap: 0.875rem;
}

.form-card-logo .logo-mark,
.form-card-logo .logo-mark-lg {
  width: 52px;
  height: 52px;
}

.form-card-logo .logo-text {
  align-items: center;
}

.form-card h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  text-align: center;
}

.form-card .subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8125rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--bg);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10, 22, 40, 0.06);
}

.form-group input::placeholder { color: var(--text-muted); opacity: 0.6; }

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-footer {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-card .btn { width: 100%; margin-top: 0.75rem; padding: 0.875rem; }

.form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.form-divider::before,
.form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.checkbox-row input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--accent);
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-info-card h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-info-card > p {
  opacity: 0.75;
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.contact-info-item { margin-bottom: 1.75rem; }

.contact-info-item h3 {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-info-item p { font-size: 0.9375rem; line-height: 1.6; }

.contact-info-item a { color: var(--gold-light); }
.contact-info-item a:hover { color: var(--white); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
}

/* ─── Legal ─── */
.legal-content {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 820px;
  box-shadow: var(--shadow-xs);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  margin: 2.5rem 0 0.875rem;
  color: var(--text);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 0.875rem;
  line-height: 1.75;
}

.legal-content ul { padding-left: 1.25rem; margin-bottom: 1rem; }

/* ─── Trading ─── */
.trading-hero {
  background: linear-gradient(135deg, var(--accent) 0%, #1a3050 50%, var(--accent-mid) 100%);
  color: var(--white);
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}

.trading-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(184, 150, 62, 0.12) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.trading-hero .container { position: relative; }

.trading-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.trading-hero p {
  opacity: 0.8;
  font-size: 1.0625rem;
  max-width: 58ch;
  line-height: 1.75;
}

.trading-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.trading-hero .breadcrumb a:hover { color: var(--gold-light); }
.trading-hero .breadcrumb { color: rgba(255,255,255,0.5); }

.feature-list { list-style: none; padding: 0; }

.feature-list li {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  line-height: 1.5;
}

.feature-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--gold-soft);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23b8963e'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
}

.content-block h2:first-child { margin-top: 0; }

.content-block p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--accent);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 2rem;
}

.site-footer .logo-name { color: var(--white); }
.site-footer .logo-sub { color: var(--gold-light); }
.site-footer .logo-mark { color: rgba(255, 255, 255, 0.92); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  margin-top: 1rem;
  max-width: 30ch;
  line-height: 1.7;
  opacity: 0.7;
}

.footer-col h4 {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.625rem; }

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--white); text-decoration: none; }

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  opacity: 0.55;
}

.footer-legal-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-legal-links a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-legal-links a:hover { color: var(--white); }

.company-details {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 1rem;
  line-height: 1.7;
}

/* ─── Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Main offset for fixed header ─── */
main { padding-top: 0; }

body:not(.form-body) main > section:first-child:not(.hero):not(.trading-hero),
body:not(.form-body) main > .page-header:first-child {
  /* handled individually */
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero::after { display: none; }
  .hero-panel { max-width: 520px; }
}

@media (max-width: 900px) {
  .grid-3, .grid-2, .ceo-block, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust { flex-wrap: wrap; }
  .hero-trust-divider { display: none; }
  .cta-banner { padding: 3rem 2rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }

  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: 1.25rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-md);
  }

  .main-nav.open { display: flex; }

  .nav-actions {
    margin-left: 0;
    width: 100%;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
  }

  .nav-actions .btn { flex: 1; }

  .hero { padding-bottom: 3.5rem; }
  .section { padding: 4rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}
