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

:root {
  --bg: #07090f;
  --surface-1: #0d1118;
  --surface-2: #131822;
  --surface-3: #1a2030;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(201,168,76,0.3);
  --gold: #c9a84c;
  --gold-light: #e2c06b;
  --gold-dim: rgba(201,168,76,0.12);
  --blue: #3d7aed;
  --text-primary: #eef0f6;
  --text-secondary: #8892a4;
  --text-muted: #515c6e;
  --radius: 6px;
  --radius-lg: 12px;
  --t: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 70% 50% at 15% -15%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 110%, rgba(61,122,237,0.07) 0%, transparent 60%);
  background-attachment: fixed;
}

/* ── NAV ── */
nav.main-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,9,15,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex; align-items: center;
  padding: 0 2.5rem;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--text-primary); text-decoration: none;
  letter-spacing: 0.02em; white-space: nowrap;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center;
  gap: 2.25rem; list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary); text-decoration: none;
  transition: color var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.lang-switcher {
  display: flex; align-items: center; gap: 0.2rem;
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.2rem;
}
.lang-switcher a {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.28rem 0.52rem; border-radius: 4px;
  color: var(--text-secondary); text-decoration: none;
  transition: all var(--t);
}
.lang-switcher a.active { background: var(--gold); color: #07090f; }
.lang-switcher a:hover:not(.active) { color: var(--text-primary); }

.lang-select-mobile {
  display: none;
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.3rem 0.6rem;
  font-size: 0.75rem; color: var(--text-secondary);
  appearance: none;
}

.nav-cta {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.55rem 1.35rem;
  border-radius: var(--radius); border: 1px solid var(--gold);
  color: var(--gold); text-decoration: none;
  white-space: nowrap; transition: all var(--t);
}
.nav-cta:hover { background: var(--gold); color: #07090f; }

/* ── HERO ── */
.hero {
  max-width: 1200px; margin: 0 auto;
  padding: 7rem 2.5rem 5.5rem;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 4rem; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  padding: 0.35rem 0.9rem; border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px; background: rgba(201,168,76,0.05);
}
.hero-badge-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 600; line-height: 1.1;
  margin-top: 1.5rem; color: var(--text-primary);
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  margin-top: 1.5rem; font-size: 1rem; font-weight: 300;
  line-height: 1.85; color: var(--text-secondary); max-width: 460px;
}

.hero-actions { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-primary {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.875rem 2rem;
  background: var(--gold); color: #07090f; border: none;
  border-radius: var(--radius); cursor: pointer; text-decoration: none;
  display: inline-block; transition: all var(--t);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(201,168,76,0.28); }

.btn-secondary {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 0.875rem 2rem; background: transparent;
  color: var(--text-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer; text-decoration: none;
  display: inline-block; transition: all var(--t);
}
.btn-secondary:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.18); }

/* Hero Panel */
.hero-panel {
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem;
}
.stat-box {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.125rem;
}
.stat-box.wide { grid-column: span 2; }
.stat-label {
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
}
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 700;
  color: var(--text-primary); margin-top: 0.25rem;
}
.stat-bar { height: 3px; background: var(--surface-3); border-radius: 2px; margin-top: 0.875rem; overflow: hidden; }
.stat-fill { height: 100%; width: 82%; background: linear-gradient(90deg, var(--gold), var(--blue)); border-radius: 2px; }
.stat-tags { margin-top: 0.625rem; display: flex; gap: 0.4rem; flex-wrap: wrap; }
.stat-tag {
  font-size: 0.5625rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); padding: 0.15rem 0.45rem;
  border: 1px solid var(--border); border-radius: 2px;
}

/* ── SECTIONS ── */
section { padding: 5.5rem 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

.section-label {
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 600; line-height: 1.15;
  margin-top: 0.6rem; color: var(--text-primary);
}
.section-sub {
  margin-top: 0.875rem; color: var(--text-secondary);
  font-size: 0.9375rem; line-height: 1.75; max-width: 500px;
}
.section-head { margin-bottom: 3.5rem; }
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { margin-left: auto; margin-right: auto; }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

/* ── SERVICE CARDS ── */
.service-card {
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  position: relative; transition: all 0.25s ease; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity 0.25s ease;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-2px); }

.service-num {
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1rem;
}
.service-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 1.25rem;
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--text-primary); line-height: 1.2;
}
.service-desc {
  margin-top: 0.625rem; font-size: 0.875rem;
  color: var(--text-secondary); line-height: 1.75;
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.testimonial-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; }
.testimonial-quote {
  font-size: 0.9375rem; font-style: italic;
  color: var(--text-secondary); line-height: 1.8; margin-top: 1rem;
}
.testimonial-author { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 36px; height: 36px; background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.875rem; color: var(--text-primary); }
.author-loc { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem; }

/* ── WHY SECTION ── */
.why-section {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-inner {
  max-width: 1200px; margin: 0 auto; padding: 5.5rem 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.why-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600; color: var(--text-primary); line-height: 1.2; margin-top: 0.6rem;
}
.why-text p {
  font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.85; margin-top: 1.25rem;
}
.why-stats { display: flex; flex-direction: column; gap: 1rem; }
.why-stat {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.why-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem; font-weight: 700; color: var(--gold);
  line-height: 1; white-space: nowrap;
}
.why-stat-label { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }

/* ── TRUST STRIP ── */
.trust-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface-1); padding: 1.25rem 0;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text-secondary);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── FORM ── */
.form-label {
  display: block; font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary); margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.875rem;
  color: var(--text-primary); outline: none; transition: border-color var(--t);
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(201,168,76,0.4); background: var(--surface-3);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%238892a4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-group { margin-bottom: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.55;
}
.form-check input[type="checkbox"] { margin-top: 0.15rem; accent-color: var(--gold); flex-shrink: 0; }
.form-submit { margin-top: 1.5rem; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3125rem; font-weight: 600; color: var(--text-primary);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.625rem 0; user-select: none;
}
.faq-icon {
  width: 26px; height: 26px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--gold); transition: all var(--t); font-size: 1.125rem; line-height: 1;
}
.faq-item.open .faq-icon { background: var(--gold-dim); border-color: rgba(201,168,76,0.3); }
.faq-a {
  font-size: 0.9375rem; color: var(--text-secondary);
  line-height: 1.8; padding-bottom: 1.625rem; display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--surface-1); border-bottom: 1px solid var(--border);
  padding: 5.5rem 2.5rem 4.5rem; text-align: center;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.875rem);
  font-weight: 600; color: var(--text-primary); margin-top: 0.75rem;
}
.page-header p {
  font-size: 1rem; color: var(--text-secondary);
  margin-top: 1rem; max-width: 460px; margin-left: auto; margin-right: auto; line-height: 1.75;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(61,122,237,0.06) 100%);
  border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius-lg);
  padding: 3.5rem; text-align: center;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.875rem, 3vw, 2.5rem); font-weight: 600; color: var(--text-primary);
}
.cta-band p { font-size: 0.9375rem; color: var(--text-secondary); margin-top: 0.75rem; line-height: 1.7; }
.cta-band .btn-primary { margin-top: 2rem; }

/* ── FOOTER ── */
footer { background: var(--surface-1); border-top: 1px solid var(--border); padding: 3rem 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem; font-weight: 600; color: var(--text-primary);
}
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: 0.8125rem; color: var(--text-secondary);
  text-decoration: none; transition: color var(--t);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: var(--text-muted); }

/* ── EMAIL FAB ── */
.email-fab {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 50;
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: #07090f;
  padding: 0.7rem 1.25rem; border-radius: 40px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
  text-decoration: none; box-shadow: 0 8px 32px rgba(201,168,76,0.3);
  transition: all var(--t);
}
.email-fab:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── COOKIE ── */
.cookie-banner {
  position: fixed; bottom: 1.25rem; left: 1.25rem;
  max-width: 380px; background: var(--surface-2);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem; font-size: 0.8125rem;
  color: var(--text-secondary); z-index: 49;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5); line-height: 1.6;
}
.cookie-banner button {
  margin-top: 0.75rem; background: var(--gold); color: #07090f;
  border: none; border-radius: var(--radius);
  padding: 0.45rem 1.25rem; font-size: 0.75rem; font-weight: 700;
  cursor: pointer; letter-spacing: 0.06em; font-family: 'DM Sans', sans-serif;
  transition: background var(--t);
}
.cookie-banner button:hover { background: var(--gold-light); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); max-width: 1200px; margin: 0 auto; }

/* ── SUCCESS ── */
.success-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 4rem 2rem; text-align: center;
}
.success-inner { max-width: 560px; }
.success-icon {
  width: 64px; height: 64px; background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto; color: var(--gold);
}
.success-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 600;
  color: var(--text-primary); margin-top: 1.5rem;
}
.success-inner p { font-size: 1rem; color: var(--text-secondary); margin-top: 1rem; line-height: 1.75; }

/* ── BLOG ── */
.blog-card {
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all 0.25s ease; position: relative; overflow: hidden;
}
.blog-card::after {
  content: '→'; position: absolute; bottom: 2rem; right: 2rem;
  color: var(--text-muted); font-size: 1.125rem; transition: all var(--t);
}
.blog-card:hover::after { color: var(--gold); transform: translateX(3px); }
.blog-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-2px); }
.blog-tag {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); padding: 0.2rem 0.5rem; border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px; display: inline-block; margin-bottom: 1rem;
}
.blog-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--text-primary); line-height: 1.25;
}
.blog-card p { font-size: 0.875rem; color: var(--text-secondary); margin-top: 0.625rem; line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 5rem 2rem 4rem; gap: 3rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  nav.main-nav { padding: 0 1.5rem; }
  .lang-switcher { display: none; }
  .lang-select-mobile { display: block; }
}
@media (max-width: 768px) {
  .trust-inner { justify-content: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .footer-links { gap: 1.25rem; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2, .form-grid { grid-template-columns: 1fr; }
  .hero-panel { grid-template-columns: 1fr; }
  .stat-box.wide { grid-column: span 1; }
  .nav-links { display: none; }
  .cta-band { padding: 2.5rem 1.5rem; }
}
