/* ============================================================
   LogoResort — Main CSS (v3 — Sales Funnel Redesign)
   ============================================================ */

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

:root {
  --black:    #ffffff;
  --surface:  #f5f5f5;
  --card:     #f9f9f9;
  --card2:    #f0f0f0;
  --border:   #e0e0e0;
  --border2:  #d0d0d0;
  --white:    #111111;
  --muted:    #666666;
  --subtle:   #aaaaaa;
  --lime:     #8bc200;
  --lime-dim: rgba(139,194,0,.07);
  --lime-mid: rgba(139,194,0,.15);
  --max:      1200px;
  --radius:   10px;
}

[data-theme="dark"] {
  --black:    #0f0f0f;
  --surface:  #161616;
  --card:     #1a1a1a;
  --card2:    #202020;
  --border:   #2a2a2a;
  --border2:  #333333;
  --white:    #f0f0f0;
  --muted:    #888888;
  --subtle:   #555555;
  --lime:     #c8ff00;
  --lime-dim: rgba(200,255,0,.07);
  --lime-mid: rgba(200,255,0,.15);
}
[data-theme="dark"] ::-webkit-scrollbar-thumb { background: #444; }

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 2px; }

/* ── CUSTOM CURSOR ─────────────────────────────────────────── */
#cur, #cur-ring {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%); transition: width .15s, height .15s, opacity .15s;
}
#cur { width: 8px; height: 8px; background: var(--lime); }
#cur-ring { width: 30px; height: 30px; border: 1.5px solid rgba(139,194,0,.6); opacity: .5; }
@media (pointer: coarse) { #cur, #cur-ring { display: none; } }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-style: italic; line-height: 1.05; letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.1rem; font-style: normal; }
.outline { -webkit-text-stroke: 1.5px var(--white); color: transparent; }
.lime { color: var(--lime); }
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--lime); margin-bottom: .6rem;
}
.section-sub { color: var(--muted); font-size: .95rem; margin-top: .6rem; max-width: 480px; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-primary, .btn-outline {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .95rem;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  padding: .75rem 1.6rem; border-radius: 6px; cursor: pointer; transition: all .2s; border: none;
}
.btn-primary { background: var(--lime); color: #080808; }
.btn-primary:hover { background: #a8d900; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(139,194,0,.3); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--border2); }
.btn-outline:hover { border-color: var(--lime); color: var(--lime); }

/* ── NAV ───────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem; transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
#nav.stuck { background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-color: var(--border); }
[data-theme="dark"] #nav.stuck { background: rgba(15,15,15,.96); }
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; height: 64px;
}
.logo {
  display: flex; align-items: center; gap: .5rem; text-decoration: none; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 900;
  font-style: italic; letter-spacing: .03em; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; gap: 0; }
.logo-name { line-height: 1; }
.logo-sub {
  font-size: .55rem; font-weight: 600; font-style: normal; letter-spacing: .15em;
  text-transform: uppercase; color: var(--subtle); line-height: 1; margin-top: 2px;
}
.logo-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 0 rgba(139,194,0,.5)} 50%{box-shadow:0 0 0 6px rgba(139,194,0,0)} }
.nav-links { display: flex; gap: .25rem; list-style: none; margin-left: auto; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .85rem; font-weight: 500; padding: .4rem .8rem; border-radius: 4px; transition: color .15s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-wl { color: var(--lime); font-weight: 600; }
.nav-links a.nav-wl:hover { color: var(--white); }
.nav-cta {
  background: var(--lime); color: #080808; text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif; font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: .5rem 1.1rem;
  border-radius: 5px; transition: background .15s; flex-shrink: 0;
}
.nav-cta:hover { background: #a8d900; }

/* ── THEME TOGGLE ───────────────────────────────────────────── */
.theme-toggle {
  background: var(--surface);
  border: 2px solid var(--muted);
  border-radius: 50px;
  width: 42px; height: 24px;
  cursor: pointer;
  position: relative;
  transition: border-color .2s, background .2s;
  flex-shrink: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.theme-toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--lime);
  transition: transform .2s;
}
[data-theme="dark"] .theme-toggle::after {
  transform: translateX(18px);
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .3rem; }
.hamburger span { width: 22px; height: 2px; background: var(--white); transition: all .25s; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 2rem 5rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 65% 50%, rgba(200,255,0,.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(139,194,0,.1); border: 1px solid rgba(139,194,0,.3);
  border-radius: 100px; padding: .35rem .9rem; font-size: .8rem; color: var(--lime); margin-bottom: 1.4rem;
}
.badge-stars { font-size: .75rem; letter-spacing: 1px; }
.hero-text h1 { margin-bottom: 1.2rem; }
.hero-sub { color: var(--muted); font-size: 1rem; max-width: 440px; margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 900; font-style: italic; line-height: 1; }
.stat-num span { color: var(--lime); }
.stat-label { font-size: .75rem; color: var(--muted); margin-top: .2rem; }

.hero-visual { position: relative; }
.reel-card {
  background: var(--card); border: 1px solid var(--border2); border-radius: 16px;
  overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; position: relative;
}
.reel-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200,255,0,.06), transparent 70%);
}
.reel-inner { text-align: center; position: relative; z-index: 1; }
.reel-badge {
  font-family: 'Barlow Condensed', sans-serif; font-size: .65rem; font-weight: 700;
  letter-spacing: .25em; color: var(--lime); border: 1px solid rgba(139,194,0,.4);
  padding: .25rem .8rem; border-radius: 100px; margin-bottom: 2rem; display: inline-block;
}
.reel-lines { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem; align-items: center; }
.reel-line { height: 1px; background: linear-gradient(90deg, transparent, rgba(139,194,0,.4), transparent); width: 120px; }
.reel-play {
  width: 56px; height: 56px; border-radius: 50%; background: var(--lime); color: #080808;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  margin: 0 auto 1.5rem; box-shadow: 0 0 30px rgba(139,194,0,.35);
}
.reel-label { font-size: .72rem; color: var(--subtle); letter-spacing: .1em; }
.hero-floating-card {
  position: absolute; background: var(--card2); border: 1px solid var(--border2);
  border-radius: 10px; padding: .75rem 1rem; min-width: 110px;
  animation: float 4s ease-in-out infinite;
}
.hero-floating-card.fc1 { bottom: -1rem; left: -2rem; animation-delay: 0s; }
.hero-floating-card.fc2 { top: 1.5rem; right: -1.5rem; animation-delay: 1.5s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fc-num { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 900; font-style: italic; color: var(--lime); }
.fc-lbl { font-size: .72rem; color: var(--muted); margin-top: .1rem; }

/* ── TICKER ────────────────────────────────────────────────── */
.ticker { background: var(--lime); overflow: hidden; padding: .7rem 0; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker 28s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.t-item { font-family: 'Barlow Condensed', sans-serif; font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #080808; padding: 0 2.5rem; }
.t-sep { margin-left: 2.5rem; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SECTIONS ──────────────────────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-alt { background: var(--surface); }
.section-head {
  max-width: var(--max); margin: 0 auto 3.5rem;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap;
}
.section-cta { max-width: var(--max); margin: 3rem auto 0; text-align: center; }

/* ── PORTFOLIO ─────────────────────────────────────────────── */
.tabs { display: flex; gap: .5rem; flex-wrap: wrap; }
.tab {
  background: transparent; border: 1.5px solid var(--border2); color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif; font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: .5rem 1.2rem;
  border-radius: 5px; cursor: pointer; transition: all .2s;
}
.tab:hover { border-color: var(--lime); color: var(--lime); }
.tab.on { background: var(--lime); border-color: var(--lime); color: #080808; }
.panel { display: none; }
.panel.on { display: block; }
.pgrid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.pcard {
  border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 16/10; background: var(--card); cursor: pointer; transition: transform .3s, box-shadow .3s;
}
.pcard:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.12); }
.pcard.wide { grid-column: span 2; aspect-ratio: 2/1; }
.ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ph-icon { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; font-style: italic; color: rgba(0,0,0,.12); }
.ph-label { font-size: .75rem; color: rgba(0,0,0,.3); margin-top: .4rem; }
.poverlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.2rem;
}
.pcard:hover .poverlay { opacity: 1; }
.p-type { font-size: .7rem; color: var(--lime); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .25rem; }
.p-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 900; font-style: italic; color: #fff; }

/* ── FEATURES ──────────────────────────────────────────────── */
.features-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.fcard {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem;
  transition: border-color .2s, transform .2s;
}
.fcard:hover { border-color: rgba(139,194,0,.4); transform: translateY(-2px); }
.fcard-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 900;
  font-style: italic; color: rgba(139,194,0,.25); line-height: 1; margin-bottom: 1rem;
}
.fcard h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; font-style: normal; }
.fcard p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── PROCESS ───────────────────────────────────────────────── */
.process-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: calc(1.5rem + 20px); left: calc(100% / 6); right: calc(100% / 6);
  height: 1px; background: linear-gradient(90deg, var(--border), rgba(139,194,0,.4), var(--border));
}
.pstep-card { padding: 1.5rem; text-align: center; position: relative; }
.pstep-dot {
  width: 40px; height: 40px; border-radius: 50%; background: var(--card); border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
  position: relative; z-index: 1;
  font-family: 'Barlow Condensed', sans-serif; font-size: .7rem; font-weight: 700;
  color: var(--lime); letter-spacing: .05em; transition: background .2s, border-color .2s;
}
.pstep-card:hover .pstep-dot { background: var(--lime-dim); border-color: var(--lime); }
.pstep-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.pstep-desc { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* ── REVIEWS ───────────────────────────────────────────────── */
.rev-head {
  max-width: var(--max); margin: 0 auto 3rem;
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 2rem;
}
.score-block { display: flex; align-items: center; gap: 1.25rem; }
.score-big { font-family: 'Barlow Condensed', sans-serif; font-size: 4rem; font-weight: 900; font-style: italic; color: var(--lime); line-height: 1; }
.score-stars { color: #f5c842; font-size: 1rem; letter-spacing: 2px; }
.score-lbl { font-size: .8rem; color: var(--muted); margin: .2rem 0; }
.gbadge { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--muted); }
.gcircle { width: 18px; height: 18px; border-radius: 50%; background: #4285f4; color: #fff; font-size: .65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.reviews-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.rcard { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: border-color .2s; }
.rcard:hover { border-color: rgba(200,255,0,.2); }
.rtop { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; }
.ravatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--lime-mid); color: var(--lime);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.rname { font-size: .9rem; font-weight: 600; }
.rmeta { font-size: .75rem; color: var(--muted); }
.rstars { color: #f5c842; font-size: .85rem; letter-spacing: 1px; margin-bottom: .75rem; }
.rtext { font-size: .85rem; color: var(--muted); line-height: 1.6; font-style: italic; margin-bottom: .75rem; }
.rverified { font-size: .7rem; color: var(--subtle); }

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; align-items: start;
}
.price-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem;
  position: relative; transition: transform .2s, border-color .2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.highlight { border-color: var(--lime); background: var(--card2); }
.price-card.highlight::before {
  content: 'MOST POPULAR'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: #080808;
  font-family: 'Barlow Condensed', sans-serif; font-size: .65rem; font-weight: 700;
  letter-spacing: .15em; padding: .25rem .9rem; border-radius: 0 0 6px 6px;
}
.price-tier { font-family: 'Barlow Condensed', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .2em; color: var(--lime); text-transform: uppercase; margin-bottom: .5rem; }
.price-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 900; font-style: italic; line-height: 1; margin-bottom: .4rem; }
.price-desc { font-size: .83rem; color: var(--muted); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.75rem; }
.price-features li { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: .6rem; }
.price-features li::before { content: '✓'; color: var(--lime); font-weight: 700; flex-shrink: 0; }
.price-card .btn-primary, .price-card .btn-outline { width: 100%; justify-content: center; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: 'Barlow', sans-serif; font-size: .95rem; font-weight: 600;
  text-align: left; padding: 1.25rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color .2s;
}
.faq-q:hover { color: var(--lime); }
.faq-icon { font-size: 1.4rem; color: var(--lime); flex-shrink: 0; transition: transform .3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; font-size: .88rem; color: var(--muted); padding-bottom: 1.25rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT FORM ──────────────────────────────────────────── */
.contact-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start;
}
.contact-perks { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.5rem; }
.perk { font-size: .88rem; color: var(--muted); }
.contact-form {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 4px 32px rgba(0,0,0,.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.form-field:last-of-type { margin-bottom: 0; }
.form-field label {
  font-size: .78rem; font-weight: 700; color: var(--white);
  letter-spacing: .06em; text-transform: uppercase;
}
.form-field label span { text-transform: none; letter-spacing: 0; font-weight: 400; }
.form-field input, .form-field select, .form-field textarea {
  background: #fff; border: 1.5px solid var(--border2); border-radius: 8px;
  color: var(--white); font-family: 'Barlow', sans-serif; font-size: .92rem;
  padding: .8rem 1rem; outline: none; transition: border-color .2s, box-shadow .2s;
  width: 100%; resize: vertical;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--subtle); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--lime); box-shadow: 0 0 0 3px rgba(139,194,0,.12);
}
.form-field select { cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-field select option { background: #fff; color: var(--white); }

/* File upload */
.file-upload-label {
  display: flex; align-items: center; gap: .75rem;
  background: #fff; border: 1.5px dashed var(--border2); border-radius: 8px;
  padding: .8rem 1rem; cursor: pointer; transition: border-color .2s;
  font-size: .88rem; color: var(--muted);
}
.file-upload-label:hover { border-color: var(--lime); color: var(--white); }
.file-upload-label svg { flex-shrink: 0; }
.file-upload-label input[type=file] { display: none; }
.file-upload-name { color: var(--lime); font-size: .82rem; margin-top: .35rem; display: none; }

/* Captcha */
#captcha-box { animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }
#captcha-answer.captcha-error { border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,.12); }

.form-submit-row { margin-top: 1.5rem; }
.form-success {
  background: rgba(139,194,0,.1); border: 1px solid rgba(139,194,0,.4); border-radius: 8px;
  padding: 1rem 1.25rem; color: var(--lime); font-size: .88rem; margin-top: 1rem;
  display: flex; align-items: center; gap: .5rem;
}

/* ── BLOG ──────────────────────────────────────────────────── */
.blog-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.bcard { text-decoration: none; color: var(--white); background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .2s, border-color .2s; display: block; }
.bcard:hover { transform: translateY(-4px); border-color: rgba(200,255,0,.2); }
.bthumb { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
.bthumb-big { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; font-style: italic; color: rgba(255,255,255,.2); }
.bbody { padding: 1.4rem; }
.btag { font-size: .7rem; color: var(--lime); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; }
.bcard h3 { font-size: 1rem; font-weight: 700; font-style: normal; margin-bottom: .5rem; line-height: 1.3; }
.bcard p { font-size: .83rem; color: var(--muted); line-height: 1.55; margin-bottom: .9rem; }
.bread { font-size: .78rem; color: var(--lime); font-weight: 600; }
.soc-bar { max-width: var(--max); margin: 2.5rem auto 0; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.soc-label { font-size: .8rem; color: var(--muted); }
.soclink { text-decoration: none; color: var(--muted); font-size: .8rem; border: 1px solid var(--border); padding: .35rem .8rem; border-radius: 4px; transition: all .15s; }
.soclink:hover { color: var(--lime); border-color: var(--lime); }

/* ── FOOTER ────────────────────────────────────────────────── */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; display: flex; }
.footer-brand p { font-size: .84rem; color: var(--muted); line-height: 1.65; max-width: 300px; margin-bottom: .9rem; }
.footer-email { font-size: .85rem; color: var(--lime); text-decoration: none; }
.footer-email:hover { text-decoration: underline; }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: .84rem; transition: color .15s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .78rem; color: var(--subtle); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .78rem; color: var(--subtle); text-decoration: none; }
.footer-links a:hover { color: var(--muted); }

/* ── WHATSAPP FLOAT ────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 8000;
  display: flex; align-items: center; gap: .65rem;
  background: #25d366; color: #fff;
  padding: .7rem 1.1rem .7rem .9rem; border-radius: 100px;
  text-decoration: none; font-family: 'Barlow', sans-serif;
  font-size: .85rem; font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  max-width: 54px; overflow: hidden;
  white-space: nowrap;
}
.wa-float:hover {
  max-width: 200px;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; fill: #fff; }
.wa-float span { opacity: 0; transition: opacity .2s .05s; pointer-events: none; }
.wa-float:hover span { opacity: 1; }

/* ── ADMIN LINK ────────────────────────────────────────────── */
.admin-link {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  background: var(--card2); color: var(--lime); border: 1px solid var(--border2);
  padding: .45rem .9rem; font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; z-index: 8000; border-radius: 5px; transition: background .2s;
}
.admin-link:hover { background: var(--border2); }

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .faq-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--border); padding: 1rem; }
  [data-theme="dark"] .nav-links { background: rgba(15,15,15,.98); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .75rem 1rem; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-cta { display: none; }
  #nav { position: relative; padding: 0 1rem; }
  #nav.stuck { position: fixed; }
  .hero { min-height: auto; padding: 5rem 1.25rem 4rem; }
  .hero-actions { flex-direction: column; }
  .section { padding: 4rem 1.25rem; }
  .pgrid { grid-template-columns: 1fr 1fr; }
  .pcard.wide { grid-column: span 2; }
  .features-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .rev-head, .section-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .pgrid { grid-template-columns: 1fr; }
  .pcard.wide { grid-column: span 1; aspect-ratio: 16/10; }
  .process-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { padding: 1.5rem; }
  .price-amount { font-size: 2.2rem; }
  .price-features li { font-size: .8rem; }
  .price-card.highlight::before { font-size: .6rem; padding: .2rem .7rem; }
  .price-card .btn-primary { padding: .65rem 1.2rem; font-size: .8rem; }
  .score-block { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .score-big { font-size: 2.5rem; }
}
