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

:root {
  --bg: #080e1a;
  --bg2: #0d1628;
  --bg3: #111d35;
  --border: rgba(255,255,255,0.07);
  --border-dot: rgba(255,255,255,0.12);
  --blue: #2196F3;
  --teal: #26C6DA;
  --text: #e2e8f4;
  --muted: #7a8aaa;
  --card: rgba(255,255,255,0.03);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --grad: linear-gradient(135deg, var(--blue), var(--teal));
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

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

.section { padding: 100px 0; }

.section-header {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header h2 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.2; margin: 12px 0 16px; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  background: rgba(33,150,243,0.1);
  border: 1px solid rgba(33,150,243,0.25);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
}

/* ═══════════════════════════════════════════════════════════ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(33,150,243,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(33,150,243,0.5); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-dot);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-outline-nav {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid rgba(33,150,243,0.35);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.btn-outline-nav:hover { background: rgba(33,150,243,0.08); border-color: var(--blue); }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); }

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════ NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(8,14,26,0.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.logo strong { color: var(--blue); }

.logo-img {
  height: 36px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  color: var(--muted);
}
.nav-links > a:not(.btn-outline-nav):hover,
.nav-links > .nav-dropdown > .nav-drop-trigger:hover { color: var(--text); }

/* ── Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-drop-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.9rem;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
  transition: color 0.2s;
}

.nav-drop-trigger i {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

.nav-dropdown:hover .nav-drop-trigger i,
.nav-dropdown.open .nav-drop-trigger i {
  transform: rotate(180deg);
}

.nav-drop-trigger:hover { color: var(--text); }

.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  padding: 18px 10px 10px;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}

.nav-drop-menu::before {
  content: "";
  position: absolute;
  inset: 14px 0 0;
  background: rgba(8, 14, 26, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  z-index: -1;
}

.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown.open .nav-drop-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-drop-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.875rem;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-drop-menu a i {
  width: 18px;
  text-align: center;
  color: var(--teal);
  font-size: 0.85rem;
}

.nav-drop-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

.nav-drop-menu a:hover i { color: var(--blue); }

.nav-drop-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 6px 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════════════ HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
}
.glow-1 { width: 700px; height: 700px; background: var(--blue); top: -200px; right: -150px; }
.glow-2 { width: 450px; height: 450px; background: var(--teal); bottom: -100px; left: -120px; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(33,150,243,0.08);
  border: 1px solid rgba(33,150,243,0.25);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.13;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ─── Hero Photo ─────────────────────────────────────────── */
.hero-visual { position: relative; }

.hero-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 540px;
}

.hero-photo-wrap img,
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo-placeholder {
  background: linear-gradient(160deg, #0d1f3c 0%, #0e2244 60%, rgba(33,150,243,0.2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 40px;
  position: relative;
}

.hero-photo-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(33,150,243,0.18) 0%, transparent 70%);
}

.photo-silhouette {
  width: 200px;
  height: 280px;
  background: linear-gradient(180deg, rgba(33,150,243,0.15) 0%, rgba(33,150,243,0.06) 100%);
  border-radius: 50% 50% 0 0;
  border: 1px dashed rgba(33,150,243,0.3);
  position: relative;
  z-index: 1;
}

.photo-hint {
  font-size: 0.72rem;
  color: rgba(33,150,243,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,14,26,0.7) 100%);
}

.hero-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  z-index: 2;
}

.hero-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(8,14,26,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 10px;
}

.hero-stat-pill strong {
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-pill span {
  font-size: 0.8rem;
  color: var(--muted);
}

.floating-badge {
  position: absolute;
  background: rgba(8,14,26,0.92);
  border: 1px solid var(--border-dot);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}

.badge-roas { top: 20px; right: -20px; animation-delay: 0s; }
.badge-cac  { bottom: 100px; left: -20px; animation-delay: 2s; }

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

.fb-icon { font-size: 1.5rem; }
.floating-badge strong { display: block; font-size: 1rem; font-weight: 800; color: var(--text); }
.floating-badge span   { font-size: 0.72rem; color: var(--muted); }

.hero-scroll {
  text-align: center;
  margin-top: 60px;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 0.4; }
}

/* ═══════════════════════════════════════════════════════════ MARQUEE */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: 32px;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.marquee-track .dot { color: var(--blue); font-size: 0.55rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════ SERVICES — editorial list */
.services-list {
  display: flex;
  flex-direction: column;
}

.service-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px dashed var(--border-dot);
  transition: background 0.2s;
  position: relative;
}

.service-row:first-child { border-top: 1px dashed var(--border-dot); }
.service-row:hover { padding-left: 8px; }

.service-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  padding-top: 4px;
}

.service-row-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-row-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 540px;
}

.service-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.service-row-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(33,150,243,0.08);
  border: 1px solid rgba(33,150,243,0.18);
  padding: 4px 10px;
  border-radius: 99px;
}

.service-row-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  padding-top: 4px;
  transition: gap 0.2s;
}
.service-row-cta:hover { gap: 10px; }
.service-row-cta svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════ STATS — progress bars */
.stats-section {
  padding: 100px 0;
  position: relative;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.stats-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 12px 0 16px;
}

.stats-left p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; }

.stats-bars {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.stat-bar-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 0;
  border-bottom: 1px dashed var(--border-dot);
}

.stat-bar-row:last-child { border-bottom: none; }

.stat-bar-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.stat-bar-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.stat-bar-value {
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 99px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 99px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-bar-fill.animated { width: var(--pct); }

.stat-bar-desc {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════ PORTFOLIO CAROUSEL */
.carousel-section { overflow: hidden; }

.carousel-wrap {
  position: relative;
}

.carousel-track-outer {
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg3);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(135deg, #0d1f3c 0%, #0a1729 100%);
  border: 1px dashed rgba(33,150,243,0.2);
}

.slide-placeholder-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(33,150,243,0.1);
  border: 1px dashed rgba(33,150,243,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-placeholder-icon svg { opacity: 0.5; }

.carousel-slide-placeholder span {
  font-size: 0.78rem;
  color: rgba(33,150,243,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,14,26,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}

.carousel-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 8px;
}

.carousel-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.carousel-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dot);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: rgba(33,150,243,0.15);
  border-color: var(--blue);
  color: var(--blue);
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--muted);
  transition: all 0.3s;
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--blue);
  width: 20px;
}

/* ═══════════════════════════════════════════════════════════ PROCESS — dotted timeline */
.process-section { background: rgba(255,255,255,0.01); }

.process-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.process-text .section-tag { margin-bottom: 16px; }
.process-text h2 { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.process-text p  { color: var(--muted); font-size: 1rem; }
.process-text .btn { margin-top: 32px; }

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 2px dashed rgba(33,150,243,0.25);
}

.timeline-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 40px;
  position: relative;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid rgba(33,150,243,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.timeline-step:hover .timeline-dot {
  background: rgba(33,150,243,0.15);
  border-color: var(--blue);
}

.timeline-content { padding-top: 8px; }
.timeline-content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.timeline-content p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════ PRICING — table style */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-dot);
  border-radius: var(--radius);
  overflow: hidden;
}

.pricing-card {
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s;
  border-right: 1px solid var(--border-dot);
}

.pricing-card:last-child { border-right: none; }
.pricing-card:hover { background: rgba(255,255,255,0.03); }

.pricing-card.featured {
  background: linear-gradient(160deg, rgba(33,150,243,0.07) 0%, rgba(38,198,218,0.04) 100%);
  border-top: 2px solid var(--blue);
}

.pricing-badge {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.pricing-plan { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue); margin-bottom: 16px; display: block; }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.currency { font-size: 1rem; font-weight: 700; color: var(--muted); margin-right: 2px; }
.amount   { font-size: 2.8rem; font-weight: 900; color: var(--text); }
.period   { font-size: 0.875rem; color: var(--muted); }

.pricing-header > p { font-size: 0.875rem; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }

.pricing-divider {
  width: 100%;
  height: 1px;
  border-top: 1px dashed var(--border-dot);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

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

.pricing-features li.muted { color: var(--muted); }

.check { color: #4ade80; font-weight: 700; }

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

/* ═══════════════════════════════════════════════════════════ TESTIMONIALS CAROUSEL */
.testimonials-section { background: rgba(255,255,255,0.01); }

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 32px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: calc(50% - 16px);
  padding: 40px;
  border-top: 2px solid var(--border-dot);
  background: transparent;
  transition: border-color 0.3s;
  flex-shrink: 0;
}

.testimonial-card:hover { border-top-color: var(--blue); }

.stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 20px; }

.testimonial-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span  { font-size: 0.78rem; color: var(--muted); }

.testimonials-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

/* ═══════════════════════════════════════════════════════════ CTA BAND */
.cta-band {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(33,150,243,0.08), rgba(38,198,218,0.04));
  border-top: 1px solid rgba(33,150,243,0.15);
  border-bottom: 1px solid rgba(33,150,243,0.15);
}

.cta-band-glow {
  position: absolute;
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(33,150,243,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 8px; }
.cta-band p  { color: var(--muted); font-size: 1rem; }

.cta-band-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.cta-note { font-size: 0.78rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════ NICHES */
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dot);
  border: 1px solid var(--border-dot);
  border-radius: var(--radius);
  overflow: hidden;
}

.niche-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.25s;
}

.niche-card:hover { background: rgba(33,150,243,0.04); }

.niche-icon { font-size: 2rem; margin-bottom: 14px; }
.niche-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.niche-card p  { color: var(--muted); font-size: 0.875rem; line-height: 1.7; margin-bottom: 18px; }

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

.niche-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(33,150,243,0.08);
  border: 1px solid rgba(33,150,243,0.18);
  color: var(--blue);
  padding: 3px 9px;
  border-radius: 99px;
}

.niche-card.niche-active {
  background: linear-gradient(135deg, rgba(33,150,243,0.1), rgba(38,198,218,0.05));
}

/* ═══════════════════════════════════════════════════════════ CONTACT */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-tag { margin-bottom: 16px; }
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.contact-info > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 40px; }

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

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(33,150,243,0.08);
  border: 1px solid rgba(33,150,243,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-item strong { display: block; font-size: 0.875rem; margin-bottom: 2px; }
.contact-item span   { font-size: 0.875rem; color: var(--muted); }

.contact-form {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.9rem;
  color: var(--text);
  font-family: inherit;
  transition: all 0.2s;
  outline: none;
  appearance: none;
}

.form-group select option { background: var(--bg2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(33,150,243,0.5);
  background: rgba(33,150,243,0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 12px; }

/* ═══════════════════════════════════════════════════════════ FAQ */
.faq-section { background: rgba(255,255,255,0.01); }

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.faq-item { border-bottom: 1px dashed var(--border-dot); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--blue); }
.faq-question[aria-expanded="true"] { color: var(--blue); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

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

.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { color: var(--muted); font-size: 0.9rem; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════ FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  margin-bottom: 56px;
}

.footer-brand { max-width: 320px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }

.social-links { display: flex; gap: 12px; }

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}

.social-links a:hover { border-color: var(--blue); color: var(--blue); }

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

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

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════════════ ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════ RESPONSIVE */
@media (max-width: 1024px) {
  .service-row { grid-template-columns: 48px 1fr; }
  .service-row-cta { display: none; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-layout { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; border-radius: var(--radius); }
  .pricing-card { border-right: none; border-bottom: 1px solid var(--border-dot); }
  .pricing-card:last-child { border-bottom: none; }
  .process-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .testimonial-card { min-width: calc(100% - 0px); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .niches-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: column; gap: 12px; text-align: center; }
  .contact-form { padding: 24px; }
  .service-row { grid-template-columns: 36px 1fr; gap: 20px; }
  .service-num { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
}
