/* =============================================
   LEZAEYE.COM — STYLESHEET
   Clean · Fast · Mobile-First
   ============================================= */

:root {
  --bg:       #060a0f;
  --bg2:      #0b1018;
  --surface:  #101820;
  --border:   #1c2a3a;
  --accent:   #00e5ff;
  --accent2:  #ff6b35;
  --text:     #ddeeff;
  --muted:    #6888a0;
  --font-h:   'Syne', sans-serif;
  --font-b:   'Inter', sans-serif;
  --ease:     cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
img { max-width: 100%; display: block; }
button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

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

/* ── NAV ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.8rem;
  transition: background .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,10,15,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--text);
}
.nav-logo span { color: var(--accent); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-menu a {
  font-family: var(--font-b);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s;
  padding: .5rem 0;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--text); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s var(--ease);
  transform-origin: center;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #060a0f;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  padding: .8rem 1.8rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  min-height: 48px;
  transition: background .25s, transform .2s, box-shadow .25s;
  touch-action: manipulation;
}
.btn-primary:hover { background: #00ccee; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,229,255,.25); }
.btn-primary:active { transform: scale(.97); }
.btn-primary.btn-large { padding: 1rem 2.2rem; font-size: .95rem; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 500;
  font-size: .88rem;
  padding: .8rem 1.8rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  min-height: 48px;
  transition: border-color .25s, color .25s;
  touch-action: manipulation;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#droneCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 1.5rem 4rem;
  width: 100%;
}
.hero-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,229,255,.25);
  background: rgba(0,229,255,.07);
  padding: .4rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-desc {
  color: var(--muted);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  max-width: 500px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ── SECTION SHARED ── */
.section { padding: 6rem 0; }
.section-tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 2.5rem;
}

/* ── SERVICES ── */
.services { background: var(--bg2); }
.services .section-tag,
.services .section-title { text-align: center; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,229,255,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,229,255,.08); }
.card:hover::before { opacity: 1; }
.card--soon { border-style: dashed; border-color: rgba(255,107,53,.35); }
.card--soon:hover { border-color: var(--accent2); box-shadow: 0 16px 40px rgba(255,107,53,.08); }
.card--soon::before { background: linear-gradient(135deg, rgba(255,107,53,.04) 0%, transparent 60%); }
.soon-pill {
  display: inline-block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent2);
  border: 1px solid rgba(255,107,53,.4);
  background: rgba(255,107,53,.1);
  padding: .25rem .6rem;
  border-radius: 100px;
  margin-bottom: .8rem;
}
.card-icon {
  width: 40px; height: 40px;
  color: var(--accent);
  margin-bottom: 1rem;
  transition: transform .3s;
}
.card--soon .card-icon { color: var(--accent2); }
.card:hover .card-icon { transform: scale(1.1); }
.card h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .6rem;
}
.card p { color: var(--muted); font-size: .85rem; line-height: 1.6; margin-bottom: 1.2rem; }
.card-link { color: var(--accent); font-size: .8rem; font-weight: 600; letter-spacing: .04em; transition: letter-spacing .25s; }
.card--soon .card-link { color: var(--accent2); }
.card:hover .card-link { letter-spacing: .1em; }

/* ── WHY ── */
.why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#droneCanvas2 {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 16px;
}
.why-content .section-title { margin-bottom: 1.8rem; }
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-bottom: 2rem;
}
.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: .1rem;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,229,255,.08);
  border: 1px solid rgba(0,229,255,.15);
  border-radius: 8px;
}
.why-list strong { display: block; color: var(--text); font-weight: 600; margin-bottom: .2rem; }
.why-list p { color: var(--muted); font-size: .88rem; margin: 0; }

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, #0d1f2f, #091420);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: .3rem;
}
.cta-inner p { color: var(--muted); font-size: .9rem; }

/* ── FOOTER ── */
.footer { background: var(--bg); padding: 4rem 0 1.5rem; border-top: 1px solid var(--border); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer p { color: var(--muted); font-size: .85rem; line-height: 1.7; margin-bottom: .3rem; }
.footer h5 {
  font-family: var(--font-h);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .9rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .5rem; }
.footer ul a { color: var(--muted); font-size: .85rem; transition: color .2s; }
.footer ul a:hover { color: var(--accent); }
.footer a { color: var(--accent); }
.faa-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,229,255,.2);
  background: rgba(0,229,255,.06);
  padding: .35rem .75rem;
  border-radius: 6px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: .78rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 9rem 0 4rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.page-hero-glow {
  position: absolute;
  width: 500px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,.09), transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
  filter: blur(40px);
}
.page-hero .section-tag { margin-bottom: .4rem; }
.page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  margin-bottom: 1rem;
}
.page-hero p { color: var(--muted); font-size: 1rem; max-width: 500px; }

/* ── CONTENT SECTION ── */
.content-section { padding: 5rem 0; }
.content-section:nth-child(even) { background: var(--bg2); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.content-grid.flip { direction: rtl; }
.content-grid.flip > * { direction: ltr; }
.content-text h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.content-text p { color: var(--muted); font-size: .9rem; margin-bottom: .8rem; }
.check-list { list-style: none; margin: 1.2rem 0 1.8rem; }
.check-list li {
  color: var(--muted);
  font-size: .88rem;
  padding: .4rem 0 .4rem 1.4rem;
  position: relative;
}
.check-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }
.content-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  gap: 1rem;
}
.visual-emoji { font-size: 4rem; }
.visual-chips {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
}
.chip {
  background: rgba(0,229,255,.07);
  border: 1px solid rgba(0,229,255,.15);
  border-radius: 7px;
  padding: .5rem .9rem;
  font-size: .8rem;
  color: var(--muted);
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.p-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color .3s, transform .3s;
}
.p-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #0d2133, #0a1a28);
}
.p-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.p-tier {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .4rem;
}
.p-name {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .4rem;
}
.p-desc { color: var(--muted); font-size: .82rem; margin-bottom: 1.5rem; }
.p-features { list-style: none; margin-bottom: 1.8rem; }
.p-features li {
  color: var(--muted);
  font-size: .83rem;
  padding: .35rem 0 .35rem 1.3rem;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.p-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.p-note { color: var(--muted); font-size: .78rem; text-align: center; margin-top: 1.5rem; }

/* ── CONTACT FORM ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.c-info h3 {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .8rem;
}
.c-info p { color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; }
.c-detail {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .9rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: .8rem;
  transition: border-color .25s;
}
.c-detail:hover { border-color: rgba(0,229,255,.3); }
.c-detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.c-detail-label { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .15rem; font-weight: 600; }
.c-detail-val { font-size: .9rem; color: var(--text); font-weight: 500; }
.c-detail-val a { color: var(--accent); }
.faa-box {
  margin-top: 1.5rem;
  background: rgba(0,229,255,.05);
  border: 1px solid rgba(0,229,255,.15);
  border-radius: 10px;
  padding: 1rem 1.2rem;
}
.faa-box p { color: var(--muted); font-size: .83rem; margin: 0; }
.faa-box strong { color: var(--accent); }

.c-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}
.c-form h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
}
.c-form > p { color: var(--muted); font-size: .83rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.fg { margin-bottom: .9rem; }
.fg label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  padding: .75rem 1rem;
  border-radius: 8px;
  outline: none;
  transition: border-color .25s;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,229,255,.08);
}
.fg input::placeholder, .fg textarea::placeholder { color: #3a5060; }
.fg textarea { resize: vertical; min-height: 110px; }
.fg select option { background: #0b1018; }
.form-submit {
  width: 100%;
  margin-top: .5rem;
  font-size: .95rem;
}

/* ── SOON PAGE ── */
.soon-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.soon-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.12), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  filter: blur(60px);
}
.soon-content { position: relative; z-index: 2; max-width: 600px; }
.soon-emoji { font-size: 4rem; display: block; margin-bottom: 1.2rem; }
.soon-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,107,53,.1);
  border: 1px solid rgba(255,107,53,.3);
  color: var(--accent2);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.soon-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent2);
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.soon-content h1 {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  font-weight: 800;
  line-height: .95;
  color: var(--text);
  margin-bottom: 1rem;
}
.soon-content h1 span { color: var(--accent2); }
.soon-content p { color: var(--muted); font-size: .95rem; margin-bottom: 2rem; line-height: 1.7; }
.soon-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: .8rem;
  margin-bottom: 2rem;
  text-align: left;
}
.soon-item {
  background: var(--surface);
  border: 1px solid rgba(255,107,53,.15);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  gap: .8rem;
  align-items: flex-start;
}
.soon-item .si-icon { font-size: 1.3rem; flex-shrink: 0; }
.soon-item strong { display: block; font-size: .85rem; color: var(--text); margin-bottom: .15rem; }
.soon-item p { font-size: .78rem; color: var(--muted); margin: 0; line-height: 1.5; }
.soon-btns { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ── FAB ── */
.fab {
  display: none;
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom,0px));
  right: 1.2rem;
  z-index: 99;
  background: var(--accent);
  color: #060a0f;
  font-weight: 700;
  font-family: var(--font-b);
  font-size: .85rem;
  padding: .8rem 1.3rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0,229,255,.4);
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  touch-action: manipulation;
  transition: transform .2s, box-shadow .2s;
}
.fab:active { transform: scale(.95); }

/* ── SUCCESS OVERLAY ── */
#successOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,10,15,.97);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
}
#successOverlay h2 {
  font-family: var(--font-h);
  font-size: 2.5rem;
  color: var(--accent);
  margin: 1rem 0 .5rem;
}
#successOverlay p { color: var(--muted); margin-bottom: 1.5rem; }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-visual { display: none; }
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .content-grid.flip { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  /* Nav */
  .nav { padding: 1rem 1.2rem; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(6,10,15,.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 100;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu li { width: 100%; text-align: center; border-bottom: 1px solid var(--border); }
  .nav-menu li:first-child { border-top: 1px solid var(--border); }
  .nav-menu a { display: block; font-size: 1rem; padding: 1.1rem 0; }
  .nav-menu a::after { display: none; }

  /* Hero */
  .hero-content { padding: 6rem 1.2rem 5rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { text-align: center; }
  .hero-scroll { display: none; }

  /* Sections */
  .section { padding: 4rem 0; }
  .content-section { padding: 3.5rem 0; }
  .cards { grid-template-columns: 1fr; gap: 1rem; }
  .cta-inner { flex-direction: column; align-items: stretch; }
  .cta-inner .btn-primary { text-align: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding-bottom: calc(5rem + env(safe-area-inset-bottom,0px)); }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .c-form { padding: 1.5rem 1.2rem; }

  /* Page hero */
  .page-hero { padding: 7rem 0 3rem; }

  /* FAB */
  .fab { display: flex; }

  /* Soon */
  .soon-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 3rem; }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .nav { padding-top: max(1rem, env(safe-area-inset-top)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}


/* Enhancements */
.card,.btn-primary,.btn-secondary,.c-form{transition:all .3s ease}
.card:hover{transform:translateY(-8px)}
.hero-content{animation:fadeUp .9s ease}
@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:none}}
input,textarea,select{width:100%;padding:14px;border-radius:8px}
@media (max-width:768px){.hero-btns{display:flex;flex-direction:column;gap:12px}.container{padding:0 1rem}}


/* Mobile hero improvements */
@media (max-width: 768px) {
  .hero-content{
    padding-top: 6rem;
  }

  .hero-title{
    font-size: clamp(2.6rem, 14vw, 4.5rem);
    line-height: .95;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    word-break: keep-all;
  }

  .hero-title em{
    display:block;
  }

  .hero-desc{
    font-size: 1.05rem;
    max-width: 100%;
  }

  .hero-btns{
    display:flex;
    flex-direction:column;
    gap:12px;
  }

  .hero-btns a{
    width:100%;
  }

  .btn-primary{
    box-shadow: 0 0 24px rgba(0,229,255,.25);
  }

  .hero-tag{
    font-size:.75rem;
  }
}

/* subtle premium animations */
.hero-title{
  animation: fadeHero .8s ease-out;
}

.hero-desc{
  animation: fadeHero 1.1s ease-out;
}

@keyframes fadeHero{
  from{
    opacity:0;
    transform:translateY(18px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
