/**
 * GEO Landing Page - Pozycjonowanie AI / GEO
 * CodeScriptum IT Agency
 * Ultra-modern, conversion-focused, with advanced visual effects
 *
 * COMPLETE REWRITE matching exact HTML class names and design requirements
 */

/* ========================================
   CSS CUSTOM PROPERTIES (Theme Variables)
   ======================================== */

:root {
  --color-primary: #8478f5;
  --color-secondary: #4991f0;
  --color-tertiary: #6366f1;
  --color-accent: #06b6d4;
  --color-accent-violet: #a78bfa;
  --color-bg-dark: #030712;
  --color-bg-darker: #010409;
  --color-bg-light: #f8fafc;
  --color-text-light: #f1f5f9;
  --color-text-muted: #cbd5e1;
  --color-white: #ffffff;
  --color-dark-card: #111827;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  --gradient-primary: linear-gradient(135deg, #8478f5 0%, #4991f0 50%, #06b6d4 100%);
  --gradient-secondary: linear-gradient(135deg, #6366f1 0%, #a78bfa 100%);
  --gradient-tertiary: linear-gradient(135deg, #4991f0 0%, #06b6d4 100%);
  --gradient-glow: linear-gradient(135deg, rgba(132, 120, 245, 0.5) 0%, rgba(73, 145, 240, 0.5) 100%);
  --gradient-border-1: linear-gradient(135deg, #8478f5, #4991f0, #06b6d4);
  --gradient-border-2: linear-gradient(135deg, #a78bfa, #06b6d4);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(132, 120, 245, 0.2);
  --shadow-glow-cyan: 0 0 40px rgba(6, 182, 212, 0.2);
  --shadow-glow-strong: 0 0 60px rgba(132, 120, 245, 0.3);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slower: 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   GLOBAL RESETS & BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ========================================
   KEYFRAME ANIMATIONS
   ======================================== */

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(6, 182, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(132, 120, 245, 0.5), inset 0 0 20px rgba(132, 120, 245, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(132, 120, 245, 0.8), inset 0 0 40px rgba(132, 120, 245, 0.2);
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes typing {
  0%, 60%, 100% {
    opacity: 0.2;
  }
  30% {
    opacity: 1;
  }
}

@keyframes rotateArrow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========================================
   REUSABLE UTILITY CLASSES
   ======================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-geo-animate] {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

[data-geo-animate].is-visible {
  opacity: 1;
}

/* ========================================
   NAVIGATION (Global Styles - ai-classic)
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(3, 7, 18, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

#header {
  /* Fallback ID selector */
}

.header.is-scrolled {
  background: rgba(3, 7, 18, 0.95);
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 20px;
}

.nav__logo {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-heading);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform var(--transition-base);
}

.nav__logo:hover {
  transform: scale(1.05);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav__link {
  font-size: 14px;
  color: var(--color-text-light);
  transition: color var(--transition-base);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-base);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  padding: 10px 20px;
  background: var(--gradient-primary);
  border-radius: 8px;
  color: var(--color-white);
  font-weight: 600;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  z-index: 1000;
}

.nav__toggle-bar {
  width: 25px;
  height: 3px;
  background: var(--color-text-light);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav__toggle.is-open .nav__toggle-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav__toggle.is-open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-open .nav__toggle-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav__menu.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(3, 7, 18, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 20px;
  padding: 30px 20px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    display: none;
    gap: 0;
  }

  .nav__menu.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 9999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px 20px;
    gap: 8px;
    border-bottom: 1px solid rgba(132, 120, 245, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    visibility: visible !important;
  }

  .nav__menu.is-open .nav__link {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 10px;
    transition: background 0.2s;
  }

  .nav__menu.is-open .nav__link:hover,
  .nav__menu.is-open .nav__link:active {
    background: rgba(132, 120, 245, 0.1);
  }

  .nav__menu.is-open .nav__link--cta {
    text-align: center;
    margin-top: 8px;
  }
}

/* ========================================
   HERO SECTION - .geo-hero
   ======================================== */

.geo-hero {
  position: relative;
  min-height: 100vh;
  background: var(--color-bg-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 70px;
}

.geo-hero__canvas {
  display: none; /* Replaced by CSS orbs for better performance */
}

/* Hero floating orbs (CSS-only, replaces canvas particles) */
.geo-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.geo-hero__orb--1 {
  width: 500px;
  height: 500px;
  background: #7C3AED;
  top: -150px;
  right: -100px;
  animation: orbFloat1 10s ease-in-out infinite alternate;
}

.geo-hero__orb--2 {
  width: 350px;
  height: 350px;
  background: #06B6D4;
  bottom: -120px;
  left: -80px;
  animation: orbFloat2 8s ease-in-out infinite alternate;
}

.geo-hero__orb--3 {
  width: 280px;
  height: 280px;
  background: #4991f0;
  top: 40%;
  left: 50%;
  animation: orbFloat3 12s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.15); }
}

@keyframes orbFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-20px, 25px) scale(1.1); }
}

@keyframes orbFloat3 {
  0% { transform: translate(0, 0) scale(0.9); }
  100% { transform: translate(40px, -20px) scale(1.05); }
}



.geo-hero__wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: calc(100vh - 70px);
}

.geo-hero__content {
  flex: 0 0 55%;
  animation: slideRight 0.8s ease-out;
}

.geo-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 30px;
  animation: fadeUp 0.8s ease-out 0.1s backwards;
}

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

.geo-hero__title {
  font-size: clamp(32px, 4.2vw, 52px);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease-out 0.2s backwards;
}

.geo-hero__title .gradient-text {
  display: block;
}

.geo-hero__subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease-out 0.3s backwards;
}

.geo-hero__stats {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.geo-hero__stat {
  flex: 1;
  min-width: 120px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  animation: fadeUp 0.8s ease-out 0.4s backwards;
}

.geo-hero__stat:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(132, 120, 245, 0.3);
  box-shadow: var(--shadow-glow);
}

.geo-hero__stat-number {
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.geo-hero__stat-label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 8px;
  font-weight: 600;
}

.geo-hero__cta {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out 0.5s backwards;
}

.btn {
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  display: inline-block;
  text-align: center;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-strong);
}

.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn--ghost:hover {
  background: rgba(6, 182, 212, 0.1);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.btn--large {
  padding: 16px 40px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
}

.geo-hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
  z-index: 2;
}

.geo-hero__scroll-hint::after {
  content: '';
  width: 2px;
  height: 24px;
  background: var(--color-accent);
  border-radius: 2px;
  animation: slideDown 1.5s ease-in-out infinite;
}

.geo-hero__visual {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideLeft 0.8s ease-out;
}

/* AI Chat Component */
.ai-chat {
  width: 100%;
  max-width: 420px;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(132, 120, 245, 0.3);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 48px rgba(132, 120, 245, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(132, 120, 245, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 480px;
  animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-chat__header {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(132, 120, 245, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-chat__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
}

.ai-chat__status {
  font-size: 11px;
  color: var(--color-accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ai-chat__status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.ai-chat__messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(132, 120, 245, 0.2) transparent;
}

.ai-chat__messages::-webkit-scrollbar {
  width: 6px;
}

.ai-chat__messages::-webkit-scrollbar-track {
  background: transparent;
}

.ai-chat__messages::-webkit-scrollbar-thumb {
  background: rgba(132, 120, 245, 0.2);
  border-radius: 3px;
}

.ai-chat__message {
  font-size: 13px;
  line-height: 1.5;
  animation: fadeUp 0.4s ease-out;
}

.ai-chat__message.ai-chat__message--user {
  text-align: right;
  color: var(--color-text-light);
  padding: 10px 12px;
  background: rgba(132, 120, 245, 0.2);
  border-radius: 12px;
  border-bottom-right-radius: 4px;
  width: fit-content;
  margin-left: auto;
}

.ai-chat__message.ai-chat__message--ai {
  color: var(--color-accent);
  padding: 10px 12px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  width: fit-content;
}

.ai-chat__highlight {
  color: var(--color-accent);
  font-weight: 700;
}

.ai-chat__typing {
  display: flex;
  gap: 4px;
  padding: 10px 12px;
}

.ai-chat__typing span {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: typing 0.8s ease-in-out infinite;
}

.ai-chat__typing span:nth-child(2) {
  animation-delay: 0.1s;
}

.ai-chat__typing span:nth-child(3) {
  animation-delay: 0.2s;
}

/* Hero Responsive */
@media (max-width: 1024px) {
  .geo-hero__wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .geo-hero__content {
    flex: 1 1 auto;
  }

  .geo-hero__visual {
    flex: 1 1 auto;
  }

  .geo-hero__cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .geo-hero {
    padding-top: 70px;
    min-height: auto;
  }

  .geo-hero__wrapper {
    flex-direction: column;
    min-height: auto;
    padding: 30px 0 40px;
    gap: 30px;
  }

  .geo-hero__content {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .geo-hero__visual {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .geo-hero__title {
    font-size: 30px;
  }

  .geo-hero__subtitle {
    font-size: 15px;
  }

  .geo-hero__stats {
    gap: 12px;
    justify-content: center;
  }

  .geo-hero__actions {
    justify-content: center;
  }

  .ai-chat {
    width: 100%;
    max-width: 100%;
    height: 380px;
  }
}



/* ── Process section mobile ── */
@media (max-width: 768px) {
  .geo-process__timeline {
    padding: 20px 0;
  }

  .geo-process__timeline::before {
    display: none;
  }

  .geo-process__step {
    flex-direction: row !important;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
  }

  .geo-process__number {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin: 0;
  }

  .geo-process__content {
    flex: 1;
    padding: 20px;
  }

  .geo-process__content h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .geo-process__content p {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .geo-process__list li {
    font-size: 13px;
  }
}
/* ========================================
   PROBLEM SECTION - .geo-problem
   ======================================== */

.geo-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.geo-section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.geo-section--light {
  background: var(--color-bg-light);
  color: var(--color-bg-dark);
}

.geo-problem {
  background: var(--color-bg-light);
  color: var(--color-bg-dark);
}

.geo-section__title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-family: var(--font-heading);
  font-weight: 800;
  text-align: center;
  margin-bottom: 14px;
  animation: fadeUp 0.8s ease-out;
}

.geo-section__subtitle {
  font-size: 17px;
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(0, 0, 0, 0.6);
  animation: fadeUp 0.8s ease-out 0.1s backwards;
}

/* Dark sections need light subtitle text */
.geo-section--dark .geo-section__subtitle,
.geo-solution .geo-section__subtitle,
.geo-process .geo-section__subtitle,
.geo-faq .geo-section__subtitle,
.geo-checker .geo-section__subtitle {
  color: var(--color-text-muted);
}

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

.geo-problem__card {
  background: var(--color-dark-card);
  color: var(--color-text-light);
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(132, 120, 245, 0.2);
  transition: all var(--transition-base);
  animation: fadeUp 0.8s ease-out;
}

.geo-problem__card:nth-child(1) {
  animation-delay: 0.1s;
}

.geo-problem__card:nth-child(2) {
  animation-delay: 0.2s;
}

.geo-problem__card:nth-child(3) {
  animation-delay: 0.3s;
}

.geo-problem__card:nth-child(4) {
  animation-delay: 0.4s;
}

.geo-problem__card:hover {
  border-color: rgba(132, 120, 245, 0.5);
  background: rgba(17, 24, 39, 0.8);
  box-shadow: 0 0 30px rgba(132, 120, 245, 0.2);
  transform: translateY(-5px);
}

.geo-problem__icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.geo-problem__card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.geo-problem__card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Problem Responsive */
@media (max-width: 768px) {
  .geo-problem__grid {
    grid-template-columns: 1fr;
  }

  .geo-section {
    padding: 60px 0;
  }
}

/* ========================================
   SOLUTION SECTION - .geo-solution
   ======================================== */

.geo-solution {
  background: var(--color-bg-dark);
  position: relative;
}

.geo-solution::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(132, 120, 245, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}

.geo-solution__flow {
  display: flex;
  align-items: stretch;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out;
  position: relative;
  z-index: 1;
}

.geo-solution__step {
  flex: 0 1 300px;
  background: linear-gradient(145deg, rgba(132, 120, 245, 0.08) 0%, rgba(6, 182, 212, 0.04) 100%);
  border: 1px solid rgba(132, 120, 245, 0.25);
  border-radius: 20px;
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all var(--transition-slow);
  animation: fadeUp 0.8s ease-out;
  overflow: hidden;
}

.geo-solution__step::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(132, 120, 245, 0.1), transparent, rgba(6, 182, 212, 0.1), transparent);
  animation: spin 8s linear infinite;
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.geo-solution__step:nth-child(1) {
  animation-delay: 0.1s;
}

.geo-solution__step:nth-child(2) {
  animation-delay: 0.2s;
}

.geo-solution__step:nth-child(3) {
  animation-delay: 0.3s;
}

.geo-solution__step:hover {
  border-color: rgba(132, 120, 245, 0.6);
  background: linear-gradient(145deg, rgba(132, 120, 245, 0.15) 0%, rgba(6, 182, 212, 0.08) 100%);
  box-shadow: 0 0 50px rgba(132, 120, 245, 0.25), inset 0 0 30px rgba(132, 120, 245, 0.05);
  transform: translateY(-8px);
}

.geo-solution__step:hover::after {
  opacity: 1;
}

.geo-solution__step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 20px;
  font-family: var(--font-heading);
  box-shadow: 0 4px 20px rgba(132, 120, 245, 0.4);
}

.geo-solution__step-icon {
  font-size: 36px;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(132, 120, 245, 0.4));
}

.geo-solution__step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.geo-solution__step p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.geo-solution__arrow {
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-50%);
  font-size: 24px;
  color: rgba(132, 120, 245, 0.3);
}

.geo-solution__step:last-child .geo-solution__arrow {
  display: none;
}

/* Solution Responsive */
@media (max-width: 1024px) {
  .geo-solution__flow {
    gap: 20px;
  }

  .geo-solution__arrow {
    right: -20px;
  }
}

@media (max-width: 768px) {
  .geo-solution__flow {
    flex-direction: column;
    gap: 20px;
  }

  .geo-solution__arrow {
    position: static;
    transform: none;
    display: none;
  }

  .geo-solution__step {
    flex: 1 1 100%;
  }
}

/* ========================================
   PROCESS SECTION - .geo-process
   ======================================== */

.geo-process {
  background: var(--color-bg-dark);
}

.geo-process__timeline {
  position: relative;
  padding: 40px 0;
}

.geo-process__timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(132, 120, 245, 0.5) 0%, transparent 100%);
}

.geo-process__step {
  display: flex;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease-out;
}

.geo-process__step:nth-child(odd) {
  flex-direction: row;
}

.geo-process__step:nth-child(even) {
  flex-direction: row-reverse;
}

.geo-process__step:nth-child(1) {
  animation-delay: 0.1s;
}

.geo-process__step:nth-child(2) {
  animation-delay: 0.2s;
}

.geo-process__step:nth-child(3) {
  animation-delay: 0.3s;
}

.geo-process__number {
  flex: 0 0 80px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px;
  position: relative;
  z-index: 2;
  font-weight: 800;
  font-size: 24px;
  color: var(--color-white);
  font-family: var(--font-heading);
  background: var(--color-bg-darker);
  border-radius: 50%;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 30px rgba(132, 120, 245, 0.3), 0 0 60px rgba(6, 182, 212, 0.1);
}

.geo-process__number::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gradient-primary);
  z-index: -1;
  animation: spin 6s linear infinite;
}

.geo-process__number::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-bg-darker);
  z-index: -1;
}

.geo-process__content {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(132, 120, 245, 0.2);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.geo-process__content:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(132, 120, 245, 0.5);
  box-shadow: var(--shadow-glow);
}

.geo-process__content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.geo-process__content p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.geo-process__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.geo-process__list li {
  font-size: 14px;
  color: var(--color-text-muted);
  padding-left: 20px;
  position: relative;
}

.geo-process__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Process Responsive */
@media (max-width: 1024px) {
  .geo-process__timeline::before {
    display: none;
  }

  .geo-process__step {
    flex-direction: column-reverse !important;
  }

  .geo-process__step:nth-child(even) {
    flex-direction: column-reverse;
  }

  .geo-process__number {
    margin: 0 0 30px 0;
  }
}

/* ========================================
   BRAND CHECKER SECTION - .geo-checker
   ======================================== */

.geo-checker {
  background: var(--color-bg-light);
  color: var(--color-bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.geo-checker::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 120, 245, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.geo-checker::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.geo-checker .geo-section__title {
  color: var(--color-bg-dark);
}

.geo-checker .geo-section__subtitle {
  color: rgba(0, 0, 0, 0.6);
}

.geo-checker__wrapper {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.geo-checker__form {
  background: var(--color-white);
  border: none;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(132, 120, 245, 0.12), 0 4px 20px rgba(0, 0, 0, 0.06);
  animation: fadeUp 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.geo-checker__form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.geo-checker__inputs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.geo-checker__input {
  flex: 1;
  min-width: 200px;
  padding: 16px 20px;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  color: var(--color-bg-dark);
  font-size: 15px;
  transition: all var(--transition-base);
}

.geo-checker__input::placeholder {
  color: #94a3b8;
}

.geo-checker__input:focus {
  outline: none;
  background: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(132, 120, 245, 0.15);
}

.geo-checker__select {
  flex: 1;
  min-width: 150px;
  padding: 16px 20px;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  color: var(--color-bg-dark);
  font-size: 15px;
  transition: all var(--transition-base);
  appearance: none;
  cursor: pointer;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238478f5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

.geo-checker__select option {
  background: var(--color-white);
  color: var(--color-bg-dark);
}

.geo-checker__select:focus {
  outline: none;
  background-color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(132, 120, 245, 0.15);
}

.geo-checker .btn--primary {
  width: 100%;
  padding: 18px 32px;
  font-size: 16px;
  border-radius: 14px;
  margin-top: 8px;
}

.geo-checker__result {
  display: none;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 40px;
  padding: 40px 32px 32px;
  background: linear-gradient(135deg, #f8f5ff 0%, #f0f9ff 100%);
  border: 2px solid rgba(132, 120, 245, 0.2);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.geo-checker__result::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}



.geo-checker__result.active {
  display: block;
}

.geo-checker__score {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

.geo-checker__score-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-top: 12px;
}

.geo-checker__circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(var(--color-primary) 0deg 270deg, #e2e8f0 270deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(132, 120, 245, 0.2);
  position: relative;
}

.geo-checker__circle::before {
  content: \'\';
  position: absolute;
  inset: 12px;
  background: var(--color-white);
  border-radius: 50%;
}

.geo-checker__number {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-bg-dark);
  font-family: var(--font-heading);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.geo-checker__label {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-bg-dark);
  position: relative;
  z-index: 1;
}

.geo-checker__info {
  text-align: center;
  margin-bottom: 30px;
}

.geo-checker__info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  color: var(--color-bg-dark);
}

.geo-checker__message {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

.geo-checker__platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.geo-checker__platform {
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-base);
}

.geo-checker__platform:hover {
  background: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(132, 120, 245, 0.1);
}

.geo-checker__platform-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-bg-dark);
}

.geo-checker__platform-status {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.geo-checker__platform-status.active {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.geo-checker__platform-status.inactive {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.geo-checker__platform-status.partial {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.geo-checker__demo-note {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}

/* Checker Responsive */
@media (max-width: 768px) {
  .geo-checker {
    padding: 60px 0;
  }

  .geo-checker__form {
    padding: 28px 20px;
  }

  .geo-checker__inputs {
    flex-direction: column;
  }

  .geo-checker__input,
  .geo-checker__select {
    min-width: 100%;
    flex: 1;
  }

  .geo-checker__platforms {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   PLATFORMS SECTION - .geo-platforms
   ======================================== */

.geo-platforms {
  background: var(--color-bg-dark) !important;
  color: var(--color-text-light) !important;
  padding: 100px 0;
  position: relative;
}

.geo-platforms::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 400px 300px at 20% 30%, rgba(132, 120, 245, 0.07) 0%, transparent 100%),
    radial-gradient(ellipse 400px 300px at 80% 70%, rgba(6, 182, 212, 0.07) 0%, transparent 100%);
  pointer-events: none;
}

.geo-platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  animation: fadeUp 0.8s ease-out;
  position: relative;
  z-index: 1;
}

.geo-platforms__card {
  position: relative;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  overflow: hidden;
  animation: fadeUp 0.8s ease-out;
  border: none;
}

/* Animated gradient border */
.geo-platforms__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(132, 120, 245, 0.4), rgba(6, 182, 212, 0.2), rgba(132, 120, 245, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all var(--transition-base);
}

/* Glow hover overlay */
.geo-platforms__card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(132, 120, 245, 0.15), transparent, rgba(6, 182, 212, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-slow);
  animation: spin 10s linear infinite;
  z-index: -1;
}

.geo-platforms__card:nth-child(1) {
  animation-delay: 0.1s;
}

.geo-platforms__card:nth-child(2) {
  animation-delay: 0.2s;
}

.geo-platforms__card:nth-child(3) {
  animation-delay: 0.3s;
}

.geo-platforms__card:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 60px rgba(132, 120, 245, 0.25), 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px) scale(1.02);
}

.geo-platforms__card:hover::before {
  background: linear-gradient(135deg, rgba(132, 120, 245, 0.8), rgba(6, 182, 212, 0.5), rgba(132, 120, 245, 0.4));
}

.geo-platforms__card:hover::after {
  opacity: 1;
}

.geo-platforms__icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-glow);
  position: relative;
  z-index: 1;
}

.geo-platforms__card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.geo-platforms__provider {
  font-size: 12px;
  color: var(--color-accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.geo-platforms__card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Platforms Responsive */
@media (max-width: 1024px) {
  .geo-platforms__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .geo-platforms__grid {
    grid-template-columns: 1fr;
  }

  .geo-platforms__card {
    padding: 24px;
  }
}

/* ========================================
   SERVICE SECTION - .geo-service (replaces pricing)
   ======================================== */

.geo-service {
  background: var(--color-bg-dark);
  padding: 100px 0;
  position: relative;
}

.geo-service::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.geo-service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  animation: fadeUp 0.8s ease-out;
  position: relative;
  z-index: 1;
}

.geo-service__card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(132, 120, 245, 0.15);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  animation: fadeUp 0.8s ease-out;
}

.geo-service__card:nth-child(1) { animation-delay: 0.05s; }
.geo-service__card:nth-child(2) { animation-delay: 0.1s; }
.geo-service__card:nth-child(3) { animation-delay: 0.15s; }
.geo-service__card:nth-child(4) { animation-delay: 0.2s; }
.geo-service__card:nth-child(5) { animation-delay: 0.25s; }
.geo-service__card:nth-child(6) { animation-delay: 0.3s; }

.geo-service__card:hover {
  border-color: rgba(132, 120, 245, 0.4);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 40px rgba(132, 120, 245, 0.15), 0 12px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-6px);
}

.geo-service__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(132, 120, 245, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid rgba(132, 120, 245, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--color-accent);
  transition: all var(--transition-base);
}

.geo-service__card:hover .geo-service__icon {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(132, 120, 245, 0.3);
}

.geo-service__card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  color: var(--color-white);
}

.geo-service__card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.geo-service__cta {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

/* Service Responsive */
@media (max-width: 1024px) {
  .geo-service__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .geo-service__grid {
    grid-template-columns: 1fr;
  }

  .geo-service__card {
    padding: 24px;
  }
}

/* ========================================
   FAQ SECTION - .geo-faq
   ======================================== */

.geo-faq {
  background: var(--color-bg-light);
  color: var(--color-bg-dark);
  padding: 80px 0;
}

.geo-faq .geo-section__title {
  color: var(--color-bg-dark);
}

.geo-faq .geo-section__subtitle {
  color: rgba(0, 0, 0, 0.6) !important;
}

.geo-faq__list {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeUp 0.8s ease-out;
}

.geo-faq__item {
  margin-bottom: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
}

.geo-faq__item:nth-child(1) {
  animation: fadeUp 0.8s ease-out 0.1s backwards;
}

.geo-faq__item:nth-child(2) {
  animation: fadeUp 0.8s ease-out 0.2s backwards;
}

.geo-faq__item:nth-child(3) {
  animation: fadeUp 0.8s ease-out 0.3s backwards;
}

.geo-faq__item:nth-child(4) {
  animation: fadeUp 0.8s ease-out 0.4s backwards;
}

.geo-faq__item:nth-child(5) {
  animation: fadeUp 0.8s ease-out 0.5s backwards;
}

.geo-faq__item:hover {
  border-color: rgba(132, 120, 245, 0.4);
  box-shadow: 0 4px 16px rgba(132, 120, 245, 0.1);
}

.geo-faq__item[open] {
  background: var(--color-white);
  border-color: rgba(132, 120, 245, 0.4);
  box-shadow: 0 4px 20px rgba(132, 120, 245, 0.12);
}

.geo-faq__question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-heading);
  user-select: none;
  color: var(--color-bg-dark);
}

.geo-faq__question:hover {
  color: var(--color-primary);
}

.geo-faq__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 18px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.geo-faq__item[open] .geo-faq__icon {
  transform: rotate(180deg);
}

.geo-faq__answer {
  padding: 0 20px 20px;
  max-height: 0;
  overflow: hidden;
  animation: slideDown 0.3s ease-out forwards;
}

.geo-faq__item[open] .geo-faq__answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

.geo-faq__answer p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .geo-faq__question {
    font-size: 15px;
  }
}

/* ========================================
   CTA SECTION - .geo-cta
   ======================================== */

.geo-cta {
  position: relative;
  padding: 80px 0;
  background: var(--color-bg-darker);
  overflow: hidden;
  text-align: center;
  color: var(--color-white);
}

.geo-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 500px 400px at 30% 50%, rgba(132, 120, 245, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse 500px 400px at 70% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.geo-cta__canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 1;
}

.geo-cta__title {
  position: relative;
  z-index: 2;
  font-size: clamp(28px, 3.5vw, 44px);
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease-out;
}

.geo-cta__subtitle {
  position: relative;
  z-index: 2;
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
  animation: fadeUp 0.8s ease-out 0.1s backwards;
}

.geo-cta .btn--primary {
  position: relative;
  z-index: 2;
  background: var(--gradient-primary);
  color: var(--color-white);
  animation: fadeUp 0.8s ease-out 0.2s backwards;
  border: 1px solid rgba(132, 120, 245, 0.5);
}

.geo-cta .btn--primary:hover {
  box-shadow: 0 0 40px rgba(132, 120, 245, 0.4), 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

/* CTA Responsive */
@media (max-width: 768px) {
  .geo-cta {
    padding: 60px 0;
  }

  .geo-cta__title {
    font-size: 28px;
  }

  .geo-cta__subtitle {
    font-size: 16px;
  }
}

/* ========================================
   CONTACT SECTION - .geo-contact
   ======================================== */

.geo-contact {
  background: var(--color-bg-dark);
  padding: 80px 0;
  position: relative;
}

.geo-contact .geo-section__title {
  text-align: left;
  margin-bottom: 8px;
}

.geo-contact .geo-section__subtitle {
  text-align: left;
  margin-left: 0;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.geo-contact__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: flex-start;
  animation: fadeUp 0.8s ease-out;
}

.geo-contact__form-section {
  animation: slideRight 0.8s ease-out;
}

.geo-contact__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(132, 120, 245, 0.15);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(10px);
}

.geo-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.geo-contact__input,
.geo-contact__textarea {
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(132, 120, 245, 0.2);
  border-radius: 10px;
  color: var(--color-text-light);
  font-size: 14px;
  transition: all var(--transition-base);
  resize: none;
  width: 100%;
}

.geo-contact__input::placeholder,
.geo-contact__textarea::placeholder {
  color: var(--color-text-muted);
}

.geo-contact__input:focus,
.geo-contact__textarea:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(132, 120, 245, 0.5);
  box-shadow: 0 0 20px rgba(132, 120, 245, 0.2);
}

.geo-contact__textarea {
  grid-column: 1 / -1;
  margin-bottom: 16px;
  min-height: 120px;
}

.geo-contact__rodo,
.geo-contact__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.geo-contact__rodo input[type="checkbox"],
.geo-contact__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}

.geo-contact__checkbox label {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.geo-contact__checkbox label a {
  color: var(--color-accent);
}

.geo-contact__checkbox label strong {
  color: var(--color-text-light);
}

.geo-contact__form .btn--full {
  padding: 14px 28px;
  margin-top: 24px;
  font-size: 15px;
}

.geo-contact__info {
  animation: slideLeft 0.8s ease-out;
  padding: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(132, 120, 245, 0.15);
  border-radius: 20px;
}

.geo-contact__info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

.geo-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.geo-contact__item i {
  font-size: 16px;
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.geo-contact__item a {
  color: var(--color-text-light);
  transition: color var(--transition-base);
}

.geo-contact__item a:hover {
  color: var(--color-accent);
}

.geo-contact__item p {
  margin: 0;
}

.geo-contact__social {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(132, 120, 245, 0.2);
  display: flex;
  gap: 16px;
  align-items: center;
}

.geo-contact__social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(132, 120, 245, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  font-size: 18px;
}

.geo-contact__social a:hover {
  background: var(--gradient-primary);
  border-color: rgba(132, 120, 245, 0.5);
  box-shadow: var(--shadow-glow);
}

.geo-contact__toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
  max-width: 340px;
  line-height: 1.4;
  border: 1px solid rgba(255,255,255,0.1);
}

.geo-contact__toast.show {
  display: block;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.geo-contact__toast.is-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
}

.geo-contact__toast.is-error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
}

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

/* Contact Responsive */
@media (max-width: 1024px) {
  .geo-contact__wrapper {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .geo-contact__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .geo-contact__row {
    grid-template-columns: 1fr;
  }

  .geo-contact__form {
    padding: 24px;
  }
}

/* ========================================
   RELATED SERVICES SECTION
   ======================================== */

.geo-related {
  background: var(--color-bg-light);
  padding: 60px 0;
}

.geo-related .geo-section__title {
  font-size: clamp(20px, 2.5vw, 30px);
  color: var(--color-bg-dark);
  margin-bottom: 32px;
}

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

.related-card {
  display: block;
  padding: 28px 24px;
  background: var(--color-white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  text-decoration: none;
  color: var(--color-bg-dark);
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.related-card:hover {
  border-color: rgba(132, 120, 245, 0.4);
  box-shadow: 0 8px 32px rgba(132, 120, 245, 0.15);
  transform: translateY(-4px);
  color: var(--color-bg-dark);
}

.related-card__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(132, 120, 245, 0.1) 0%, rgba(73, 145, 240, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 16px;
  transition: all var(--transition-base);
}

.related-card:hover .related-card__icon {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.related-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  color: var(--color-bg-dark);
}

.related-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .related__grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FOOTER (Basic Styles)
   ======================================== */

.footer {
  background: var(--color-bg-darker);
  border-top: 1px solid rgba(132, 120, 245, 0.1);
  padding: 60px 0 24px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__brand .nav__logo {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-weight: 800;
}

.footer__seo {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: transparent;
}

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

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.footer__col a,
.footer__col p {
  font-size: 13px;
  color: var(--color-text-muted);
  transition: color var(--transition-base);
  line-height: 1.5;
}

.footer__col a:hover {
  color: var(--color-accent);
}

.footer__col i {
  margin-right: 6px;
  color: var(--color-accent);
  font-size: 12px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  transition: color var(--transition-base);
}

.footer__bottom-links a:hover {
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ========================================
   GLOBAL SCROLL ANIMATIONS
   ======================================== */

@media (prefers-reduced-motion: no-preference) {
  [data-geo-animate] {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
  }

  [data-geo-animate].is-visible {
    opacity: 1;
  }

  [data-geo-animate]:nth-child(1) {
    animation-delay: 0.05s;
  }

  [data-geo-animate]:nth-child(2) {
    animation-delay: 0.1s;
  }

  [data-geo-animate]:nth-child(3) {
    animation-delay: 0.15s;
  }

  [data-geo-animate]:nth-child(4) {
    animation-delay: 0.2s;
  }

  [data-geo-animate]:nth-child(5) {
    animation-delay: 0.25s;
  }
}

/* ========================================
   ACCESSIBILITY & PRINT STYLES
   ======================================== */

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
  }
}

@media print {
  .nav,
  .geo-hero__scroll-hint,
  .geo-cta__canvas,
  .geo-contact__form {
    display: none;
  }

  .geo-section {
    page-break-inside: avoid;
  }
}

/* ========================================
   LOADING & UTILITY STATES
   ======================================== */

.is-loading {
  pointer-events: none;
  opacity: 0.6;
}

.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(132, 120, 245, 0.2);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   HIGH DPI / RETINA DISPLAYS
   ======================================== */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  [data-geo-animate] {
    transform: translateZ(0);
  }
}

/* ========================================
   DARK MODE OVERRIDES (if needed)
   ======================================== */

@media (prefers-color-scheme: dark) {
  .geo-problem {
    background: var(--color-bg-light);
  }

  .geo-problem__card {
    background: var(--color-dark-card);
    border-color: rgba(132, 120, 245, 0.2);
  }
}

/* ========================================
   END OF GEO.CSS
   ======================================== */
