/* ═══════════════════════════════════════════════════════════
   PROZEN DIGITAL STUDIO — MAIN STYLESHEET
   Brand: Red #E8342A | Navy #1A237E | Premium Dark/Light
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts already linked in HTML ── */

/* ══════════════════════════
   CSS CUSTOM PROPERTIES
══════════════════════════ */
:root {
  /* Brand Colors */
  --red: #E8342A;
  --red-dark: #c0271f;
  --red-light: #ff5a52;
  --navy: #1A237E;
  --navy-light: #3949AB;

  /* Dark Theme (default) */
  --bg: #08080E;
  --bg-2: #0F0F1A;
  --bg-3: #141424;
  --card: #111120;
  --card-hover: #161628;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(232,52,42,0.4);
  --text: #F0F0FF;
  --text-muted: #9090B0;
  --text-faint: #5a5a7a;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);

  /* Typography */
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container-max: 1200px;

  /* Effects */
  --shadow: 0 4px 32px rgba(0,0,0,0.5);
  --shadow-red: 0 0 40px rgba(232,52,42,0.2);
  --glow: 0 0 80px rgba(232,52,42,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

[data-theme="light"] {
  --bg: #F5F0EB;
  --bg-2: #EDE8E2;
  --bg-3: #E8E2DA;
  --card: #FFFFFF;
  --card-hover: #F8F6F3;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(232,52,42,0.3);
  --text: #0D0D1A;
  --text-muted: #555570;
  --text-faint: #999aab;
  --surface: rgba(0,0,0,0.03);
  --surface-hover: rgba(0,0,0,0.05);
  --shadow: 0 4px 32px rgba(0,0,0,0.1);
  --shadow-red: 0 0 40px rgba(232,52,42,0.1);
  --glow: 0 0 80px rgba(232,52,42,0.08);
}

/* ══════════════════════════
   RESET & BASE
══════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; background: none; }
input, textarea, select { font-family: inherit; }
select { appearance: none; -webkit-appearance: none; }

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

/* ══════════════════════════
   TYPOGRAPHY
══════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 700;
}

.accent-text {
  color: var(--red);
  position: relative;
}

/* ══════════════════════════
   LAYOUT UTILITIES
══════════════════════════ */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-py) 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(232,52,42,0.12);
  border: 1px solid rgba(232,52,42,0.3);
  color: var(--red);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════
   NAVBAR
══════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: var(--bg);
  border-bottom-color: var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  padding: 12px 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(232,52,42,0.3));
  transition: var(--transition);
}

.logo-img:hover {
  filter: drop-shadow(0 0 16px rgba(232,52,42,0.5));
  transform: scale(1.03);
}

[data-theme="light"] .logo-img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text);
  background: var(--surface-hover);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.toggle-btn:hover {
  background: var(--surface-hover);
  color: var(--text);
  border-color: var(--border-hover);
}

.toggle-icon { font-size: 1rem; }

.nav-cta {
  padding: 10px 20px;
  background: var(--red);
  color: white;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232,52,42,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════
   HERO SECTION
══════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 60px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

[data-theme="light"] .hero-bg-grid {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,52,42,0.15), transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,35,126,0.2), transparent 70%);
  bottom: -80px; right: -80px;
  animation-delay: 3s;
}

.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,52,42,0.1), transparent 70%);
  top: 50%; right: 20%;
  animation-delay: 5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(232,52,42,0.1);
  border: 1px solid rgba(232,52,42,0.25);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red-light);
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease both;
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title-line {
  display: block;
  color: var(--text);
}

.hero-title-accent {
  display: block;
  color: var(--red);
  position: relative;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--navy-light), transparent);
  border-radius: 2px;
  animation: lineExpand 1s ease 0.8s both;
}

@keyframes lineExpand {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--red);
  color: white;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  font-family: var(--font-head);
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(232,52,42,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--text);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--border);
  transition: var(--transition);
  font-family: var(--font-head);
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(232,52,42,0.05);
  transform: translateY(-3px);
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
  color: var(--text-faint);
  font-size: 0.8rem;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* Floating Cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: cardFloat 0.8s ease both, floatLoop 6s ease-in-out infinite;
  z-index: 3;
}

.float-icon { font-size: 1.5rem; }
.float-num { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--red); }
.float-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

.card-1 { top: 20%; left: 3%; animation-delay: 0.4s, 0s; }
.card-2 { top: 65%; left: 5%; animation-delay: 0.6s, 2s; }
.card-3 { top: 25%; right: 3%; animation-delay: 0.8s, 4s; }

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

@keyframes floatLoop {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ══════════════════════════
   STATS BAR
══════════════════════════ */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
}

.stats-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════
   SERVICES
══════════════════════════ */
.services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: var(--transition);
  cursor: default;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,52,42,0.04), transparent);
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.service-card:hover::before { opacity: 1; }

.service-card.featured {
  border-color: rgba(232,52,42,0.3);
  background: linear-gradient(135deg, rgba(232,52,42,0.06), var(--card));
  grid-column: span 1;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.service-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--red);
  color: white;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
  font-family: var(--font-head);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.service-tags span {
  padding: 3px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ══════════════════════════
   HOW WE WORK
══════════════════════════ */
.how-we-work {
  background: var(--bg-2);
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  transform: translateX(-50%);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.process-step:nth-child(odd) .step-content {
  text-align: right;
  order: -1;
}

.process-step:nth-child(odd) .step-number {
  order: 0;
}

.process-step:nth-child(odd) .step-icon {
  order: 1;
}

.step-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  opacity: 0.3;
  min-width: 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.step-content:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-red);
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-icon {
  font-size: 2rem;
  min-width: 60px;
  text-align: center;
}

/* ══════════════════════════
   PRICING
══════════════════════════ */
.pricing {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-red);
  border-color: var(--border-hover);
}

.pricing-card.featured {
  border-color: var(--red);
  background: linear-gradient(160deg, rgba(232,52,42,0.08), var(--card) 60%);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(232,52,42,0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--red);
  color: white;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.plan-header { margin-bottom: 20px; }
.plan-icon { font-size: 2rem; margin-bottom: 12px; }
.plan-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.plan-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.currency { font-size: 1.5rem; font-weight: 700; color: var(--red); }
.amount { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--text); line-height: 1; }
.period { font-size: 1rem; color: var(--text-muted); }

.plan-features {
  flex: 1;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.check { color: #22c55e; font-weight: 700; flex-shrink: 0; }
.cross { color: var(--text-faint); font-weight: 700; flex-shrink: 0; }

.plan-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-head);
  transition: var(--transition);
}

.primary-cta {
  background: var(--red);
  color: white;
}

.primary-cta:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 24px rgba(232,52,42,0.4);
  transform: translateY(-2px);
}

.outline-cta {
  border: 2px solid var(--border);
  color: var(--text);
}

.outline-cta:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ══════════════════════════
   CASE STUDIES
══════════════════════════ */
.case-studies {
  background: var(--bg-2);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.case-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.case-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.case-industry {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.case-platform {
  padding: 4px 12px;
  background: rgba(232,52,42,0.1);
  border: 1px solid rgba(232,52,42,0.2);
  color: var(--red);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}

.case-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
  font-family: var(--font-head);
}

.case-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.case-results {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.result-item { text-align: center; flex: 1; }

.result-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.result-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ══════════════════════════
   REVIEWS
══════════════════════════ */
.reviews {
  background: var(--bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--red), var(--navy));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.reviewer-title {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ══════════════════════════
   ABOUT
══════════════════════════ */
.about {
  background: var(--bg-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.value-item:hover {
  border-color: var(--border-hover);
  background: var(--card-hover);
}

.value-icon { font-size: 1.2rem; }

.founder-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.founder-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-red);
}

.founder-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--red), var(--navy));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  flex-shrink: 0;
}

.founder-info h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.founder-info span {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.founder-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 12px;
  text-align: center;
  transition: var(--transition);
}

.about-stat:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.about-stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ══════════════════════════
   FAQ
══════════════════════════ */
.faq {
  background: var(--bg);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-item.active {
  border-color: rgba(232,52,42,0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 16px;
}

.faq-arrow {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════
   CONTACT
══════════════════════════ */
.contact {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.contact-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,52,42,0.1), transparent 70%);
  top: -100px; right: -100px;
}

.contact-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,35,126,0.15), transparent 70%);
  bottom: -80px; left: -80px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px; height: 48px;
  background: rgba(232,52,42,0.1);
  border: 1px solid rgba(232,52,42,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.78rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition-fast);
}

.contact-value:hover { color: var(--red); }

.contact-response-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 12px 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.response-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

/* Contact Form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,52,42,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}

.form-group select option {
  background: var(--bg-2);
  color: var(--text);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: white;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,52,42,0.35);
}

.form-submit:active {
  transform: translateY(0);
}

.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ══════════════════════════
   FOOTER
══════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 64px 24px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(232,52,42,0.1);
  border-color: rgba(232,52,42,0.3);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-faint);
}

.footer-badge {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* ══════════════════════════
   WHATSAPP FLOAT
══════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: fadeInUp 0.6s ease 1s both;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}

/* ══════════════════════════
   ANIMATIONS
══════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"] {
  transform: translateX(-24px);
}

[data-aos="fade-left"] {
  transform: translateX(24px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .hero-float-card.card-1,
  .hero-float-card.card-2,
  .hero-float-card.card-3 { display: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 4px;
    z-index: 999;
  }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .services-grid { grid-template-columns: 1fr; }
  .case-studies-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-container { gap: 16px; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-timeline::before { display: none; }
  .process-step { grid-template-columns: 1fr; text-align: left !important; gap: 12px; }
  .process-step:nth-child(odd) .step-content { order: 0; text-align: left; }
  .step-number { font-size: 2rem; min-width: auto; text-align: left; }
  .step-icon { text-align: left; }
  .contact-form { padding: 24px; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
}
