:root {
  --bg: #f5f3ee;
  --surface: #ffffff;
  --surface-soft: #f9f7f2;
  --text: #121419;
  --muted: #5c636f;
  --line: rgba(18, 20, 25, 0.1);
  --gold: #c59d2a;
  --gold-dark: #8e6a09;
  --dark: #0f1217;
  --dark-soft: #171c24;
  --shadow: 0 18px 50px rgba(15, 18, 23, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, li { color: var(--muted); }
.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}
.section {
  padding: 88px 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 243, 238, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand img {
  width: 310px;
  max-width: 48vw;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 14px;
}
.main-nav a {
  padding: 8px 0;
  color: var(--text);
  opacity: 0.84;
}
.main-nav a:hover { color: var(--gold-dark); opacity: 1; }
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 48px;
  background:
    radial-gradient(circle at top left, rgba(197, 157, 42, 0.16), transparent 38%),
    linear-gradient(180deg, #fbfaf7 0%, #f4f1ea 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -120px auto;
  width: 340px;
  height: 340px;
  background: rgba(197, 157, 42, 0.10);
  filter: blur(10px);
  border-radius: 50%;
}
.hero-grid,
.split-grid,
.footer-grid {
  display: grid;
  gap: 40px;
}
.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(197, 157, 42, 0.12);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.eyebrow-light {
  background: rgba(255, 255, 255, 0.1);
  color: #ffe09a;
}
.hero h1,
.section-heading h2,
.split-copy h2 {
  margin: 18px 0 16px;
  color: var(--text);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.95rem);
  max-width: 13ch;
}
.lead {
  font-size: 1.08rem;
  color: #333b46;
}
.hero-actions,
.button-row,
.hero-points,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-actions { margin-top: 30px; }
.hero-points {
  margin-top: 28px;
  gap: 12px;
}
.hero-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 20, 25, 0.08);
  font-size: 14px;
  color: #39414c;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: #131313;
  box-shadow: 0 14px 30px rgba(197, 157, 42, 0.22);
}
.btn-primary:hover { background: #d7aa2e; }
.btn-secondary {
  background: transparent;
  border-color: rgba(18, 20, 25, 0.18);
}
.btn-secondary:hover { border-color: rgba(18, 20, 25, 0.34); }
.visual-card,
.large-image-frame,
.objective-card {
  position: relative;
  background: linear-gradient(180deg, #fff, #f2ece0);
  border-radius: var(--radius-xl);
  padding: 16px;
  box-shadow: var(--shadow);
}
.visual-card::before,
.large-image-frame::before,
.objective-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius-xl) - 6px);
  border: 1px solid rgba(197, 157, 42, 0.22);
  pointer-events: none;
}
.visual-card img,
.large-image-frame img,
.objective-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.visual-card { min-height: 560px; }
.stats-strip {
  padding: 0 0 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stats-grid article {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(18, 20, 25, 0.06);
}
.stats-grid strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.section-heading {
  max-width: 840px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-heading.left-align {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.section-heading h2,
.split-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}
.cards-grid {
  display: grid;
  gap: 22px;
}
.cards-5 { grid-template-columns: repeat(5, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.service-card,
.process-card,
.legal-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid rgba(18, 20, 25, 0.06);
  box-shadow: var(--shadow);
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.service-card-alt { background: linear-gradient(180deg, #fff, #fbf8f0); }
.card-icon,
.step-icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 18px;
}
.service-card h3,
.process-card h3,
.legal-card h3,
.feature-list h3,
.site-footer h4 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--text);
}
.service-card p,
.process-card p,
.legal-card p { margin: 0 0 18px; }
.service-card a {
  margin-top: auto;
  font-weight: 700;
  color: var(--gold-dark);
}
.service-card a:hover,
.site-footer a:hover,
.footer-contact-link:hover { color: var(--gold); }
.split-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}
.check-list,
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(197, 157, 42, 0.18);
}
.alt-bg { background: linear-gradient(180deg, #faf7ef 0%, #f2ede2 100%); }
.process-section .section-heading { max-width: 760px; }
.process-card {
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f8f6f1);
}
.step-icon { margin: 0 auto 18px; }
.centered-cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.commitment-grid {
  grid-template-columns: 1fr 0.9fr;
}
.feature-list {
  display: grid;
  gap: 16px;
  margin: 22px 0 28px;
}
.feature-list article {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(18, 20, 25, 0.06);
  box-shadow: var(--shadow);
}
.objective-card {
  min-height: 580px;
}
.objective-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 14px 32px rgba(15, 18, 23, 0.18);
  z-index: 2;
}
.objective-badge img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}
.legal-section {
  background: linear-gradient(180deg, #10141c 0%, #141924 100%);
}
.light-text h2,
.light-text p,
.legal-card h3,
.legal-card p,
.legal-section .section-heading p,
.site-footer,
.site-footer p,
.site-footer li,
.site-footer h4,
.site-footer a {
  color: #edf0f4;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.legal-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}
.legal-card.full-width { grid-column: 1 / -1; }
.emphasis-card {
  background: linear-gradient(180deg, rgba(197, 157, 42, 0.14), rgba(197, 157, 42, 0.08));
  border-color: rgba(255, 224, 154, 0.2);
}
.site-footer {
  background: #0c1016;
  padding: 34px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 32px;
  padding-bottom: 26px;
}
.footer-branding img {
  width: 220px;
  margin-bottom: 18px;
}
.site-footer ul {
  display: grid;
  gap: 10px;
}
.footer-contact-link {
  display: inline-flex;
  margin-top: 14px;
  color: #ffe09a;
  font-weight: 700;
}
.footer-bottom {
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 1180px) {
  .cards-5 { grid-template-columns: repeat(3, 1fr); }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .header-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-grid,
  .split-grid,
  .commitment-grid,
  .footer-grid,
  .stats-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .cards-5,
  .cards-4,
  .cards-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand img { width: 280px; max-width: 100%; }
  .visual-card,
  .objective-card { min-height: 420px; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 40px; }
  .main-nav { gap: 6px 14px; font-size: 13px; }
  .cards-5,
  .cards-4,
  .cards-3,
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .process-card,
  .legal-card,
  .stats-grid article,
  .feature-list article { padding: 22px; }
  .hero h1 { max-width: none; }
  .visual-card,
  .objective-card { min-height: 320px; }
  .objective-badge {
    width: 92px;
    height: 92px;
  }
}
