/* ============================================================
   TEACHIEF ACCOUNTING SERVICES — Landing Page Stylesheet
   ============================================================ */

:root {
  --red: #e84118;
  --red-dark: #c0392b;
  --blue: #4db8ff;
  --blue-dark: #0070f3;
  --green: #27ae60;
  --amber: #f39c12;
  --bg: #0a0e1a;
  --bg2: #0d1b3e;
  --bg3: #111827;
  --surface: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.10);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.55);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ── UTILITY ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(77,184,255,0.10);
  border: 1px solid rgba(77,184,255,0.25);
  border-radius: 30px;
  padding: 6px 18px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 50px;
}
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:0.5; transform: scale(1.4); }
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes countdownPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* ── STICKY NAV ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.navbar.scrolled { padding: 10px 0; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo span { color: var(--red); }
.nav-logo .logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white !important;
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,65,24,0.35);
  color: white !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── URGENCY BAR ── */
.urgency-bar {
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  margin-top: 61px;
}
.urgency-bar .live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1.2s infinite;
  vertical-align: middle;
}

/* ── HERO ── */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,112,243,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(232,65,24,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #0d1b3e 0%, #0a0e1a 50%, #0d1b3e 100%);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeIn 0.8s ease both;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}
.hero-h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,112,243,0.2);
  animation: fadeUp 0.8s ease 0.1s both;
  margin-bottom: 4px;
}
.hero-h1 .accent { color: var(--red); }
.hero-fy {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--blue);
  animation: fadeUp 0.8s ease 0.2s both;
  margin-bottom: 22px;
}
.hero-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.3s both;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.8s ease 0.4s both;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 40px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232,65,24,0.4);
}
.btn-primary:active { transform: scale(0.97); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 40px;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--blue);
  background: rgba(77,184,255,0.08);
  transform: translateY(-1px);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeUp 0.8s ease 0.5s both;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.trust-pill .check {
  width: 18px; height: 18px;
  background: rgba(39,174,96,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6edd99;
  font-size: 10px;
  flex-shrink: 0;
}

/* Hero Right — Stats card */
.hero-right {
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 30px; right: 30px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.stat-box:hover {
  background: rgba(77,184,255,0.07);
  transform: translateY(-2px);
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 28px;
  color: var(--blue);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.penalty-alert {
  background: linear-gradient(135deg, rgba(232,65,24,0.15), rgba(232,65,24,0.05));
  border: 1px solid rgba(232,65,24,0.35);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 13.5px;
  color: #f0c8c0;
  line-height: 1.55;
}
.penalty-alert strong { color: #fff; font-weight: 700; }

/* ── COUNTDOWN ── */
.countdown-section {
  background: linear-gradient(135deg, rgba(232,65,24,0.12), rgba(192,57,43,0.06));
  border-top: 1px solid rgba(232,65,24,0.2);
  border-bottom: 1px solid rgba(232,65,24,0.2);
  padding: 40px 0;
}
.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.countdown-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--red);
  text-align: center;
}
.countdown-label small { display: block; font-size: 12px; color: var(--muted); font-weight: 400; margin-top: 4px; }
.countdown-timer {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cd-unit {
  text-align: center;
  animation: countdownPulse 2s ease-in-out infinite;
}
.cd-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 18px;
  min-width: 80px;
}
.cd-lbl {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}
.cd-sep {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  padding-bottom: 18px;
}
.countdown-cta .btn-primary { font-size: 14px; padding: 13px 26px; }

/* ── SERVICES ── */
.services-section {
  padding: 100px 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(77,184,255,0.25);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.si-blue { background: rgba(77,184,255,0.15); }
.si-green { background: rgba(39,174,96,0.15); }
.si-orange { background: rgba(232,65,24,0.15); }
.si-purple { background: rgba(155,89,182,0.15); }
.si-amber { background: rgba(243,156,18,0.15); }
.si-teal { background: rgba(26,188,156,0.15); }
.service-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-tag {
  display: inline-block;
  background: rgba(77,184,255,0.1);
  color: var(--blue);
  border: 1px solid rgba(77,184,255,0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  letter-spacing: 0.5px;
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0b1020 100%);
}
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
}
.steps-wrapper::before {
  content: '';
  position: absolute;
  top: 44px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--red), var(--blue), transparent);
  opacity: 0.3;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 8px rgba(77,184,255,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover .step-num-circle {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(77,184,255,0.12), 0 8px 24px rgba(0,112,243,0.3);
}
.step-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
}
.step-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── WHY US ── */
.why-section {
  padding: 100px 0;
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why-left { }
.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
}
.why-feature:hover {
  background: rgba(77,184,255,0.05);
  border-color: rgba(77,184,255,0.2);
}
.why-feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(77,184,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.why-feature h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 5px;
}
.why-feature p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Why Right — big number card */
.why-right .big-card {
  background: linear-gradient(135deg, rgba(13,27,62,0.8), rgba(10,14,26,0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.big-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 64px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
}
.big-card p { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mini-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.mini-stat .mnum {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  display: block;
}
.mini-stat .mlbl { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* ── PRICING ── */
.pricing-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0b1020 0%, var(--bg) 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: rgba(232,65,24,0.5);
  background: rgba(232,65,24,0.05);
}
.featured-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  color: #fff;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}
.price-card .price-desc { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.price-amount {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 38px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount span { font-size: 16px; color: var(--muted); font-weight: 400; }
.price-note { font-size: 12px; color: var(--muted); margin-bottom: 24px; }
.price-features { margin-bottom: 28px; }
.price-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.price-feat:last-child { border-bottom: none; }
.price-feat .tick { color: var(--green); font-size: 14px; }
.price-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: 30px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.price-btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.price-btn-outline:hover { border-color: var(--red); color: var(--red); }
.price-btn-filled {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
}
.price-btn-filled:hover {
  box-shadow: 0 6px 20px rgba(232,65,24,0.35);
  transform: translateY(-1px);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.3s, border-color 0.3s;
}
.testi-card:hover {
  transform: translateY(-3px);
  border-color: rgba(77,184,255,0.2);
}
.stars { color: #f39c12; font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}
.av-blue { background: linear-gradient(135deg, #0070f3, #4db8ff); }
.av-red  { background: linear-gradient(135deg, #e84118, #c0392b); }
.av-green{ background: linear-gradient(135deg, #27ae60, #2ecc71); }
.av-purple{ background: linear-gradient(135deg, #8e44ad, #9b59b6); }
.testi-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}
.testi-role { font-size: 12px; color: var(--muted); }

/* ── FAQ ── */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0b1020 100%);
}
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(77,184,255,0.3); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  background: rgba(255,255,255,0.02);
  user-select: none;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,255,255,0.04); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--blue);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 18px;
}

/* ── CONTACT / CTA SECTION ── */
.contact-section {
  padding: 100px 0;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 14px;
}
.contact-info p { font-size: 15px; color: var(--muted); margin-bottom: 32px; line-height: 1.65; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.contact-method:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(77,184,255,0.25);
  transform: translateX(4px);
}
.cm-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cm-red   { background: rgba(232,65,24,0.15); }
.cm-green { background: rgba(39,174,96,0.15); }
.cm-blue  { background: rgba(77,184,255,0.15); }
.cm-label { font-size: 12px; color: var(--muted); margin-bottom: 2px; }
.cm-value { font-family: var(--font-head); font-weight: 700; font-size: 15px; }

/* Inline form (contact page section) */
.contact-form-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.contact-form-box::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.form-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 6px;
}
.form-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.form-group select option { background: #111827; color: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: rgba(77,184,255,0.05);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.3px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,65,24,0.4);
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success {
  text-align: center;
  padding: 20px;
  background: rgba(39,174,96,0.1);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: var(--radius);
  color: #6edd99;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  display: none;
}
.form-success.visible { display: block; animation: fadeUp 0.4s ease; }

/* ── MODAL POPUP ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; animation: fadeIn 0.25s ease; }
.modal-box {
  background: #0d1b3e;
  border: 1px solid rgba(77,184,255,0.25);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  width: 100%;
  max-width: 480px;
  position: relative;
  animation: fadeUp 0.35s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--muted);
  font-size: 20px;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: rgba(232,65,24,0.2); color: var(--red); }
.modal-tag {
  display: inline-block;
  background: rgba(232,65,24,0.15);
  color: var(--red);
  border: 1px solid rgba(232,65,24,0.3);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 12px;
}
.modal-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 6px;
}
.modal-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 40px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  color: white;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover { transform: translateY(-2px); }
.float-btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  animation: float 3s ease-in-out infinite;
}
.float-btn-wa:hover { box-shadow: 0 10px 28px rgba(37,211,102,0.4); }
.float-btn-call {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}
.float-btn-call:hover { box-shadow: 0 10px 28px rgba(232,65,24,0.4); }

/* ── FOOTER ── */
footer {
  background: #060b18;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin: 14px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.social-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 13.5px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-bottom .trust-badges { display: flex; gap: 14px; }
.trust-badge {
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  z-index: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  color: var(--muted);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: rgba(255,255,255,0.1); color: var(--text); }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 90px; right: 28px;
  background: #1a2a1a;
  border: 1px solid rgba(39,174,96,0.4);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 13.5px;
  color: #6edd99;
  font-weight: 600;
  z-index: 9000;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  max-width: 300px;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-right { order: -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .hero { min-height: auto; padding: 60px 0 50px; }
  .steps-wrapper::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-cta { bottom: 20px; right: 16px; }
  .float-btn { padding: 11px 16px; font-size: 12.5px; }
  .countdown-inner { gap: 24px; flex-direction: column; text-align: center; }
  .cd-num { font-size: 36px; min-width: 60px; padding: 8px 12px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .modal-box { padding: 28px 20px; }
}
