/* styles.css — Updated for Option B fixes */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --brand-1: #f844f8;
  --brand-2: #18f8f8;
  --accent: #faff00;
  --bg: #ffffff;
  --text: #000000;
  --surface: #ffffff;
  --muted: #666666;
  --radius: 10px;
  --container: 1100px;
  --font-heading: 'Michroma', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Dark mode defaults */
:root.dark {
  --bg: #070708;
  --text: #f4f4f6;
  --surface: #0f0f10;
  --muted: #9a9a9a;
}
:root.light {
  --bg: #ffffff;
  --text: #000000;
  --surface: #ffffff;
  --muted: #6b6b6b;
}

/* Global reset */
* { box-sizing:border-box; margin:0; padding:0; }
html, body { height:100%; font-family: var(--font-body); background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }
.container { max-width: var(--container); margin:0 auto; padding:0 20px; }
.visually-hidden { position:absolute!important; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); }

/* HEADER */
.site-header {
  position: sticky; top:0; z-index:80;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.4));
  backdrop-filter: blur(6px);
  border-bottom:1px solid rgba(0,0,0,0.06);
  transition: background 0.3s ease;
}
.header-inner { display:flex; justify-content:space-between; align-items:center; padding:16px 0; }
.brand { display:flex; align-items:center; gap:12px; }
.logo { width:140px; height:38px; background: linear-gradient(90deg,var(--brand-1),var(--brand-2)); border-radius:8px; display:flex; align-items:center; justify-content:center; font-family: var(--font-heading); font-weight:700; color: var(--surface); }
.menu-toggle { background:transparent; border:none; font-size:22px; padding:8px; display:block; cursor:pointer; transition: transform 0.2s ease; }
.menu-toggle[aria-expanded="true"] { transform: rotate(90deg); }
.nav { display:none; flex-direction:column; gap:18px; align-items:center; background: var(--surface); position:absolute; top:100%; left:0; right:0; padding:12px 0; border-bottom-left-radius:10px; border-bottom-right-radius:10px; box-shadow:0 12px 24px rgba(0,0,0,0.08); transition: max-height 0.3s ease, opacity 0.3s ease; overflow:hidden; max-height:0; opacity:0; }
.nav a { color: var(--text); opacity:0.9; text-decoration:none; font-weight:600; }
.nav.show { display:flex; max-height:500px; opacity:1; }
.cta-ghost { padding:8px 12px; border-radius:8px; border:1px solid rgba(0,0,0,0.06); }

/* Desktop nav */
@media(min-width:760px){ .menu-toggle{display:none;} .nav{display:flex; position:static; flex-direction:row; max-height:none; opacity:1; background:transparent; padding:0;} }

/* HERO */
.hero { padding:84px 0 56px; text-align:center; font-family: var(--font-heading); transition: color 0.3s ease; }
.hero h1 { font-size:clamp(1.8rem,4vw,3rem); margin-bottom:12px; color: var(--text); }
.hero p.lead { color: var(--muted); margin-bottom:20px; font-family: var(--font-body); }
.hero-ctas { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; border-radius:8px; padding:12px 18px; font-weight:600; cursor:pointer; border:none; text-decoration:none; font-family: var(--font-body); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.btn-primary { background: linear-gradient(90deg,var(--brand-1),var(--brand-2)); color: var(--surface); box-shadow:0 8px 20px rgba(24,248,248,0.08); }
.btn-primary:hover { transform: translateY(-2px); box-shadow:0 10px 24px rgba(24,248,248,0.12); }
.btn-outline { background: transparent; border:none; color: var(--text); }
.trust-strip { margin-top:18px; color:var(--muted); font-size:0.95rem; }

/* SECTIONS */
.section { padding:48px 0; }
.section.alt { background: linear-gradient(180deg, rgba(249,249,250,0.6), rgba(245,245,246,0.6)); }
.section h2 { font-size:1.5rem; margin-bottom:18px; font-family: var(--font-heading); text-align:center; }

/* SERVICES CARDS */
.services-grid { display:grid; grid-template-columns:1fr; gap:16px; }
.card { background:var(--surface); border-radius:var(--radius); padding:18px; box-shadow:0 6px 18px rgba(11,11,11,0.04); }
.card h3 { margin-bottom:8px; font-family: var(--font-heading); }

/* TIERS */
.tier-grid { display:grid; grid-template-columns:1fr; gap:20px; margin-top:20px; }
.tier-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding:20px;
  box-shadow: 0 6px 20px rgba(11,11,11,0.05);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tier-card:hover { transform: scale(1.02); box-shadow:0 10px 28px rgba(11,11,11,0.08); }
.tier-card h3 { font-family: var(--font-heading); font-size:1.25rem; margin-bottom:10px; text-align:center; }
.tier-card .price { font-weight:700; font-size:1.1rem; margin-bottom:12px; text-align:center; }
.tier-card ul { list-style: disc; margin:0 0 16px 20px; padding:0; }
.tier-btn-wrapper { display:flex; justify-content:center; }
.tier-btn { width:90%; max-width:200px; text-align:center; padding:10px 0; border:none; border-radius:8px; font-weight:600; font-family: var(--font-body); background: linear-gradient(90deg,var(--brand-1),var(--brand-2)); color: var(--surface); cursor:pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.tier-btn:hover { transform: translateY(-2px); box-shadow:0 10px 24px rgba(24,248,248,0.12); }

/* PROCESS LIST */
.process-list { list-style:none; display:grid; gap:12px; padding-left:0; }
.process-list li { display:flex; flex-direction:column; gap:6px; padding:12px; border-radius:8px; background:var(--surface); }
.process-list li strong { font-size:1rem; font-family: var(--font-heading); }
.process-list li span { color:var(--muted); font-size:0.95rem; }

/* FORM */
.form-section .muted { color:var(--muted); margin-bottom:8px; }
.lead-form { display:grid; gap:10px; max-width:720px; margin:0 auto; }
.lead-form input, .lead-form textarea { padding:12px; border-radius:8px; border:1px solid rgba(0,0,0,0.08); background:transparent; color:var(--text); font-family: var(--font-body); }
.form-actions { display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-top:12px; }
.btn-ghost { background:transparent; border:1px solid rgba(0,0,0,0.06); padding:10px 14px; border-radius:8px; }

/* FAQ */
.faq-item { background: var(--surface); padding:16px; border-radius:8px; margin-bottom:12px; box-shadow:0 4px 16px rgba(0,0,0,0.03); }
.faq-item strong { display:block; margin-bottom:6px; font-family: var(--font-heading); }

/* FOOTER */
.site-footer { padding:28px 0; border-top:1px solid rgba(0,0,0,0.04); }
.footer-grid { display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap; }
.footer-links a { color: var(--muted); font-size:0.95rem; text-decoration:none; }
.social-icons a { margin-left:8px; display:inline-flex; align-items:center; transition: transform 0.2s ease; }
.social-icons a img { width:24px; height:24px; }

/* CONSENT BAR */
.consent-bar { position:fixed; left:0; right:0; bottom:18px; background:var(--surface); padding:14px; border-radius:10px; box-shadow:0 8px 30px rgba(0,0,0,0.08); display:flex; justify-content:space-between; gap:12px; align-items:center; max-width:calc(var(--container)+40px); margin:0 auto; transition: transform 0.3s ease, opacity 0.3s ease; }

/* RESPONSIVE GRID */
@media(min-width:860px){ 
  .services-grid{grid-template-columns:repeat(3,1fr);}
  .tier-grid{grid-template-columns:repeat(3,1fr);}
}

/* SMALL SCREEN ADJUSTMENTS */
@media(max-width:420px){
  .hero{padding:56px 0 36px;}
  .logo{width:110px;}
  .footer-grid{flex-direction:column;gap:6px;}
  .tier-btn { width:100%; }
  .nav { border-radius:0; }
}

/* Accessibility & motion reduction */
@media (prefers-reduced-motion: reduce) { *{transition:none!important;} }
