/*
Theme Name: Wikotick
Theme URI: https://wicotick.com
Author: Wanmor
Author URI: https://wicotick.com
Description: Wikotick landing page — MikroTik WiFi Zone management app
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: wikotick
*/

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

:root {
  --black:       #0d0d0d;
  --black-soft:  #1a1a1a;
  --black-card:  #141414;
  --white:       #ffffff;
  --gray-muted:  #888888;
  --gray-line:   rgba(255,255,255,0.08);
  --orange:      #E65100;
  --orange-mid:  #FF6D00;
  --orange-glow: rgba(230,81,0,0.18);
  --orange-text: #FF7043;
  --green-gain:  #3ddc84;
  --red-loss:    #ff4d4d;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-glow);
  border: 1px solid rgba(230,81,0,0.35);
  color: var(--orange-text);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}
.section-title span { color: var(--orange); }
.section-sub {
  font-size: 16px; color: var(--gray-muted);
  max-width: 620px; margin-top: 14px;
  text-wrap: pretty;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; text-decoration: none;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12); opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(230,81,0,0.45); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-size: 14px; font-weight: 600;
  padding: 13px 28px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer; text-decoration: none;
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ── STORE BUTTONS ── */
.store-btns { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--black);
  font-size: 13px; font-weight: 700;
  padding: 11px 20px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; text-decoration: none;
  transition: var(--transition); line-height: 1.2;
}
.btn-store:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,255,255,0.18); }
.btn-store.dark {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-store.dark:hover { border-color: var(--white); box-shadow: 0 10px 32px rgba(255,255,255,0.08); }
.btn-store svg { flex-shrink: 0; }
.btn-store-text { display: flex; flex-direction: column; }
.btn-store-text small { font-size: 10px; font-weight: 500; opacity: 0.65; }
.btn-store-text span  { font-size: 14px; font-weight: 800; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-line);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-size: 22px; font-weight: 900;
  letter-spacing: -0.03em; color: var(--white);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0;
}
.logo img { height: 36px; width: auto; margin-right: 8px; }
.logo span { color: var(--orange); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none; transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 90px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('images/background_image.jpg');
  background-color: #1a0a00;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.4) 0%,
    rgba(13,13,13,0.65) 50%,
    rgba(13,13,13,0.98) 100%
  );
}
.hero-glow {
  position: absolute; z-index: 1;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,81,0,0.22) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(230,81,0,0.1) 0%, transparent 70%);
  bottom: 0; left: -50px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1000px;
  text-align: left;
}
.hero-content .tag { margin-bottom: 24px; }
.hero-title {
  font-size: clamp(32px, 6.2vw, 80px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--orange); white-space: nowrap; }
.hero-desc {
  font-size: 18px; color: rgba(255,255,255,0.72);
  max-width: 800px; line-height: 1.65;
  margin-bottom: 36px;
  text-wrap: pretty;
}
.hero-desc strong { color: var(--white); font-weight: 600; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero-proof {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 24px;
  font-size: 13px;
}
.hero-proof .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
}
.hero-proof .pill svg { color: var(--orange); flex-shrink: 0; }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 40px;
  margin-top: 64px; flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-size: 34px; font-weight: 900;
  color: var(--white); letter-spacing: -0.03em;
}
.stat-num span { color: var(--orange); }
.stat-label { font-size: 13px; color: var(--gray-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* ── SWITCHER BANNER ── */
.switcher-band {
  position: relative;
  padding: 18px 24px;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  background: var(--black);
}
.switcher-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  text-align: center;
}
.switcher-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-glow);
  border: 1px solid rgba(230,81,0,0.35);
  color: var(--orange-text);
  font-size: 11px; font-weight: 800;
  padding: 5px 11px; border-radius: 100px;
  letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap;
}
.switcher-text { font-size: 14px; color: rgba(255,255,255,0.75); }
.switcher-text strong { color: var(--white); font-weight: 700; }
.switcher-band a {
  color: var(--orange-text); font-size: 13px; font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}
.switcher-band a:hover { color: var(--orange); }

/* ── SECTION SPACING ── */
section { padding: 96px 0; }

/* ── FEATURES ── */
.features { background: var(--black); }
.features-header { text-align: center; margin-bottom: 60px; }
.features-header .section-sub { margin: 14px auto 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-line);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--black-card);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { background: #181818; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--orange-glow);
  border: 1px solid rgba(230,81,0,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--orange);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--gray-muted); line-height: 1.65; }

/* ── ONBOARDING CHECKLIST ── */
.onboarding { background: var(--black-soft); }
.onboarding-header { text-align: center; margin-bottom: 48px; }
.onboarding-header .section-sub { margin: 14px auto 0; }

.onboarding-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) { .onboarding-wrap { grid-template-columns: 1fr; gap: 40px; } }

.checklist {
  display: flex; flex-direction: column; gap: 14px;
}
.check-prep {
  background: linear-gradient(160deg, rgba(230,81,0,0.1), rgba(230,81,0,0.02));
  border: 1px dashed rgba(230,81,0,0.4);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 4px;
}
.check-prep-ico {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange-glow);
  border: 1px solid rgba(230,81,0,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.check-prep-text {
  font-size: 13px; color: rgba(255,255,255,0.8);
  line-height: 1.55;
}
.check-prep-text strong { color: var(--white); font-weight: 700; display: block; margin-bottom: 2px; letter-spacing: 0.02em; }
.check-prep-text code {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1px 6px; border-radius: 4px;
  font-family: inherit; font-size: 12px;
  color: var(--white);
}

.check-item {
  background: var(--black-card);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: var(--transition);
  position: relative;
}
.check-item.locked { opacity: 0.5; }
.check-item.active {
  border-color: var(--orange);
  background: linear-gradient(160deg, #1a0900 0%, var(--black-card) 100%);
  box-shadow: 0 12px 40px rgba(230,81,0,0.12);
}
.check-bullet {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.25);
}
.check-item.active .check-bullet {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(230,81,0,0.2);
}
.check-item.locked .check-bullet {
  border-color: rgba(255,255,255,0.1);
  background: transparent;
  color: rgba(255,255,255,0.3);
}
.check-body { flex: 1; min-width: 0; }
.check-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 6px;
}
.check-title {
  font-size: 15px; font-weight: 700; color: var(--white);
}
.check-item.locked .check-title { color: rgba(255,255,255,0.6); }
.check-lock {
  flex-shrink: 0;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: inline-flex; align-items: center; gap: 4px;
}
.check-lock svg { width: 12px; height: 12px; }
.check-desc {
  font-size: 13px; color: var(--gray-muted);
  line-height: 1.6;
}
.check-desc strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* Phone mock */
.phone-mock {
  width: 100%; max-width: 370px;
  margin: 0 auto;
  aspect-ratio: 12 / 21.5;
  background: #0a0a0a;
  border-radius: 70px;
  border: 10px solid #454545;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.phone-notch {
  position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 30px;
  background: #0a0a0a; border-radius: 100px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--black);
  border-radius: 45px;
  padding: 0;
  position: relative; overflow: hidden;
}
.phone-screen img {
  width: 100%; height: 100%;
  object-fit: fit;
  object-position: center top;
  display: block;
  border-radius: 30px;
}

/* ── COMPARISON ── */
.compare { background: var(--black); }
.compare-header { text-align: center; margin-bottom: 48px; }
.compare-header .section-sub { margin: 14px auto 0; }

.compare-table {
  max-width: 940px; margin: 0 auto;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--black-card);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  border-bottom: 1px solid var(--gray-line);
}
.compare-row:last-child { border-bottom: none; }
.compare-cell {
  padding: 18px 22px;
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
}
.compare-row.header .compare-cell {
  background: #0f0f0f;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  padding: 16px 22px;
}
.compare-row.header .compare-cell.us {
  color: var(--orange);
  background: linear-gradient(180deg, rgba(230,81,0,0.08), transparent);
}
.compare-row .compare-cell:first-child {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  border-right: 1px solid var(--gray-line);
}
.compare-row .compare-cell:nth-child(2) {
  color: rgba(255,255,255,0.5);
  border-right: 1px solid var(--gray-line);
}
.compare-row .compare-cell.us {
  color: var(--white);
  font-weight: 600;
  background: rgba(230,81,0,0.04);
}
.compare-cell .ico { flex-shrink: 0; display: inline-flex; }
.compare-cell .ico.cross { color: var(--red-loss); }
.compare-cell .ico.check { color: var(--green-gain); }

@media (max-width: 720px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-row .compare-cell:first-child,
  .compare-row .compare-cell:nth-child(2) { border-right: none; border-bottom: 1px dashed var(--gray-line); }
  .compare-row.header { display: none; }
  .compare-cell::before {
    content: attr(data-label);
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--gray-muted);
    margin-right: auto;
  }
}

/* ── LOGOS BELT ── */
.logos-belt {
  padding: 40px 0;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  overflow: hidden;
  background: var(--black);
}
.logos-belt-inner {
  display: flex; align-items: center;
  gap: 56px;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.logos-belt-inner:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-chip {
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
}

/* ── PRICING ── */
.pricing { background: var(--black-soft); }
.pricing-header { text-align: center; margin-bottom: 32px; }

.fee-callout {
  max-width: 760px; margin: 0 auto 44px;
  background: var(--black-card);
  border: 1px solid rgba(230,81,0,0.25);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  display: flex; align-items: center; gap: 22px;
  text-align: left;
}
.fee-callout .fee-big-num {
  font-size: 48px; font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
}
.fee-callout-text {
  font-size: 14px; color: rgba(255,255,255,0.8);
  line-height: 1.55;
}
.fee-callout-text strong { color: var(--white); font-weight: 700; }
.fee-callout-text .inline-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(61,220,132,0.12);
  color: var(--green-gain);
  border: 1px solid rgba(61,220,132,0.3);
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 100px;
  letter-spacing: 0.04em;
  margin-left: 4px;
  vertical-align: 1px;
}
@media (max-width: 520px) {
  .fee-callout { flex-direction: column; text-align: center; padding: 24px 20px; }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.pricing-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative; transition: var(--transition);
  display: flex; flex-direction: column;
}
.pricing-card:hover {
  border-color: rgba(230,81,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.pricing-card.featured {
  border-color: var(--orange);
  background: linear-gradient(160deg, #1e0c00 0%, var(--black-card) 100%);
}
.featured-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange);
  color: white; font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 100px;
  letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap;
}
.plan-name { font-size: 13px; font-weight: 700; color: var(--gray-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.plan-price {
  font-size: 42px; font-weight: 900; letter-spacing: -0.04em;
  color: var(--white); margin-bottom: 4px;
  display: flex; align-items: flex-start; gap: 4px;
}
.plan-period { font-size: 13px; color: var(--gray-muted); margin-bottom: 18px; }
.plan-note {
  font-size: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--orange);
  border-radius: 6px;
  padding: 10px 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  line-height: 1.5;
}
.plan-note strong { color: var(--white); font-weight: 600; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-features li {
  font-size: 14px; color: rgba(255,255,255,0.78);
  display: flex; align-items: flex-start; gap: 10px;
}
.plan-features li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--orange-glow);
  border: 1px solid rgba(230,81,0,0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23E65100' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-card .card-cta { margin-top: auto; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--black); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { border-color: rgba(230,81,0,0.2); }
.testimonial-card .switch-tag {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 800;
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid rgba(230,81,0,0.4);
  padding: 4px 10px; border-radius: 100px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.star { color: var(--orange); font-size: 14px; }
.testimonial-text {
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.testimonial-text .hl {
  background: rgba(230,81,0,0.12);
  color: var(--white);
  padding: 1px 4px;
  border-radius: 3px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #bf360c);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: white; flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; }
.author-role { font-size: 12px; color: var(--gray-muted); }

/* ── FAQ ── */
.faq { background: var(--black-soft); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--gray-line);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--gray-line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  background: transparent; border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 17px; font-weight: 600;
  padding: 24px 4px;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.faq-q:hover { color: var(--orange); }
.faq-q .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  position: relative;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: ''; position: absolute;
  background: currentColor;
  transition: var(--transition);
}
.faq-q .plus::before { width: 10px; height: 1.5px; }
.faq-q .plus::after  { width: 1.5px; height: 10px; }
.faq-item.open .faq-q { color: var(--orange); }
.faq-item.open .faq-q .plus { border-color: var(--orange); background: var(--orange-glow); }
.faq-item.open .faq-q .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 4px 24px;
  color: rgba(255,255,255,0.7);
  font-size: 15px; line-height: 1.7;
  max-width: 720px;
}
.faq-a-inner strong { color: var(--white); font-weight: 600; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--black);
  padding: 80px 24px;
}
.cta-box {
  max-width: 1160px; margin: 0 auto;
  background: linear-gradient(130deg, #1a0900 0%, #0d0d0d 60%);
  border: 1px solid rgba(230,81,0,0.25);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(230,81,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box .section-title { font-size: clamp(26px, 4vw, 48px); }
.cta-box .section-sub { margin: 16px auto 36px; }
.cta-box .cta-proof {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-top: 20px; flex-wrap: wrap;
}
.cta-box .cta-proof span {
  display: inline-flex; align-items: center; gap: 6px;
}
.cta-box .cta-proof svg { color: var(--orange); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--gray-line);
  padding: 60px 24px 32px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .logo { font-size: 20px; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--gray-muted); line-height: 1.65; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--gray-muted); text-decoration: none; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--gray-line);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--gray-muted); }
.footer-bottom span { color: var(--orange); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-muted); text-decoration: none;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--orange); color: var(--orange); }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .hero { padding: 90px 20px 60px; }
  .hero-content .tag { display: none; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 28px; }
}
