/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:       #0d1b1e;
  --ink-mid:   #2b3d42;
  --ink-soft:  #4a6068;
  --teal:      #1a6b6b;
  --teal-lt:   #2a8a8a;
  --teal-pale: #e6f2f2;
  --gold:      #b8963e;
  --gold-lt:   #d4ac5a;
  --cream:     #f5f0e8;
  --white:     #ffffff;
  --radius:    12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Onest', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,27,30,0.08);
  transition: padding 0.3s;
}
nav.scrolled { padding: 12px 48px; }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--teal); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--ink-soft);
  text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: var(--white);
  padding: 10px 24px; border-radius: 6px;
  font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--teal-lt); }

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--ink);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* Mobile nav menu */
.nav-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid rgba(13,27,30,0.08);
  padding: 20px 48px; display: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.nav-menu.active { display: block; }
.nav-menu ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.nav-menu a {
  font-size: 14px; color: var(--gold);
  text-decoration: none; transition: color 0.2s;
}
.nav-menu a:hover { color: var(--teal); }

.txt-center {
  display: flex;
  justify-content: center;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr;
  position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 64px 80px 80px;
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.12em; font-weight: 400;
  color: var(--gold); text-transform: uppercase; margin-bottom: 16px; margin-top: 50px;
}
.hero-tag::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}
.hero-h1 {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 300; line-height: 1.1;
  color: var(--ink); margin-bottom: 28px;
}
.hero-sub a {
  color: var(--teal);
  transition: color 0.3s ease;
}
.hero-sub a:hover { color: var(--teal-lt); }
.hero-h1 em { font-style: italic; color: var(--teal); }
.hero-sub {
  align-items: center;
  text-align: justify;
  font-size: 15px; color: var(--ink-soft); line-height: 1.8;
  max-width: 640px; margin-bottom: 48px;
}
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-primary {
  background: var(--teal); color: var(--white);
  padding: 16px 36px; border-radius: 8px;
  font-size: 14px; font-weight: 400; letter-spacing: 0.04em;
  text-decoration: none; transition: all 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--teal-lt); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(26,107,107,0.25); }
.btn-ghost {
  font-size: 14px; color: var(--ink-mid); letter-spacing: 0.04em;
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--teal); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(4px); }

.hero-stats {
  display: flex; gap: 40px; margin-top: 64px; justify-content: center;
  padding-top: 40px; border-top: 1px solid rgba(13,27,30,0.1);
}
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: var(--teal); line-height: 1;
}
.stat-l { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }

/* ── SECTION COMMONS ─────────────────────────────────────── */
.section { padding: 100px 80px; }
.section-sm { padding: 80px 80px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.12em; font-weight: 400;
  color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
}
.section-tag::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold);
}
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; line-height: 1.2; color: var(--ink);
}
.section-h2 em { font-style: italic; color: var(--teal); }
.section-lead {
  font-size: 15px; color: var(--ink-soft);
  line-height: 1.8; max-width: 560px; margin-top: 16px;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how { background: var(--ink); padding: 100px 80px; }
.how .section-h2 { color: var(--white); }
.how .section-lead { text-align: center; color: rgba(255,255,255,0.5); }
.how .section-tag { color: var(--gold-lt); }
.how .section-tag::before { background: var(--gold-lt); }
.how-steps {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 8px; margin-top: 60px; position: relative;
}
.how-steps::before {
  display: none;
}
.how-step {
  padding: 0;
  position: relative;
  z-index: 1;
}
.how-step-n {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; color: var(--white);
  margin-bottom: 28px;
  background: rgba(255,255,255,0.04);
  transition: all 0.3s;
}
.how-step:hover .how-step-n {
  background: var(--teal); border-color: var(--teal);
}
.how-step-title {
  font-size: 15px; font-weight: 400; color: var(--white);
  margin-bottom: 10px; line-height: 1.4;
}
.how-step-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.8; }

/* ── CTA ─────────────────────────────────────────────────── */
.cta-section {
  padding: 100px 80px;
  background: linear-gradient(135deg, var(--teal) 0%, #0d3a3a 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle, var(--white) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.cta-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; color: var(--white); line-height: 1.2;
}
.cta-h2 em { font-style: italic; color: var(--gold-lt); }
.cta-sub { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.8; margin-top: 16px; }
.cta-form {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  backdrop-filter: blur(8px);
}
.cta-form-title {
  font-size: 16px; font-weight: 400; color: var(--white);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 11px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45); text-transform: uppercase; margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; color: var(--white);
  font-family: 'Onest', sans-serif;
  font-size: 14px; outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
}
.form-group select option { background: var(--ink); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note {
  font-size: 11px; color: rgba(255,255,255,0.3);
  margin-top: 12px; line-height: 1.6;
}
.form-note a { color: rgba(255,255,255,0.45); }
.btn-form {
  width: 100%; padding: 16px;
  background: var(--gold); color: var(--white);
  border: none; border-radius: 8px; cursor: pointer;
  font-family: 'Onest', sans-serif;
  font-size: 14px; font-weight: 400; letter-spacing: 0.04em;
  transition: all 0.2s; margin-top: 4px;
}
.btn-form:hover {
  background: var(--gold-lt); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,150,62,0.35);
}

/* Contact methods */
.contact-methods {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 18px; height: 18px;
  stroke: rgba(255,255,255,0.6);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-link {
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.contact-link:hover {
  color: var(--gold-lt);
}
.contact-link.contact-link-small {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  padding: 32px 80px;
  background: var(--white);
  border-top: 1px solid rgba(13,27,30,0.06);
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--ink-soft); letter-spacing: 0.03em;
}
.trust-item svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 60px 80px 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; letter-spacing: 0.06em;
  color: var(--white); margin-bottom: 16px;
}
.footer-logo span { color: var(--gold-lt); }
.footer-about {
  font-size: 13px; color: rgba(255,255,255,0.35);
  line-height: 1.8; max-width: 320px;
}
.footer-col-title {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-contact { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.9; }
.footer-contact a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── PHONE FLOAT ─────────────────────────────────────────── */
.phone-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 200;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.phone-btn {
  background: var(--teal); color: var(--white);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(26,107,107,0.4);
  text-decoration: none; transition: all 0.2s;
  animation: phonePulse 2.5s ease-in-out infinite;
}
@keyframes phonePulse {
  0%,100%{box-shadow:0 8px 24px rgba(26,107,107,0.4)}
  50%{box-shadow:0 8px 36px rgba(26,107,107,0.7)}
}
.phone-btn:hover { background: var(--teal-lt); transform: scale(1.08); }
.phone-btn svg { width: 22px; height: 22px; }
.phone-tooltip {
  background: var(--white); border-radius: 8px;
  padding: 8px 14px; font-size: 12px; color: var(--ink-mid);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  white-space: nowrap;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 100px 24px 60px; }
  .section, .section-sm { padding: 60px 24px; }
  .cta-inner, .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .how-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 2px; }
  footer { padding: 48px 24px 32px; }
  .trust-bar { padding: 24px; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── NOTIFICATIONS ──────────────────────────────────────────── */
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

.notification {
  position: fixed;
  top: 80px;
  right: 20px;
  padding: 16px 24px;
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  animation: slideIn 0.3s ease;
  font-size: 14px;
  font-weight: 400;
}
.notification-error {
  background: #dc3545;
}
.notification-success {
  background: #28a745;
}
.notification-info {
  background: #17a2b8;
}

/* ── FORM ERROR STYLES ──────────────────────────────────────── */
.form-error {
  display: block;
  font-size: 11px;
  color: #ff6b6b;
  margin-top: 4px;
  min-height: 14px;
}
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
}
.form-group.success input,
.form-group.success select,
.form-group.success textarea {
  border-color: #28a745;
}
