/* ═══════════════════════════════════════════════
   DIREKT LEADS – Apple-Inspired Design System
   ═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --black: #000000;
  --dark: #1d1d1f;
  --dark-2: #2d2d2f;
  --mid-gray: #424245;
  --gray: #6e6e73;
  --light-gray: #f5f5f7;
  --white: #ffffff;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --red: #ff3b30;
  --green: #34c759;
  --text-primary: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #aeaeb2;
  --border: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.14);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Container ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Section helpers ── */
.dark-section {
  background: var(--black);
  padding: 120px 0;
}

.light-section {
  background: var(--light-gray);
  padding: 120px 0;
}

.white-section {
  background: var(--white);
  padding: 120px 0;
}

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.section-title.dark {
  color: var(--text-primary);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 64px;
  text-align: center;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 980px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font);
}

.btn-blue {
  background: var(--accent);
  color: var(--white);
}

.btn-blue:hover {
  background: var(--accent-hover);
  transform: scale(1.02);
  box-shadow: 0 4px 18px rgba(0, 113, 227, 0.38);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark-2);
  transform: scale(1.02);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.02);
}

.mt-2 {
  margin-top: 32px;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(15, 15, 18, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, height 0.3s ease;
}

.navbar.scrolled {
  background: rgba(15, 15, 18, 0.96);
  height: 60px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0;
}

.nav-logo img {
  height: 56px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
  align-items: center;
}

.nav-links li a {
  display: block;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  letter-spacing: 0;
  line-height: 1.4;
  border-radius: 980px;
  border: 1.5px solid transparent;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.nav-active {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* ── Parallax perf hints ── */
.hero-bg-img,
.about-img,
.stats-bg-img,
.campaign-bg-img {
  will-change: transform;
}

.hero {
  overflow: hidden;
}

.nav-lang {
  display: flex;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.42);
  align-items: center;
  margin-left: 20px;
}

.lang-active {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.45;
  transform: scale(1.04);
  animation: slowZoom 24s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.10);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.55) 60%,
      rgba(0, 0, 0, 0.88) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 32px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 28px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 980px;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.06);
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hero-content h1 .accent {
  color: transparent;
  background: linear-gradient(135deg, #ffffff 30%, rgba(255, 255, 255, 0.55));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 40px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left {
  position: relative;
}

.about-logo-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  z-index: 2;
  backdrop-filter: blur(10px);
}

/* ── Pain Points Section ── */
.painpoints {
  padding: 120px 0 60px;
  /* Reduced bottom padding */
  background: var(--light-gray);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pain-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: #ff3b30;
  /* Apple Red for problem indication */
  opacity: 0.8;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 59, 48, 0.08);
  border-color: rgba(255, 59, 48, 0.2);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 59, 48, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ff3b30;
}

.pain-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.pain-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.pain-cta {
  display: flex;
  justify-content: center;
  margin: 60px 0;
  /* Balanced vertical margin to fill the gap */
}

/* ═══════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════ */
.process {
  background: var(--light-gray);
  padding: 60px 0 120px;
  /* Reduced top padding to meet the button halfway */
  text-align: center;
}

.process .section-eyebrow {
  color: var(--accent);
}

.process .section-title.dark {
  color: var(--text-primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 0;
  text-align: left;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(0, 113, 227, 0.3));
  opacity: 0;
  transition: opacity 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-card:hover::before {
  opacity: 1;
}

.step-card-wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text-primary);
  flex-shrink: 0;
  width: 72px;
}

.step-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.step-body p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 18px;
  line-height: 1.7;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.step-list li {
  font-size: 0.83rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-icon-right {
  display: none;
}

.step-icon-big {
  font-size: 4rem;
  opacity: 0.06;
  position: absolute;
  right: 32px;
  bottom: 24px;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   CAMPAIGN CTA
   ═══════════════════════════════════════════════ */
.campaign {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
  background: var(--black);
}

.campaign-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: grayscale(100%) brightness(0.3);
}

.campaign-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.90) 100%);
  z-index: 1;
}

.campaign-inner {
  position: relative;
  z-index: 2;
}

.campaign-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  border-radius: 16px;
  background: rgba(0, 113, 227, 0.12);
  border: 1px solid rgba(0, 113, 227, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.campaign-inner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 14px;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.campaign-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  font-size: 1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.campaign-tabs {
  display: inline-flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 980px;
  padding: 4px;
}

.tab-btn {
  padding: 8px 22px;
  border-radius: 980px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font);
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--white);
}

.tab-btn.active {
  background: var(--white);
  color: var(--text-primary);
  font-weight: 600;
}

.tab-content {
  max-width: 540px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.75;
  min-height: 80px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.tab-content.hidden {
  display: none;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials {
  background: var(--light-gray);
  padding: 120px 0;
  text-align: center;
}

.testimonials .section-eyebrow {
  color: var(--accent);
}

.testimonials h2 {
  color: var(--text-primary);
  margin-bottom: 64px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}

.testi-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.testi-stars {
  color: #ff9f0a;
  font-size: 0.88rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.testi-quote {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(20%);
}

.testi-author strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
}

.testi-author span {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ═══════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════ */
.blog {
  background: var(--white);
  padding: 120px 0;
}

.blog .section-eyebrow {
  color: var(--accent);
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.blog-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 980px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.blog-body {
  padding: 24px;
}

.blog-date {
  font-size: 0.72rem;
  color: var(--gray);
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.blog-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-link {
  font-size: 0.83rem;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.blog-link:hover {
  gap: 8px;
}

/* ═══════════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════════ */
.team {
  background: var(--black);
  padding: 120px 0;
}

.team .section-eyebrow {
  color: var(--accent);
}

.team h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 72px;
  text-align: center;
  letter-spacing: -0.03em;
}

.team-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.team-feature:last-child {
  margin-bottom: 0;
}

.team-feature-reverse {
  direction: rtl;
}

.team-feature-reverse>* {
  direction: ltr;
}

.team-eyebrow-small {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.team-feature-text h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.team-feature-text p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.team-socials {
  display: flex;
  gap: 8px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.team-feature-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  filter: grayscale(18%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

/* ═══════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════ */
.stats {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--black);
}

.stats-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: grayscale(100%);
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 113, 227, 0.05));
  z-index: 1;
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item {
  padding: 48px 32px;
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px);
  transition: background 0.3s;
}

.stat-item:hover {
  background: rgba(0, 113, 227, 0.07);
}

.stat-num {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--dark);
}

.footer-map {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(70%) brightness(0.7) invert(5%);
}

.footer-main {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer-social-btn:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact-list li {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

.footer-contact-list a {
  color: var(--gray);
}

.footer-contact-list a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.22);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.22);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════════
   DIVIDER LINE
   ═══════════════════════════════════════════════ */
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
  border-radius: 2px;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-left {
    display: none;
  }

  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .dark-section,
  .light-section,
  .white-section,
  .about,
  .process,
  .campaign,
  .testimonials,
  .blog,
  .team,
  .stats {
    padding: 80px 0;
  }

  .container {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    background: rgba(22, 22, 22, 0.97);
    backdrop-filter: blur(20px);
    padding: 16px 20px;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    line-height: 44px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-lang {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card-wide {
    grid-column: auto;
    flex-direction: column;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .team-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-feature-reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    background: none;
    border: none;
    gap: 16px;
  }

  .stat-item {
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .campaign-tabs {
    flex-direction: column;
    border-radius: var(--radius);
    padding: 6px;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-num {
    font-size: 2.4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}