:root {
  --navy: #0d1b2a;
  --navy-2: #12263a;
  --navy-3: #18344d;
  --gold: #c8a45d;
  --gold-light: #e3c984;
  --cream: #f6f2e9;
  --white: #fff;
  --ink: #17202a;
  --muted: #69727c;
  --line: rgba(13, 27, 42, .11);
  --shadow: 0 24px 70px rgba(13, 27, 42, .13);
  --radius: 24px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  background: rgba(13, 27, 42, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid rgba(227,201,132,.7); color: var(--gold-light);
  font-family: Georgia, serif; font-weight: 700; letter-spacing: .04em;
}
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-size: 13px; letter-spacing: .12em; }
.brand-text small { margin-top: 4px; color: rgba(255,255,255,.6); font-size: 8px; letter-spacing: .2em; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: rgba(255,255,255,.78); font-size: 13px; font-weight: 600; transition: color .2s ease; }
.nav-links a:hover { color: var(--gold-light); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 2px; margin: 5px; background: #fff; }

.hero {
  position: relative; overflow: hidden; min-height: 760px; padding: 180px 0 100px;
  color: #fff; background:
  radial-gradient(circle at 75% 35%, rgba(200,164,93,.14), transparent 30%),
  linear-gradient(135deg, #0a1623 0%, #0d1b2a 58%, #142c41 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .35;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px; mask-image: linear-gradient(to bottom, black, transparent);
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; right: -180px; top: 100px; border: 1px solid rgba(200,164,93,.16); }
.hero-glow-two { width: 240px; height: 240px; right: 30%; bottom: -130px; border: 1px solid rgba(200,164,93,.12); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 80px; }
.eyebrow, .kicker {
  color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .2em;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.eyebrow span { width: 28px; height: 1px; background: var(--gold); }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.035em; line-height: 1.05; margin: 0; }
h1 { max-width: 760px; font-size: clamp(48px, 6vw, 76px); }
h1 em, h2 em { color: var(--gold-light); font-style: italic; }
.hero-lead { max-width: 650px; margin: 28px 0 32px; color: rgba(255,255,255,.7); font-size: 17px; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 50px; padding: 0 22px; border-radius: 999px; font-size: 13px; font-weight: 750;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--navy); background: var(--gold-light); }
.btn-primary:hover { background: #f0d991; }
.btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.22); }
.btn-ghost:hover { border-color: rgba(227,201,132,.65); }
.hero-meta { display: flex; gap: 34px; margin-top: 58px; }
.hero-meta div { display: grid; gap: 3px; }
.hero-meta strong { font-family: Georgia, serif; font-size: 18px; font-weight: 400; }
.hero-meta span { color: rgba(255,255,255,.48); font-size: 11px; }

.hero-card-wrap { position: relative; min-height: 450px; display: grid; place-items: center; }
.hero-card {
  width: min(440px, 90%); aspect-ratio: 1.52; padding: 30px; border-radius: 28px;
  transform: rotate(4deg);
  color: #fff; background: linear-gradient(145deg, #1a3851, #0b1825);
  border: 1px solid rgba(227,201,132,.34);
  box-shadow: 0 40px 90px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
}
.card-top, .card-bottom { display: flex; align-items: center; justify-content: space-between; }
.card-label { color: rgba(255,255,255,.66); font-size: 10px; letter-spacing: .18em; }
.card-chip { width: 36px; height: 27px; border: 1px solid var(--gold-light); border-radius: 7px; opacity: .8; }
.card-number { margin-top: 28%; font-family: Georgia, serif; font-size: clamp(28px, 4vw, 42px); letter-spacing: .15em; color: var(--gold-light); }
.card-bottom { margin-top: 22%; color: rgba(255,255,255,.46); font-size: 8px; letter-spacing: .2em; }
.floating-stat {
  position: absolute; display: flex; align-items: center; gap: 12px; padding: 14px 17px;
  background: rgba(255,255,255,.96); color: var(--ink); border-radius: 15px;
  box-shadow: 0 18px 45px rgba(0,0,0,.22); min-width: 205px;
}
.stat-one { left: -2%; bottom: 17%; }
.stat-two { right: -2%; top: 16%; }
.stat-icon {
  width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px;
  background: var(--cream); color: var(--gold); font-size: 10px; font-weight: 800;
}
.floating-stat div { display: grid; line-height: 1.25; }
.floating-stat strong { font-size: 12px; }
.floating-stat small { color: var(--muted); font-size: 9px; margin-top: 3px; }

.trust-strip { background: var(--cream); border-bottom: 1px solid var(--line); }
.trust-items { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-items div { padding: 24px 20px; border-left: 1px solid var(--line); font-size: 11px; font-weight: 700; color: #414a52; }
.trust-items div:last-child { border-right: 1px solid var(--line); }
.trust-items span { color: var(--gold); margin-right: 10px; }

.section { padding: 120px 0; }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.kicker { margin: 0 0 17px; }
.section-heading h2 { font-size: clamp(38px, 4.2vw, 58px); }
.section-copy { padding-top: 9px; color: #5e6871; font-size: 16px; }
.section-copy p { margin: 0 0 22px; }
.section-copy strong { color: var(--ink); }
.services { background: var(--cream); }
.centered { max-width: 740px; margin: 0 auto 60px; text-align: center; }
.centered > p:last-child { color: var(--muted); margin: 22px auto 0; max-width: 610px; font-size: 15px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  position: relative; min-height: 265px; padding: 30px; background: #fff; border: 1px solid rgba(13,27,42,.08);
  border-radius: var(--radius); box-shadow: 0 8px 30px rgba(13,27,42,.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-no { position: absolute; right: 24px; top: 25px; color: #c9cdd0; font-size: 10px; letter-spacing: .12em; }
.service-icon { color: var(--gold); font-family: Georgia, serif; font-size: 34px; line-height: 1; }
.service-card h3 { margin: 26px 0 9px; font-family: Georgia, serif; font-size: 22px; font-weight: 400; }
.service-card p { margin: 0; color: var(--muted); font-size: 13px; }

.statement { background: var(--navy); color: #fff; }
.statement-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center;
  padding: 72px; border: 1px solid rgba(227,201,132,.18); border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}
.statement h2 { font-size: clamp(38px, 4vw, 55px); }
.statement-box > p { color: rgba(255,255,255,.58); margin: 0; font-size: 16px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.contact .section-heading > p:last-child { color: var(--muted); margin-top: 24px; max-width: 480px; }
.contact-card { padding: 14px 0; }
.contact-row { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-label { color: #9aa1a7; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.contact-row a { color: #8a6a2e; font-weight: 750; font-size: 13px; }
.contact-row strong { font-size: 13px; text-align: right; }
.contact-note {
  display: flex; gap: 10px; align-items: flex-start; margin-top: 22px; padding: 14px;
  background: #fff8e7; border-radius: 12px; color: #725c32; font-size: 11px;
}
.contact-note > span {
  width: 18px; height: 18px; flex: 0 0 18px; display: grid; place-items: center;
  border-radius: 50%; background: var(--gold); color: #fff; font-weight: 800;
}
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .92em; }

.footer { padding: 42px 0; color: rgba(255,255,255,.6); background: #08131f; }
.footer-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.footer-brand { margin-bottom: 13px; }
.footer p { margin: 0; max-width: 420px; font-size: 11px; }
.footer-right { display: flex; gap: 24px; font-size: 10px; text-align: right; }

.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 58px; height: 58px;
  display: grid; place-items: center; border-radius: 50%; background: #1b9e5a; color: #fff;
  box-shadow: 0 14px 35px rgba(0,0,0,.22); transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 31px; height: 31px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hero { padding-top: 145px; }
  .hero-grid, .two-col, .contact-grid, .statement-box { grid-template-columns: 1fr; gap: 55px; }
  .hero-card-wrap { min-height: 420px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .statement-box { padding: 50px 34px; }
}
@media (max-width: 680px) {
  .container { width: min(var(--container), calc(100% - 32px)); }
  .navbar { min-height: 72px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 16px; right: 16px; padding: 12px;
    flex-direction: column; align-items: stretch; gap: 0; background: rgba(13,27,42,.98);
    border: 1px solid rgba(255,255,255,.08); border-radius: 16px; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 15px; border-radius: 10px; }
  .nav-links a:hover { background: rgba(255,255,255,.05); }
  .brand-text strong { font-size: 11px; }
  .brand-text small { font-size: 7px; }
  .hero { min-height: auto; padding: 130px 0 70px; }
  h1 { font-size: 47px; }
  .hero-lead { font-size: 15px; }
  .hero-meta { gap: 18px; flex-direction: column; margin-top: 40px; }
  .hero-card-wrap { min-height: 350px; }
  .hero-card { width: 92%; }
  .floating-stat { min-width: 175px; padding: 11px 13px; }
  .stat-one { left: 0; bottom: 8%; }
  .stat-two { right: 0; top: 5%; }
  .trust-items { grid-template-columns: 1fr 1fr; }
  .trust-items div { padding: 18px 12px; }
  .section { padding: 82px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .contact-row { align-items: flex-start; flex-direction: column; gap: 7px; }
  .contact-row strong { text-align: left; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-right { flex-direction: column; gap: 6px; text-align: left; }
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
