/* =====================================================
   VOKKOAGENCY — style.css
   Modern Agency Website · 2026
   ===================================================== */

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Design Tokens */
:root {
  --c-bg:        #08060F;
  --c-surface:   #0F0D1C;
  --c-surface-2: #17132A;
  --c-border:    rgba(255,255,255,0.07);
  --c-white:     #FFFFFF;
  --c-muted:     #8B7BAA;
  --c-light-bg:  #F5F4F1;
  --c-light-text:#111111;
  --c-light-sub: #6F6A7D;
  --c-purple:    #6C3BFF;
  --c-pink:      #FF3BFF;

  --gradient:    linear-gradient(90deg, #6C3BFF 0%, #FF3BFF 100%);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --pad-section: 140px;
  --pad-x:       48px;
  --max-w:       1240px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.55, 0, 1, 0.45);
}

/* Base */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* =====================================================
   UTILITIES
   ===================================================== */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

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

/* Scroll-reveal base state */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays via data-delay attribute (set in JS) */
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s, border-color 0.2s;
  border: 1.5px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-primary {
  background: var(--gradient);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(108,59,255,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108,59,255,0.5);
}

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.12);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.btn-white {
  background: #FFFFFF;
  color: #111111;
  font-weight: 700;
  border-color: transparent;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.18);
}

.btn-outline {
  background: transparent;
  color: var(--c-light-text);
  border-color: rgba(0,0,0,0.18);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 12px;
}
.btn-outline:hover {
  background: var(--c-light-text);
  color: #FFFFFF;
  border-color: var(--c-light-text);
}

/* =====================================================
   NAVIGATION
   ===================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background 0.4s var(--ease-out), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8,6,15,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--c-border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 70px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: var(--font);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.06em;
  display: inline-flex;
  flex-shrink: 0;
  line-height: 1;
}

.logo-vokko { color: #FFFFFF; }
.logo-agency {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.nav-links a:hover { color: #FFFFFF; }

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(8,6,15,0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--c-border);
  padding: 8px var(--pad-x) 20px;
}

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

.nav-mobile a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid var(--c-border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: #FFFFFF; }

.mobile-cta {
  margin-top: 16px;
  border: none !important;
  border-radius: 12px !important;
  text-align: center;
  justify-content: center;
}

/* =====================================================
   SECTION COMMON
   ===================================================== */

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 20px;
}

.eyebrow-muted { color: rgba(255,255,255,0.35); }

.eyebrow-number {
  color: rgba(108,59,255,0.85);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.section-header {
  max-width: 820px;
  margin-bottom: 72px;
}

.section-title {
  font-size: clamp(40px, 5.2vw, 70px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.97;
  margin-bottom: 22px;
}

.section-description {
  font-size: 18px;
  line-height: 1.65;
  color: var(--c-muted);
  font-weight: 400;
  max-width: 560px;
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-dots {
  position: absolute;
  inset: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-glow-1 {
  width: 700px;
  height: 700px;
  background: rgba(108,59,255,0.1);
  top: -200px;
  right: -150px;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(255,59,255,0.07);
  bottom: -100px;
  left: 15%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
  position: relative;
}
.dot-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(108,59,255,0.3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.8); opacity: 0; }
}

.hero-title {
  font-size: clamp(44px, 5.8vw, 78px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.01;
  color: #FFFFFF;
  margin-bottom: 28px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--c-muted);
  margin-bottom: 40px;
  max-width: 460px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Browser Mockup */
.hero-visual {
  position: relative;
}

.browser-mockup {
  background: var(--c-surface-2);
  border-radius: 18px;
  border: 1px solid var(--c-border);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
  animation: float 7s ease-in-out infinite;
}

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

.browser-bar {
  background: var(--c-surface);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.browser-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }

.browser-url {
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  flex: 1;
}

.browser-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mock-hero-block {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mock-line {
  height: 11px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
}

.mock-line-title {
  height: 17px;
  width: 80%;
  background: rgba(255,255,255,0.13);
}

.mock-line-sub { width: 65%; }
.mock-line-sub.short { width: 48%; }

.mock-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.mock-btn {
  height: 28px;
  border-radius: 7px;
}

.mock-btn-primary {
  width: 90px;
  background: linear-gradient(90deg, rgba(108,59,255,0.4), rgba(255,59,255,0.4));
}

.mock-btn-ghost {
  width: 72px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-card {
  height: 72px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.05);
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: rgba(17,14,32,0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.float-badge-1 {
  bottom: -18px;
  left: -28px;
  animation: floatBadge1 7s ease-in-out infinite;
}

.float-badge-2 {
  top: -16px;
  right: -28px;
  animation: floatBadge2 8s ease-in-out infinite;
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-10px) rotate(0deg); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50% { transform: translateY(-8px) rotate(0deg); }
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.badge-icon-check {
  background: rgba(108,59,255,0.15);
  color: #A58BFF;
  border: 1px solid rgba(108,59,255,0.25);
}

.badge-icon-score {
  background: rgba(74,222,128,0.12);
  color: #4ADE80;
  border: 1px solid rgba(74,222,128,0.2);
  font-size: 13px;
}

.badge-label {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
  line-height: 1.3;
}

.badge-sub {
  font-size: 11px;
  color: var(--c-muted);
  white-space: nowrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30% { opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* =====================================================
   STATS BAR
   ===================================================== */

.stats-bar {
  padding: 60px 0;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex: 1;
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number,
.stat-suffix {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.stat-suffix {
  font-size: clamp(32px, 3.5vw, 48px);
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted);
  letter-spacing: 0.01em;
}

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

/* =====================================================
   SERVICES
   ===================================================== */

.services {
  padding: var(--pad-section) 0;
  background: var(--c-bg);
}

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

.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(108,59,255,0.07), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
}

.service-card:hover {
  border-color: rgba(108,59,255,0.28);
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.35);
}

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

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(108,59,255,0.1);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A58BFF;
  border: 1px solid rgba(108,59,255,0.18);
  position: relative;
  z-index: 1;
}

.service-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(108,59,255,0.65);
  position: relative;
  z-index: 1;
}

.service-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.service-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-muted);
  font-weight: 400;
  flex: 1;
  position: relative;
  z-index: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  position: relative;
  z-index: 1;
}

.service-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: #A58BFF;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
}
.service-link:hover { color: #FFFFFF; }

/* =====================================================
   PROCESS
   ===================================================== */

.process {
  padding: var(--pad-section) 0;
  background: var(--c-light-bg);
}

.process .section-eyebrow { color: var(--c-light-sub); }
.process .section-title { color: var(--c-light-text); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  padding-right: 40px;
  position: relative;
}

.process-step:last-child { padding-right: 0; }

.step-header {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 24px;
  position: relative;
}

.step-number {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(108,59,255,0.85);
  flex-shrink: 0;
  padding-top: 2px;
}

.step-connector {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(0,0,0,0.12), transparent);
  margin-top: 8px;
  margin-left: 16px;
}

.step-title {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-light-text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-light-sub);
  font-weight: 400;
}

/* =====================================================
   PROJECTS
   ===================================================== */

.projects {
  padding: var(--pad-section) 0;
  background: var(--c-light-bg);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.projects .section-eyebrow { color: var(--c-light-sub); }
.projects .section-title { color: var(--c-light-text); }

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.project-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

/* Featured card spans both columns, side-by-side layout */
.project-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.project-visual {
  background: var(--c-surface-2);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.project-card:not(.project-featured) {
  display: flex;
  flex-direction: column;
}

.project-card:not(.project-featured) .project-visual {
  min-height: 200px;
  flex: 1;
}

.project-info {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.project-tags span {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(108,59,255,0.08);
  color: var(--c-purple);
  letter-spacing: 0.04em;
}

.project-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-light-text);
  line-height: 1.1;
}

.project-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-light-sub);
}

.project-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-purple);
  transition: color 0.2s;
}
.project-link:hover { color: var(--c-pink); }

/* Project mockup skeletons */
.project-mockup {
  width: 100%;
  max-width: 300px;
  background: #0D0A1A;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.pm-light {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.06);
}

.pm-dark { background: #0D0A1A; }

.pm-bar {
  height: 30px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pm-bar-light {
  background: #F0EFF0;
  border-color: rgba(0,0,0,0.05);
}

.pm-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pm-block {
  height: 11px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
}

.pm-light .pm-block { background: rgba(0,0,0,0.07); }

.pm-title { height: 16px; width: 78%; background: rgba(255,255,255,0.14); }
.pm-light .pm-title { background: rgba(0,0,0,0.12); }
.pm-sub { width: 60%; }
.pm-sub.short { width: 40%; }
.pm-cta { width: 35%; height: 24px; border-radius: 6px; background: rgba(108,59,255,0.45); }
.pm-cta-sm { width: 30%; height: 22px; border-radius: 6px; background: rgba(108,59,255,0.35); }

.pm-grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin-top: 4px;
}

.pm-grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 8px;
}

.pm-card-sm {
  height: 56px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.pm-img {
  height: 64px;
  background: rgba(0,0,0,0.06);
  border-radius: 8px;
}

.projects-cta {
  text-align: center;
}

/* =====================================================
   WHY VOKKO
   ===================================================== */

.why-vokko {
  padding: var(--pad-section) 0;
  background: var(--c-bg);
}

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

.why-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.why-left .section-title { color: #FFFFFF; }
.why-left .section-description { color: var(--c-muted); font-size: 17px; }

.values-list {
  display: flex;
  flex-direction: column;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--c-border);
}

.value-item:first-child { padding-top: 0; }

.value-check {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(108,59,255,0.12);
  border: 1px solid rgba(108,59,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #A58BFF;
  flex-shrink: 0;
  font-weight: 700;
}

.value-name {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.value-desc {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.55;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
  padding: var(--pad-section) 0;
  position: relative;
  overflow: hidden;
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,59,255,0.15) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}

.cta-dots {
  position: absolute;
  inset: 0;
  opacity: 0.25;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-title {
  font-size: clamp(40px, 5.2vw, 70px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.97;
  color: #FFFFFF;
}

.cta-description {
  font-size: 19px;
  color: var(--c-muted);
  line-height: 1.65;
  max-width: 460px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
}

.dot-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: inline-block;
  flex-shrink: 0;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: #050310;
  padding: 72px 0 36px;
  border-top: 1px solid var(--c-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 28px;
}

.footer-logo {
  font-size: 24px;
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 340px;
}

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

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

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  transition: color 0.2s;
}
.footer-col a:hover { color: #FFFFFF; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal,
.footer-location {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
  :root {
    --pad-section: 100px;
    --pad-x: 32px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    row-gap: 56px;
  }

  .process-step { padding-right: 0; }

  .step-connector { display: none; }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --pad-section: 80px;
    --pad-x: 20px;
  }

  .nav-links,
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    padding-top: 96px;
    min-height: auto;
    padding-bottom: 64px;
  }

  .hero-title { font-size: 40px; }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .projects-grid { grid-template-columns: 1fr; }

  .project-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .float-badge { display: none; }

  .cta-title { font-size: 38px; }

  .section-title { font-size: 36px; }
}

@media (max-width: 480px) {
  .hero-ctas,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn,
  .cta-actions .btn { width: 100%; }

  .stats-grid { gap: 20px; }

  .footer-links { grid-template-columns: 1fr; }
}
