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

:root {
  --gold:    #e8a000;
  --gold-dk: #cf8f00;
  --navy:    #1a1a2e;
  --navy-lt: #23234a;
  --white:   #ffffff;
  --gray-50: #f4f6f8;
  --gray-100:#e8eaed;
  --gray-400:#9ca3af;
  --gray-600:#4b5563;
  --gray-800:#1f2937;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dk); }

.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-ghost { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-ghost:hover { background: var(--gold); color: var(--navy); }

/* ── Site Header ── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.logo-name { line-height: 1.15; }
.logo-name .t1 { display: block; font-size: 17px; font-weight: 800; color: var(--gold); letter-spacing: .5px; text-transform: uppercase; }
.logo-name .t2 { display: block; font-size: 10px; color: var(--gray-400); letter-spacing: 2.5px; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 6px; }

.site-nav > a, .dropdown > a {
  color: var(--gray-400);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.site-nav > a:hover, .dropdown > a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.site-nav .btn-primary { color: var(--navy); padding: 9px 20px; font-size: 14px; }

.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy-lt);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  min-width: 180px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 11px 18px; font-size: 13px; color: var(--gray-400); transition: background 0.15s, color 0.15s; }
.dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--white); }

/* ── Site Footer ── */
.site-footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 13px; margin-top: 14px; line-height: 1.7; color: var(--gray-400); max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--gray-400); margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gray-400);
  transition: border-color 0.2s, color 0.2s;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); }

.legal-links { display: flex; gap: 16px; }
.legal-links a { color: var(--gray-400); font-size: 12px; }
.legal-links a:hover { color: var(--gold); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 60%, #2d1b69 100%);
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(232,160,0,0.12) 0%, transparent 60%);
}
.hero .container { position: relative; }
.hero-badge {
  display: inline-block;
  background: rgba(232,160,0,0.15);
  border: 1px solid rgba(232,160,0,0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  max-width: 760px;
  margin: 0 auto 20px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 18px;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: var(--gray-400); margin-top: 18px; }

/* ── Section headings ── */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-dark .section-title { color: var(--white); }
.section-sub {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 560px;
}
.section-dark .section-sub { color: var(--gray-400); }
.section-head { margin-bottom: 52px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { margin: 0 auto; }

/* ── Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(232,160,0,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.feature-card p  { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 14px;
  padding: 36px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(232,160,0,0.12);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
}
.pricing-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.pricing-card .plan-desc { font-size: 13px; color: var(--gray-600); margin-bottom: 24px; }
.price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-from { font-size: 13px; color: var(--gray-400); }
.price-amount { font-size: 40px; font-weight: 900; color: var(--navy); }
.price-period { font-size: 14px; color: var(--gray-400); }
.price-note { font-size: 12px; color: var(--gray-400); margin-bottom: 28px; }

.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
}
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 28px;
}
.stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14px; color: var(--gray-400); line-height: 1.7; margin-bottom: 18px; }
.reviewer { font-size: 13px; font-weight: 700; color: var(--white); }
.reviewer span { color: var(--gray-400); font-weight: 400; }

/* ── Guarantees ── */
.guarantee-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
}
.guarantee-item .gi-icon { font-size: 20px; }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dk) 100%);
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { font-size: 30px; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.cta-band p  { font-size: 16px; color: rgba(0,0,0,0.6); margin-bottom: 28px; }
.cta-band .btn { background: var(--navy); color: var(--white); }
.cta-band .btn:hover { background: #0d0d1f; }

/* ── Hamburger (mobile) ── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--white); font-size: 24px; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy-lt); flex-direction: column; padding: 16px; gap: 4px; }
  .site-nav.open { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: rgba(255,255,255,0.04); }
}
