/* === SERTYX AI TECHNOLOGIES === */
/* v2 — high impact dark cybersec theme */

:root {
  --bg-primary: #020817;
  --bg-secondary: #0a0f1e;
  --bg-card: rgba(30, 41, 59, 0.5);
  --bg-card-hover: rgba(51, 65, 85, 0.5);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-glow: rgba(59, 130, 246, 0.4);
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --accent-purple: #8b5cf6;
  --accent-orange: #f59e0b;
  --accent-cyan: #06b6d4;
  --border: rgba(30, 41, 59, 0.8);
  --border-light: rgba(51, 65, 85, 0.6);
  --gradient-1: linear-gradient(135deg, #3b82f6, #8b5cf6, #06b6d4);
  --gradient-2: linear-gradient(135deg, #8b5cf6, #ec4899);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: rgba(2, 8, 23, 0.85);
  backdrop-filter: blur(16px);
  z-index: 50;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 2.5rem;
  width: auto;
  display: block;
}

.nav { display: none; }

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.nav a:hover { color: var(--text-primary); }

.nav-cta {
  background: var(--accent) !important;
  color: var(--text-primary) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 0 20px var(--accent-glow);
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  box-shadow: 0 0 30px var(--accent-glow);
}

.mobile-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.lang-switcher {
  display: flex;
  gap: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.lang-btn:hover {
  color: var(--text-primary);
}

.lang-btn.active {
  background: var(--accent);
  color: var(--text-primary);
}

.mobile-lang {
  display: flex;
}

.nav .lang-switcher {
  display: flex;
}

.nav .mobile-lang {
  display: none;
}

.gradient-inline {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === MOBILE NAV === */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(2, 8, 23, 0.98);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.active { display: flex; }

.mobile-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
}

.mobile-nav-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.75rem;
  cursor: pointer;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  background: rgba(30, 41, 59, 0.3);
}

.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero-subtitle {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-glow {
  background: var(--accent);
  color: var(--text-primary);
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all 0.3s;
  box-shadow: 0 0 30px var(--accent-glow), 0 4px 15px rgba(0,0,0,0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-glow:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 50px var(--accent-glow), 0 4px 20px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.05);
  transform: translateY(-2px);
}

/* Hero rotating text */
.hero-rotating {
  height: 2rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.hero-rotating-inner {
  display: flex;
  flex-direction: column;
  animation: rotate-text 10s infinite;
}

.hero-rotating-item {
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 500;
}

@keyframes rotate-text {
  0%, 20% { transform: translateY(0); }
  25%, 45% { transform: translateY(-2rem); }
  50%, 70% { transform: translateY(-4rem); }
  75%, 95% { transform: translateY(-6rem); }
  100% { transform: translateY(0); }
}

/* === SECTIONS === */
.section {
  padding: 6rem 1.5rem;
  position: relative;
}

.section-alt {
  background: var(--bg-secondary);
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 580px;
  margin: 0 auto;
}

/* === NARRATIVE SECTION (Aikido style) === */
.narrative {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.narrative p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.narrative .punchline {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 1.5rem;
}

.narrative .punchline span {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === NUMBERED SERVICES === */
.service-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.service-item:first-child {
  border-top: 1px solid var(--border);
}

.service-item:hover {
  padding-left: 1rem;
  background: rgba(59, 130, 246, 0.02);
}

.service-num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.3s;
}

.service-item:hover .service-num {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.service-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-body p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.replaces {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.replaces-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.replaces-tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: rgba(239, 68, 68, 0.1);
  color: var(--accent-red);
  border: 1px solid rgba(239, 68, 68, 0.2);
  text-decoration: line-through;
  font-weight: 500;
}

/* === HOW WE WORK — TIMELINE === */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-purple), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-dot {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--accent);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 15px var(--accent-glow);
}

.timeline-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* === STATS — DRAMATIC === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.stat-block {
  background: var(--bg-primary);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: background 0.3s;
}

.stat-block:hover {
  background: var(--bg-secondary);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.stat-number.blue { color: var(--accent); }
.stat-number.green { color: var(--accent-green); }
.stat-number.purple { color: var(--accent-purple); }
.stat-number.cyan { color: var(--accent-cyan); }

.stat-label {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 500;
}

/* === TRUST === */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--bg-card);
  transition: border-color 0.3s;
}

.trust-item:hover {
  border-color: var(--accent);
}

.trust-icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.trust-item h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.trust-item p {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  line-height: 1.5;
}

/* === ARSENAL — FLOWING TAGS === */
.arsenal-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.arsenal-tag {
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s;
  cursor: default;
}

.arsenal-tag:hover {
  border-color: var(--accent);
  color: var(--text-primary);
  background: rgba(59, 130, 246, 0.05);
  box-shadow: 0 0 15px var(--accent-glow);
  transform: translateY(-2px);
}

.arsenal-tag.highlight {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.05);
}

.arsenal-tag.highlight:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  position: relative;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.0625rem;
  position: relative;
}

/* === TERMINAL BLOCK === */
.terminal {
  max-width: 600px;
  margin: 3rem auto 0;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(10, 15, 30, 0.8);
}

.terminal-header {
  padding: 0.75rem 1rem;
  background: rgba(30, 41, 59, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.terminal-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}

.terminal-dot.red { background: #ef4444; }
.terminal-dot.yellow { background: #f59e0b; }
.terminal-dot.green { background: #10b981; }

.terminal-title {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

.terminal-body {
  padding: 1.25rem;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.terminal-body .prompt { color: var(--accent-green); }
.terminal-body .cmd { color: var(--text-primary); }
.terminal-body .output { color: var(--text-muted); }
.terminal-body .highlight-term { color: var(--accent); }
.terminal-body .warning { color: var(--accent-orange); }

.cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  background: var(--accent-green);
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* === FOOTER === */
.footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-company {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  margin-bottom: 0.25rem;
}

.footer-location {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* === FINDINGS SHOWCASE === */
.findings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.finding-card {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border-left: 3px solid var(--border-light);
  transition: border-color 0.3s, transform 0.2s;
}

.finding-card:hover {
  transform: translateY(-2px);
}

.finding-card.critical { border-left-color: var(--accent-red); }
.finding-card.high { border-left-color: var(--accent-orange); }
.finding-card.medium { border-left-color: #eab308; }

.finding-severity {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
}

.finding-card.critical .finding-severity {
  background: rgba(239, 68, 68, 0.15);
  color: var(--accent-red);
}

.finding-card.high .finding-severity {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-orange);
}

.finding-card.medium .finding-severity {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

.finding-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.finding-detail {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.finding-impact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.impact-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.impact-value {
  font-size: 0.8125rem;
  color: var(--text-primary);
  font-weight: 500;
}

.findings-disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* === TESTIMONIAL === */
.testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.3;
  font-style: normal;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  background: var(--bg-card);
  position: relative;
  transition: border-color 0.3s, transform 0.2s;
}

.pricing-card:hover {
  transform: translateY(-3px);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}

.pricing-popular {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text-primary);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 1rem;
  border-radius: 100px;
}

.pricing-tier {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.pricing-desc {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.375rem 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  position: relative;
  padding-left: 1.25rem;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

.pricing-duration {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pricing-cta {
  display: block;
  text-align: center;
  width: 100%;
}

.pricing-guarantee {
  text-align: center;
  padding: 1.25rem;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 0.75rem;
  background: rgba(16, 185, 129, 0.05);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.pricing-guarantee strong {
  color: var(--accent-green);
}

.guarantee-icon {
  margin-right: 0.5rem;
}

/* === FAQ === */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-toggle {
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform 0.3s;
  min-width: 1.5rem;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* === RESPONSIVE === */
@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .findings-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .hero h1 { font-size: 4rem; }
  .service-item { grid-template-columns: 4rem 1fr; }
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  .mobile-menu-btn { display: none; }
  .hero h1 { font-size: 4.5rem; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}
