/* ============================================================
   DESIGN MENU — designmenu.ca
   Shared stylesheet for all pages
   Michael Perks, Vancouver Island BC
============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:         #0A0F1E;
  --bg-2:       #111827;
  --bg-card:    #1A2035;
  --accent:     #00D4C8;
  --accent-dim: rgba(0,212,200,0.10);
  --accent-glo: rgba(0,212,200,0.18);
  --accent-bdr: rgba(0,212,200,0.28);
  --success:    #10B981;
  --amber:      #F59E0B;
  --danger:     #EF4444;
  --text-1:     #F9FAFB;
  --text-2:     #9CA3AF;
  --text-3:     #6B7280;
  --bdr:        rgba(255,255,255,0.07);
  --bdr-2:      rgba(255,255,255,0.12);
  --font-d:     'Bricolage Grotesque', sans-serif;
  --font-b:     'Plus Jakarta Sans', sans-serif;
  --r:          12px;
  --r-lg:       20px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text-1);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-b); cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Shared layout ──────────────────────────────────────── */
.wrap    { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
section  { padding: 96px 0; }
.s-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.s-title {
  font-family: var(--font-d);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -1px; color: var(--text-1); margin-bottom: 16px;
}
.s-sub {
  font-size: 17px; color: var(--text-2);
  line-height: 1.7; max-width: 540px;
}
.s-head { margin-bottom: 56px; }
.s-head.center { text-align: center; }
.s-head.center .s-sub { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--bg);
  font-family: var(--font-b); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 10px; border: none;
  transition: opacity .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,212,200,0.28); }
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-1);
  font-family: var(--font-b); font-weight: 500; font-size: 15px;
  padding: 13px 28px; border-radius: 10px; border: 1px solid var(--bdr-2);
  transition: background .2s, border-color .2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: var(--accent-bdr); }
.btn-outline:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── NAVBAR ─────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 20px 0;
  transition: padding .3s, background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 13px 0; border-color: var(--bdr);
}
.nav-wrap {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-d); font-size: 20px; font-weight: 700;
  letter-spacing: -0.4px; flex-shrink: 0;
}
.logo-icon {
  width: 34px; height: 34px; background: var(--accent);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: var(--bg); flex-shrink: 0;
}
.logo-icon svg { width: 18px; height: 18px; }
.logo em { font-style: normal; color: var(--accent); }

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links > a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  padding: 8px 13px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links > a:hover { color: var(--text-1); background: rgba(255,255,255,0.05); }
.nav-links > a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop-btn {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  padding: 8px 13px; border-radius: 8px;
  display: flex; align-items: center; gap: 5px;
  transition: color .2s, background .2s;
  background: none; border: none; cursor: pointer;
}
.nav-drop-btn svg { width: 12px; height: 12px; transition: transform .2s; }
.nav-drop:hover .nav-drop-btn,
.nav-drop:focus-within .nav-drop-btn { color: var(--text-1); background: rgba(255,255,255,0.05); }
.nav-drop:hover .nav-drop-btn svg,
.nav-drop:focus-within .nav-drop-btn svg { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--bg-card); border: 1px solid var(--bdr-2);
  border-radius: var(--r); padding: 6px; min-width: 190px;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .2s, transform .2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-drop-menu a {
  display: block; padding: 9px 12px; font-size: 13.5px;
  color: var(--text-2); border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-drop-menu a:hover { color: var(--text-1); background: rgba(255,255,255,0.06); }

/* Client area CTA pill */
.nav-client {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--accent) !important; color: var(--bg) !important;
  font-weight: 600 !important; font-size: 13.5px !important;
  padding: 8px 16px !important; border-radius: 8px !important;
  margin-left: 6px;
  transition: opacity .2s, transform .15s !important;
}
.nav-client:hover { opacity: .88 !important; transform: translateY(-1px); }
.nav-client svg { width: 12px; height: 12px; }

/* Hamburger */
.nav-ham {
  display: none; padding: 6px; color: var(--text-1);
  border-radius: 8px; transition: background .2s;
}
.nav-ham:hover { background: rgba(255,255,255,0.07); }
.nav-ham svg { display: block; width: 22px; height: 22px; }

/* Mobile drawer */
.nav-drawer {
  display: none; position: fixed; inset: 0;
  background: rgba(10,15,30,0.98); backdrop-filter: blur(20px);
  z-index: 800; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
}
.nav-drawer.open { display: flex; }
.nav-drawer > a {
  font-family: var(--font-d); font-size: 24px; font-weight: 600;
  color: var(--text-2); padding: 12px 32px; border-radius: 12px;
  transition: color .2s, background .2s; text-align: center; width: 100%; max-width: 320px;
}
.nav-drawer > a:hover { color: var(--text-1); background: rgba(255,255,255,0.05); }
.drawer-group { width: 100%; max-width: 320px; }
.drawer-group-label {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-3);
  padding: 10px 32px 4px; text-align: center;
}
.drawer-group a {
  display: block; font-size: 18px; font-weight: 500;
  color: var(--text-2); padding: 9px 32px; border-radius: 10px;
  transition: color .2s, background .2s; text-align: center;
}
.drawer-group a:hover { color: var(--text-1); background: rgba(255,255,255,0.05); }
.drawer-client {
  margin-top: 12px; background: var(--accent) !important;
  color: var(--bg) !important; font-family: var(--font-d);
  font-size: 18px !important; font-weight: 600 !important;
  padding: 14px 40px !important; border-radius: 12px !important;
}
.drawer-close {
  position: absolute; top: 24px; right: 28px;
  padding: 8px; color: var(--text-2); border-radius: 8px;
  font-size: 22px; transition: color .2s; background: none; border: none; cursor: pointer;
}
.drawer-close:hover { color: var(--text-1); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--bg); border-top: 1px solid var(--bdr); padding: 40px 0;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-d); font-size: 16px; font-weight: 700;
}
.footer-logo .f-icon {
  width: 26px; height: 26px; background: var(--accent);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: var(--bg);
}
.footer-logo .f-icon svg { width: 14px; height: 14px; }
.footer-logo em { font-style: normal; color: var(--accent); }
.footer-copy { font-size: 12.5px; color: var(--text-3); margin-top: 4px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-3); transition: color .2s; }
.footer-links a:hover { color: var(--text-1); }

/* ── HERO (homepage) ────────────────────────────────────── */
.hero-section {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 130px 28px 80px; text-align: center;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(0,212,200,0.13) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,212,200,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-dim); border: 1px solid var(--accent-bdr);
  border-radius: 100px; padding: 6px 16px 6px 10px;
  font-size: 13px; font-weight: 500; color: var(--accent);
  margin-bottom: 28px; position: relative; z-index: 1;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success); position: relative; flex-shrink: 0;
}
.pulse::after {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  background: rgba(16,185,129,0.35); animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(2.2); opacity: 0; } }
.hero-h1 {
  font-family: var(--font-d); font-size: clamp(42px, 7.5vw, 80px);
  font-weight: 800; line-height: 1.04; letter-spacing: -2.5px;
  color: var(--text-1); margin-bottom: 22px; position: relative; z-index: 1;
}
.hero-h1 em { font-style: normal; color: var(--accent); }
.hero-p {
  font-size: clamp(16px, 2vw, 19px); color: var(--text-2);
  max-width: 560px; margin: 0 auto 40px; line-height: 1.7;
  position: relative; z-index: 1;
}
.hero-btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 60px; position: relative; z-index: 1;
}
.hero-metrics {
  display: inline-flex; background: rgba(26,32,53,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--bdr-2); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: 0 4px 32px rgba(0,0,0,0.5), 0 0 60px rgba(0,212,200,0.08);
  position: relative; z-index: 1;
}
.hm-item { padding: 18px 28px; text-align: center; position: relative; }
.hm-item + .hm-item::before {
  content: ''; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px; background: var(--bdr-2);
}
.hm-val { font-family: var(--font-d); font-size: 24px; font-weight: 700; line-height: 1; margin-bottom: 5px; }
.hm-val.green { color: var(--success); }
.hm-val.teal  { color: var(--accent); }
.hm-lbl { font-size: 11px; font-weight: 500; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.8px; }

/* ── INNER PAGE HERO ────────────────────────────────────── */
.page-hero {
  padding: 160px 28px 80px; background: var(--bg);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--bdr);
}
.page-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(0,212,200,0.09) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 60% 80% at 20% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 20% 50%, black 30%, transparent 80%);
}
.page-hero .wrap { position: relative; z-index: 1; max-width: 720px; }
.page-hero .hero-h1 { font-size: clamp(32px, 5vw, 58px); text-align: left; margin-bottom: 18px; }
.page-hero .hero-p { text-align: left; margin: 0 0 32px; max-width: 540px; font-size: 17px; }

/* ── FEATURES ───────────────────────────────────────────── */
.feat-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
}
.feat-card {
  background: var(--bg-card); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); padding: 28px;
  transition: border-color .25s, transform .2s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.feat-card::after {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg,transparent,var(--accent-bdr),transparent);
  opacity: 0; transition: opacity .3s;
}
.feat-card:hover { border-color: var(--accent-bdr); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.feat-card:hover::after { opacity: 1; }
.feat-icon {
  width: 44px; height: 44px; background: var(--accent-dim);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 18px;
}
.feat-icon svg { width: 20px; height: 20px; }
.feat-title { font-family: var(--font-d); font-size: 16px; font-weight: 600; color: var(--text-1); margin-bottom: 8px; }
.feat-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

/* ── ABOUT MICHAEL ──────────────────────────────────────── */
#about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: center; }
.about-avatar-wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.about-avatar {
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--accent-bdr);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 52px; font-weight: 800;
  color: var(--accent); letter-spacing: -2px;
  box-shadow: 0 0 40px rgba(0,212,200,0.12);
  flex-shrink: 0;
}
.about-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
}
.about-location svg { width: 14px; height: 14px; color: var(--accent); }
.about-content blockquote {
  font-family: var(--font-d); font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600; line-height: 1.4; color: var(--text-1);
  margin-bottom: 20px; letter-spacing: -0.4px;
}
.about-content blockquote em { font-style: normal; color: var(--accent); }
.about-content p {
  font-size: 15.5px; color: var(--text-2); line-height: 1.75; margin-bottom: 16px;
}
.about-content p:last-of-type { margin-bottom: 0; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.about-tag {
  display: flex; align-items: center; gap: 6px;
  background: var(--accent-dim); border: 1px solid var(--accent-bdr);
  border-radius: 100px; padding: 5px 12px;
  font-size: 12px; font-weight: 600; color: var(--accent);
}
.about-tag svg { width: 11px; height: 11px; }

/* ── HOW IT WORKS ───────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 32px;
  left: calc(16.67% + 16px); right: calc(16.67% + 16px);
  border-top: 1px dashed rgba(0,212,200,0.3); pointer-events: none;
}
.step { padding: 0 16px; }
.step-num {
  width: 64px; height: 64px; background: var(--bg-card);
  border: 1px solid var(--accent-bdr); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 20px; font-weight: 700; color: var(--accent);
  margin-bottom: 24px; position: relative; z-index: 1;
}
.step-title { font-family: var(--font-d); font-size: 20px; font-weight: 600; color: var(--text-1); margin-bottom: 10px; }
.step-desc { font-size: 14.5px; color: var(--text-2); line-height: 1.7; }

/* ── WHY SECTION ────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 26px; margin-top: 32px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-check {
  width: 22px; height: 22px; background: var(--accent-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 3px; color: var(--accent);
}
.why-check svg { width: 10px; height: 10px; }
.why-item-h { font-family: var(--font-d); font-size: 15px; font-weight: 600; color: var(--text-1); margin-bottom: 4px; }
.why-item-p { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

/* Dashboard panel */
.dash-panel { background: var(--bg-card); border: 1px solid var(--bdr); border-radius: var(--r-lg); overflow: hidden; }
.dash-titlebar {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px; border-bottom: 1px solid var(--bdr);
  background: rgba(255,255,255,0.02);
}
.dot-row { display: flex; gap: 6px; }
.dot-row span { width: 10px; height: 10px; border-radius: 50%; }
.dot-row span:nth-child(1) { background: var(--danger); }
.dot-row span:nth-child(2) { background: var(--amber); }
.dot-row span:nth-child(3) { background: var(--success); }
.dash-url { font-size: 12px; color: var(--text-3); font-family: monospace; margin-left: 4px; }
.dash-body { padding: 8px 0; }
.dash-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 20px; border-bottom: 1px solid var(--bdr);
}
.dash-row:last-child { border-bottom: none; }
.dash-key { font-size: 13px; color: var(--text-2); font-weight: 500; }
.dash-val { font-size: 13px; font-weight: 600; font-family: var(--font-d); }
.dash-val.green { color: var(--success); }
.dash-val.teal  { color: var(--accent); }
.dash-val.amber { color: var(--amber); }
.dash-bar-wrap { display: flex; align-items: center; gap: 10px; }
.bar-track { width: 80px; height: 4px; background: var(--bdr-2); border-radius: 2px; overflow: hidden; }
.bar-fill  { height: 100%; border-radius: 2px; background: var(--success); }

/* ── STATS BAR ──────────────────────────────────────────── */
.stats-section {
  background: var(--bg-2); padding: 60px 0;
  border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr);
}
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; text-align: center; }
.stat-item { padding: 0 24px; position: relative; }
.stat-item + .stat-item::before { content: ''; position: absolute; left: 0; top: 10%; bottom: 10%; width: 1px; background: var(--bdr-2); }
.stat-num { font-family: var(--font-d); font-size: 44px; font-weight: 800; line-height: 1; letter-spacing: -1.5px; margin-bottom: 8px; }
.stat-num sup { font-size: 22px; font-weight: 600; letter-spacing: 0; color: var(--accent); vertical-align: super; margin-left: 2px; }
.stat-lbl { font-size: 14px; color: var(--text-2); font-weight: 500; }

/* ── CONTACT FORM ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.contact-meta { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.cm-item { display: flex; gap: 14px; align-items: flex-start; }
.cm-icon { width: 40px; height: 40px; background: var(--accent-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.cm-icon svg { width: 17px; height: 17px; }
.cm-lbl { font-size: 11px; color: var(--text-3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 2px; }
.cm-val { font-size: 15px; color: var(--text-1); font-weight: 500; }
.form-card { background: var(--bg-card); border: 1px solid var(--bdr); border-radius: var(--r-lg); padding: 40px; }
.form-card h3 { font-family: var(--font-d); font-size: 20px; font-weight: 700; margin-bottom: 26px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg label { font-size: 12.5px; font-weight: 500; color: var(--text-2); }
.fg input, .fg textarea, .fg select {
  background: var(--bg-2); border: 1px solid var(--bdr-2); border-radius: 8px;
  padding: 11px 14px; font-family: var(--font-b); font-size: 14px; color: var(--text-1);
  outline: none; width: 100%; transition: border-color .2s, box-shadow .2s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,212,200,0.10); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-3); }
.fg textarea { resize: vertical; min-height: 110px; }
.fg select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 38px; cursor: pointer; }
.fg select option { background: var(--bg-card); }
.form-submit { width: 100%; background: var(--accent); color: var(--bg); font-weight: 600; font-size: 15px; padding: 14px; border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; border: none; transition: opacity .2s, transform .15s, box-shadow .2s; margin-top: 18px; }
.form-submit:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,212,200,0.25); }
.form-submit:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
#form-success { display: none; text-align: center; padding: 56px 24px; }
#form-success .success-icon { width: 56px; height: 56px; background: rgba(16,185,129,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--success); }
#form-success .success-icon svg { width: 28px; height: 28px; }
#form-success h3 { font-family: var(--font-d); font-size: 22px; font-weight: 700; margin-bottom: 10px; }
#form-success p { color: var(--text-2); font-size: 15px; line-height: 1.6; }

/* ── PRICING ────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.plan-card {
  background: var(--bg-card); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); padding: 36px;
  position: relative; transition: border-color .25s, box-shadow .25s;
}
.plan-card:hover { border-color: var(--bdr-2); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.plan-card.featured {
  border-color: var(--accent-bdr);
  box-shadow: 0 0 0 1px var(--accent-bdr), 0 8px 40px rgba(0,212,200,0.12);
}
.plan-card.featured:hover { box-shadow: 0 0 0 1px var(--accent-bdr), 0 16px 48px rgba(0,212,200,0.18); }
.plan-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--accent); color: var(--bg);
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; margin-bottom: 20px;
}
.plan-name { font-family: var(--font-d); font-size: 22px; font-weight: 700; color: var(--text-1); margin-bottom: 6px; }
.plan-tagline { font-size: 13.5px; color: var(--text-2); margin-bottom: 28px; line-height: 1.5; }
.plan-price { margin-bottom: 28px; }
.plan-price .amount {
  font-family: var(--font-d); font-size: 52px; font-weight: 800;
  color: var(--text-1); line-height: 1; letter-spacing: -2px;
}
.plan-price .currency { font-size: 24px; font-weight: 600; vertical-align: top; margin-top: 10px; display: inline-block; color: var(--text-2); }
.plan-price .period { font-size: 14px; color: var(--text-3); margin-top: 6px; }
.plan-divider { height: 1px; background: var(--bdr); margin-bottom: 24px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-2); line-height: 1.5; }
.plan-features li svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.plan-features li.muted svg { color: var(--text-3); }
.plan-features li.muted { color: var(--text-3); }
.plan-cta { display: block; text-align: center; padding: 13px; border-radius: 10px; font-weight: 600; font-size: 15px; transition: opacity .2s, transform .15s, box-shadow .2s, background .2s, border-color .2s; }
.plan-cta.primary { background: var(--accent); color: var(--bg); }
.plan-cta.primary:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,212,200,0.25); }
.plan-cta.secondary { background: transparent; color: var(--text-1); border: 1px solid var(--bdr-2); }
.plan-cta.secondary:hover { background: rgba(255,255,255,0.05); border-color: var(--accent-bdr); }
.pricing-note {
  text-align: center; margin-top: 32px;
  font-size: 14px; color: var(--text-3); line-height: 1.6;
}
.pricing-note strong { color: var(--text-2); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--bdr); }
.faq-item:first-child { border-top: 1px solid var(--bdr); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 0; text-align: left;
  font-family: var(--font-d); font-size: 16px; font-weight: 600; color: var(--text-1);
  background: none; border: none; cursor: pointer; transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s; color: var(--text-3); }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--accent); }
.faq-a { display: none; padding-bottom: 20px; font-size: 14.5px; color: var(--text-2); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── SERVICE AREA CTA SECTION ───────────────────────────── */
.area-cta-section { background: var(--bg-2); padding: 80px 0; border-top: 1px solid var(--bdr); }
.area-cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.area-cta-inner .s-title { margin-bottom: 12px; }
.area-cta-inner .s-sub { margin: 0 auto 32px; text-align: center; }
.area-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── LOCAL POINTS LIST ──────────────────────────────────── */
.local-points { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 48px; }
.local-point { background: var(--bg-card); border: 1px solid var(--bdr); border-radius: var(--r-lg); padding: 28px; }
.local-point-icon { width: 40px; height: 40px; background: var(--accent-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 14px; }
.local-point-icon svg { width: 18px; height: 18px; }
.local-point h3 { font-family: var(--font-d); font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--text-1); }
.local-point p { font-size: 13.5px; color: var(--text-2); line-height: 1.65; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .feat-grid    { grid-template-columns: repeat(2,1fr); }
  .why-grid     { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid   { grid-template-columns: 1fr; gap: 40px; }
  .about-avatar-wrap { flex-direction: row; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .local-points { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-drop { display: none; }
  .nav-ham    { display: block; }
  section     { padding: 72px 0; }
  .hero-metrics { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item::before { display: none; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { display: none; }
  .hero-btns  { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; max-width: 320px; }
  .form-row2  { grid-template-columns: 1fr; }
  .form-card  { padding: 28px 22px; }
  .footer-inner { flex-direction: column; gap: 20px; }
  .footer-links { justify-content: center; }
  .area-cta-btns { flex-direction: column; align-items: center; }
  .feat-grid  { grid-template-columns: 1fr; }
  .page-hero  { padding: 130px 28px 60px; }
}
@media (max-width: 480px) {
  .about-avatar { width: 100px; height: 100px; font-size: 36px; }
}
