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

:root {
  --navy: #0D1B2A;
  --navy-light: #132233;
  --navy-card: #162030;
  --gold: #D4AF37;
  --gold-dim: #a8881e;
  --slate: #8899AA;
  --white: #F0F4F8;
  --text: #C8D6E5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(13, 27, 42, 0.75);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--gold); }

.nav-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 20px;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--gold-dim); }

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 32px 80px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 5px 14px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  max-width: 800px;
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 16px 36px;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--gold-dim); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(200, 214, 229, 0.25);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 15px 32px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-stat {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 32px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  display: block;
}

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1100px;
  margin: 0 auto;
}

/* SECTIONS */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 40px;
  max-width: 600px;
}

/* BENTO GRID */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
}

.bento-item {
  background: var(--navy-card);
  padding: 32px;
  transition: background 0.2s;
}

.bento-item:hover { background: #1a2840; }

.bento-item.wide { grid-column: span 2; }

.bento-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: block;
}

.bento-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.bento-item p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
}

.bento-item .bento-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

/* COMPARE */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  margin-top: 8px;
}

.col-before {
  background: var(--navy-card);
  padding: 32px;
}

.col-after {
  background: #0f2318;
  padding: 32px;
  position: relative;
}

.col-after::before {
  content: 'AFTER SEENLOCAL';
  position: absolute;
  top: 0; right: 0;
  background: #1a5c38;
  color: #2ecc71;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
}

.col-before::before {
  content: 'BEFORE';
  position: absolute;
  display: block;
}

.gmb-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 20px;
}

.gmb-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.gmb-cat {
  font-size: 0.8rem;
  color: var(--slate);
  margin-bottom: 14px;
}

.gmb-cat.filled { color: #2ecc71; }

.gmb-row {
  font-size: 0.82rem;
  color: #445566;
  margin-bottom: 6px;
}

.gmb-row.filled { color: var(--text); }

.gmb-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 16px 0; }

.gmb-empty {
  font-size: 0.82rem;
  color: #334;
  font-style: italic;
}

.gmb-check {
  font-size: 0.82rem;
  color: #2ecc71;
  margin-bottom: 5px;
}

.gmb-desc {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
}

/* CHECKLIST */
.checklist { list-style: none; }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.95rem;
  color: var(--text);
}

.checklist li:last-child { border-bottom: none; }
.checklist .ck { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* PRICING */
.pricing-block {
  background: var(--navy-card);
  border-left: 3px solid var(--gold);
  padding: 56px 48px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.price-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.price-currency {
  font-size: 1.4rem;
  color: var(--slate);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.price-once {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  margin-bottom: 20px;
}

.pricing-block p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.price-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: #445566;
}

.price-note a { color: var(--gold); text-decoration: none; }

/* FORM */
.form-block {
  background: var(--navy-card);
  border-left: 3px solid #2ecc71;
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
}

.form-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.form-block p {
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 28px;
}

.form-field {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.form-field:focus { border-color: var(--gold); }
.form-field::placeholder { color: #445566; }

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 16px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
  margin-top: 4px;
}

.form-submit:hover { background: var(--gold-dim); }

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
}

.testimonial-item {
  background: var(--navy-card);
  padding: 28px 28px 32px;
}

.testimonial-item p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-item .t-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* FAQ */
.faq-list { border-top: 1px solid rgba(255,255,255,0.06); }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}

.faq-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.7;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 32px;
  text-align: center;
  font-size: 0.8rem;
  color: #334455;
}

footer a { color: var(--slate); text-decoration: none; }
footer a:hover { color: var(--gold); }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .hero { padding: 60px 20px 60px; }
  .section { padding: 60px 20px; }
  .bento { grid-template-columns: 1fr; }
  .bento-item.wide { grid-column: span 1; }
  .compare-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-block { padding: 36px 24px; }
  .form-block { padding: 32px 20px; }
  .hero-stat { gap: 20px; }
}
