/* ===========================
   ESTOBI ENTERPRISES — STYLES
   Pattern.com-inspired redesign
   =========================== */

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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #171717;
  --dark3: #1e1e1e;
  --border: #2a2a2a;
  --accent: #00c48c;
  --accent-dark: #00a87a;
  --accent-glow: rgba(0,196,140,0.15);
  --white: #ffffff;
  --text: #e8e8e8;
  --text-muted: #888;
  --text-dim: #555;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }


body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-nav {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--accent-dark); }
.nav-links a.btn-nav { color: #000 !important; font-weight: 700; }

.link-arrow {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s;
}
.link-arrow:hover { opacity: 0.75; }

/* ===== TYPOGRAPHY HELPERS ===== */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0,196,140,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid rgba(0,196,140,0.3);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-rotate {
  color: var(--accent);
  transition: opacity 0.3s ease;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-social-proof {
  font-size: 13px;
  color: var(--text-dim);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 500px;
}

/* ===== MARQUEE ===== */
.marquee-bar {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.marquee-track .dot { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SERVICES BIG ===== */
.services-big {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.services-big-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.service-big-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.service-big-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.service-big-card.featured {
  background: linear-gradient(145deg, rgba(0,196,140,0.06), var(--dark2));
  border-color: rgba(0,196,140,0.3);
}
.service-big-icon {
  font-size: 36px;
  margin-bottom: 20px;
}
.service-big-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-big-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.services-big-more {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-small-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.service-small-card:hover { border-color: var(--accent); }
.service-small-card span { font-size: 24px; flex-shrink: 0; }
.service-small-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.service-small-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
  background: var(--dark2);
}
.hiw-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.hiw-left h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hiw-left p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}
.hiw-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.hiw-step:last-child { border-bottom: none; }
.hiw-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}
.hiw-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.hiw-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== STATS ===== */
.stats-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  background: var(--dark2);
  padding: 40px 24px;
  text-align: center;
}
.stat-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== WHY ESTOBI ===== */
.why-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-left h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.why-left > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.why-differentiators {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  width: 28px;
  height: 28px;
  background: var(--accent-glow);
  border: 1px solid rgba(0,196,140,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.why-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.why-quote-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.why-quote-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.why-quote-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}
.why-quote-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.why-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.why-metric {
  background: var(--dark3);
  padding: 20px 16px;
  text-align: center;
}
.why-metric-val {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 6px;
}
.why-metric-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}
.why-quote-body {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
  padding: 20px;
  background: rgba(0,196,140,0.04);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
}
.why-quote-credit {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== GUIDE SECTION ===== */
.guide-section {
  padding: 100px 0;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
}
.guide-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: center;
}
.guide-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.guide-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1.3;
}
.guide-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.guide-bullets {
  list-style: none;
  margin-bottom: 36px;
}
.guide-bullets li {
  font-size: 15px;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.guide-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.guide-note {
  font-size: 13px;
  color: var(--text-muted);
}
.guide-badge-box {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}
.guide-price {
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.guide-stars {
  color: #ffd700;
  font-size: 18px;
  margin-bottom: 16px;
}
.guide-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.guide-formats {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ===== CTA / CONTACT ===== */
.cta-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta-left h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-left p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-guarantees {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-guarantee {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}
.contact-form input:focus { border-color: var(--accent); }
.contact-form input::placeholder { color: var(--text-muted); }
.form-note {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 24px;
  padding-bottom: 24px;
}
.footer-logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--accent); }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-contact-info {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.8;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-big-grid { grid-template-columns: 1fr 1fr; }
  .services-big-more { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .why-split { grid-template-columns: 1fr; gap: 48px; }
  .guide-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .hiw-split { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 60px 0; }
  .hero-title { font-size: 38px; letter-spacing: -1px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .services-big-grid { grid-template-columns: 1fr; }
  .services-big-more { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-metrics { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-header h2 { font-size: 28px; }
}


.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
  background: var(--dark2);
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  max-width: 700px;
}
.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
}

.inner-section {
  padding: 80px 0;
}

/* Services page */
.service-block {
  display: flex;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.service-block:last-of-type { border-bottom: none; }
.service-block-icon {
  font-size: 40px;
  flex-shrink: 0;
  width: 60px;
  text-align: center;
}
.service-block-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-block-body p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-block-body ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-block-body ul li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}
.coming-soon {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--accent-glow);
  border: 1px solid rgba(0,196,140,0.3);
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 100px;
}

/* Pricing page */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(145deg, rgba(0,196,140,0.06), var(--dark2));
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.plan-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.plan-price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
}
.plan-setup {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}
.plan-features li {
  font-size: 14px;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.pricing-note {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 64px;
}

/* FAQ */
.faq { margin-bottom: 64px; }
.faq h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.faq-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* About page */
.about-content {
  max-width: 760px;
}
.about-content p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin: 40px 0 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 48px 0;
}
.about-stat {
  background: var(--dark2);
  padding: 32px 20px;
  text-align: center;
}
.about-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Shared inner CTA */
.inner-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

/* Responsive inner pages */
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .service-block { flex-direction: column; gap: 16px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .inner-cta { flex-direction: column; align-items: flex-start; }
}

/* ===========================
   MOBILE HAMBURGER MENU
   =========================== */

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  bottom: 0;
  background: #080c1e;
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-sizing: border-box;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.mob-green { color: #00c48c; }
.mobile-menu .mob-login-btn {
  display: block;
  text-align: center;
  background: #00c48c;
  color: #0a0e24 !important;
  font-weight: 800;
  font-size: 16px;
  padding: 16px;
  border-radius: 10px;
  margin-top: 24px;
  text-decoration: none;
  max-width: calc(100vw - 40px);
  box-sizing: border-box;
}
.mobile-menu .mob-audit-btn {
  display: block;
  text-align: center;
  background: rgba(0,196,140,0.1);
  border: 1px solid rgba(0,196,140,0.3);
  color: #00c48c !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 10px;
  margin-top: 12px;
  text-decoration: none;
  max-width: calc(100vw - 40px);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
}


/* ===== INNER PAGE BODY ===== */
.page-body { padding-top: 0; }

/* Privacy policy content */
.inner-section h2 { font-size: 1.25em; margin-top: 36px; border-bottom: 1px solid var(--border); padding-bottom: 6px; color: var(--white); }
.inner-section h3 { font-size: 1.05em; margin-top: 24px; color: var(--text); }
.inner-section p { margin: 12px 0; color: var(--text-muted); }
.inner-section ul { margin: 12px 0 12px 24px; }
.inner-section li { margin-bottom: 6px; color: var(--text-muted); }
.inner-section a { color: var(--accent); }
.inner-section .effective-date { color: var(--text-muted); font-size: 0.9em; margin-top: 8px; }
.inner-section .contact-block { background: var(--dark2); padding: 16px 20px; border-left: 4px solid var(--accent); margin-top: 12px; border-radius: 0 var(--radius) var(--radius) 0; color: var(--text-muted); }

/* ===== LIGHT SECTION (privacy policy content area) ===== */
.section--light {
  background: #f7f7f7;
}
.section--light p,
.section--light li,
.section--light h2,
.section--light h3 {
  color: #222;
}
.section--light h2 {
  border-bottom-color: #ddd;
}
.section--light a {
  color: #007a5e;
}
.section--light .contact-block {
  background: #fff;
  border-left-color: #00c48c;
  color: #333;
}
