/* ============================================
   Kinecta Landing Page Styles
   Modern SaaS Design with Dark/Light Mode
   ============================================ */

/* CSS Variables - Light Mode (Default) */
:root {
  /* Brand Colors */
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-light: #34d399;
  --primary-glow: rgba(16, 185, 129, 0.3);

  /* Light Mode Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --bg-card: #ffffff;
  --bg-card-hover: #f9fafb;

  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-tertiary: #6b7280;
  --text-muted: #9ca3af;

  --border-color: #e5e7eb;
  --border-light: #f3f4f6;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  /* Sizing */
  --navbar-height: 72px;
  --container-max: 1200px;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: #1e293b;
    --bg-card-hover: #334155;

    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;
    --text-muted: #64748b;

    --border-color: #334155;
    --border-light: #1e293b;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
  }
}

/* Manual Dark Mode Override */
[data-theme="dark"] {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --bg-card: #1e293b;
  --bg-card-hover: #334155;

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-tertiary: #94a3b8;
  --text-muted: #64748b;

  --border-color: #334155;
  --border-light: #1e293b;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
}

/* Manual Light Mode Override */
[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --bg-card: #ffffff;
  --bg-card-hover: #f9fafb;

  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-tertiary: #6b7280;
  --text-muted: #9ca3af;

  --border-color: #e5e7eb;
  --border-light: #f3f4f6;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Base Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

/* ============================================
   Typography
   ============================================ */

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-glow);
  color: var(--primary);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

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

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--text-muted);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

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

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-1px);
}

.btn-ghost-white {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(var(--bg-primary), 0.9);
}

[data-theme="dark"] .navbar,
@media (prefers-color-scheme: dark) {
  .navbar {
    background: rgba(15, 23, 42, 0.9);
  }
}

[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.9);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--primary);
}

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

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.theme-toggle:hover {
  border-color: var(--text-muted);
  background: var(--bg-tertiary);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
}

.sun-icon {
  display: none;
}

.moon-icon {
  display: block;
}

@media (prefers-color-scheme: dark) {
  .sun-icon {
    display: block;
  }
  .moon-icon {
    display: none;
  }
}

[data-theme="dark"] .sun-icon {
  display: block;
}

[data-theme="dark"] .moon-icon {
  display: none;
}

[data-theme="light"] .sun-icon {
  display: none;
}

[data-theme="light"] .moon-icon {
  display: block;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  left: 0;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.mobile-menu-btn.active .hamburger {
  background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-btn.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 24px;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 0;
}

.mobile-menu-links hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 8px 0;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  padding-top: calc(var(--navbar-height) + 80px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.badge {
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 12px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* Hero Image/Mockup */
.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
}

.hero-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.mockup-header {
  padding: 16px 20px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
  display: flex;
  gap: 8px;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
}

.mockup-dots span:first-child {
  background: #ef4444;
}

.mockup-dots span:nth-child(2) {
  background: #f59e0b;
}

.mockup-dots span:nth-child(3) {
  background: #22c55e;
}

.mockup-content {
  display: flex;
  min-height: 300px;
}

.mockup-sidebar {
  width: 60px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-nav-item {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-tertiary);
}

.mockup-nav-item.active {
  background: var(--primary);
}

.mockup-main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  flex: 1;
}

.mockup-card-header {
  height: 12px;
  width: 120px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  margin-bottom: 16px;
}

.mockup-chart {
  height: 80px;
}

.chart-svg {
  width: 100%;
  height: 100%;
}

.mockup-stats {
  display: flex;
  gap: 12px;
}

.mockup-stat-card {
  flex: 1;
  height: 60px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

/* Floating Cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.card-1 {
  top: 20%;
  left: -40px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  right: -40px;
  animation-delay: 1.5s;
}

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

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-icon svg {
  width: 20px;
  height: 20px;
}

.float-icon.green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary);
}

.float-icon.blue {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

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

.float-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.float-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

/* Hero Gradient */
.hero-gradient {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse at center, var(--primary-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

/* ============================================
   Logos Section
   ============================================ */

.logos-section {
  padding: 48px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.logos-title {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-tertiary);
  opacity: 0.7;
}

/* ============================================
   Features Section
   ============================================ */

.features-section {
  padding: 120px 0;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   How It Works Section
   ============================================ */

.how-it-works-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

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

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: white;
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
  padding: 80px 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--border-radius-xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.cta-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-header {
  margin-bottom: 24px;
  min-height: 80px;
}

.pricing-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pricing-price {
  margin-bottom: 24px;
  white-space: nowrap;
  min-height: 56px;
}

.price-amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Pricing Loading Skeleton */
.pricing-loading .pricing-skeleton {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-skeleton .skeleton-title,
.pricing-skeleton .skeleton-price,
.pricing-skeleton .skeleton-line,
.pricing-skeleton .skeleton-button {
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-secondary) 50%, var(--bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: 8px;
}

.pricing-skeleton .skeleton-title {
  height: 60px;
  width: 100%;
}

.pricing-skeleton .skeleton-price {
  height: 48px;
  width: 60%;
}

.pricing-skeleton .skeleton-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
}

.pricing-skeleton .skeleton-line {
  height: 20px;
  width: 100%;
}

.pricing-skeleton .skeleton-line:nth-child(2) {
  width: 85%;
}

.pricing-skeleton .skeleton-line:nth-child(3) {
  width: 70%;
}

.pricing-skeleton .skeleton-button {
  height: 48px;
  width: 100%;
  margin-top: auto;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Pricing error state */
.pricing-error {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  grid-column: 1 / -1;
}

.pricing-error p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
  padding: 120px 0;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 32px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: #f59e0b;
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-glow);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
}

.author-role {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: white;
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 8px 0;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-float-card {
    display: none;
  }

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

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

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .nav-actions .theme-toggle {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: block;
  }

  .nav-actions {
    gap: 8px;
  }

  .hero {
    padding-top: calc(var(--navbar-height) + 48px);
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

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

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

  .cta-card {
    padding: 48px 24px;
  }

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

  .cta-subtitle {
    font-size: 15px;
  }

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

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

  .logos-grid {
    flex-wrap: wrap;
    gap: 16px;
  }

  .logo-item {
    font-size: 12px;
    padding: 8px 12px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .faq-question span {
    font-size: 15px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-badge {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    font-size: 13px;
  }

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

  .hero-cta {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    padding: 14px 20px;
  }

  .mockup-sidebar {
    display: none;
  }

  .hero-mockup {
    transform: scale(0.9);
  }

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

  .section-badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
  }

  .pricing-card {
    padding: 24px;
  }

  .pricing-name {
    font-size: 20px;
  }

  .price-amount {
    font-size: 32px;
  }

  .pricing-header {
    min-height: auto;
  }

  .pricing-price {
    min-height: auto;
  }

  .pricing-features li {
    font-size: 14px;
    padding: 10px 0;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-description {
    font-size: 14px;
  }

  .step-card {
    padding: 24px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-description {
    font-size: 14px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .logo {
    font-size: 18px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .navbar {
    height: 64px;
  }

  .hero {
    padding-top: calc(64px + 32px);
  }
}

/* ============================================
   Legal Pages (Privacy Policy, Terms, etc.)
   ============================================ */

.legal-page {
  padding-top: calc(var(--navbar-height) + 64px);
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-header h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.legal-updated {
  font-size: 14px;
  color: var(--text-muted);
}

.legal-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Table of Contents */
.legal-toc {
  position: sticky;
  top: calc(var(--navbar-height) + 24px);
  height: fit-content;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
}

.legal-toc h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.legal-toc ol {
  list-style: none;
  counter-reset: toc-counter;
}

.legal-toc li {
  counter-increment: toc-counter;
  margin-bottom: 8px;
}

.legal-toc a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.legal-toc a:hover {
  color: var(--primary);
  background: var(--bg-tertiary);
}

/* Legal Sections */
.legal-sections {
  max-width: 720px;
}

.legal-sections section {
  margin-bottom: 48px;
  scroll-margin-top: calc(var(--navbar-height) + 24px);
}

.legal-sections h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
}

.legal-sections h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-sections p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-sections ul,
.legal-sections ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-sections li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.legal-sections li strong {
  color: var(--text-primary);
}

.legal-sections a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-sections a:hover {
  color: var(--primary-dark);
}

.contact-info {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
  margin: 24px 0;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

/* Legal Page Responsive */
@media (max-width: 900px) {
  .legal-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-toc {
    position: static;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .legal-page {
    padding-top: calc(var(--navbar-height) + 48px);
    padding-bottom: 64px;
  }

  .legal-header h1 {
    font-size: 28px;
  }

  .legal-sections h2 {
    font-size: 20px;
  }

  .legal-sections h3 {
    font-size: 16px;
  }

  .legal-sections p,
  .legal-sections li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .legal-page {
    padding-top: calc(64px + 32px);
  }

  .legal-toc {
    padding: 16px;
  }

  .legal-toc a {
    padding: 6px 10px;
    font-size: 13px;
  }

  .legal-sections h2 {
    font-size: 18px;
  }

  .legal-sections p,
  .legal-sections li {
    font-size: 14px;
    line-height: 1.7;
  }

  .contact-info {
    padding: 16px;
  }
}

/* Cookie Tables */
.cookie-category {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 20px;
  margin: 16px 0;
}

.cookie-category p:last-child {
  margin-bottom: 0;
}

.cookie-table-wrapper {
  overflow-x: auto;
  margin: 16px 0;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.cookie-table thead {
  background: var(--bg-secondary);
}

.cookie-table th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-color);
  white-space: nowrap;
}

.cookie-table td {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cookie-table tr:hover {
  background: var(--bg-tertiary);
}

.cookie-table code {
  background: var(--bg-tertiary);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'SF Mono', Monaco, 'Courier New', monospace;
  font-size: 13px;
  color: var(--primary);
}

.legal-highlight {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .cookie-table {
    font-size: 13px;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 10px 12px;
  }

  .cookie-category {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .cookie-table {
    font-size: 12px;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 8px 10px;
  }
}

/* ============================================
   About Page Styles
   ============================================ */

/* About Hero */
.about-hero {
  position: relative;
  padding: calc(var(--navbar-height) + 80px) 0 80px;
  overflow: hidden;
}

.about-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-hero-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.about-hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top center, var(--primary-glow) 0%, transparent 60%);
  opacity: 0.5;
  z-index: 0;
}

/* Mission Section */
.about-mission {
  padding: 80px 0;
  background: var(--bg-secondary);
}

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

.mission-content .section-badge {
  margin-bottom: 16px;
}

.mission-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.mission-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

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

.mission-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.mission-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.mission-stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--primary-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-stat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.mission-stat-value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.mission-stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* About Features */
.about-features {
  padding: 100px 0;
}

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

.about-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-feature-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--primary-glow) 0%, transparent 100%);
  border-color: var(--primary);
}

.about-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

.about-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.about-feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Team Section */
.about-team {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 320px;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.team-avatar span {
  font-size: 36px;
  font-weight: 700;
  color: white;
}

.team-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.team-social a:hover {
  background: var(--primary);
}

.team-social svg {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
}

.team-social a:hover svg {
  color: white;
}

/* Values Section */
.about-values {
  padding: 100px 0;
}

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

.value-card {
  padding: 32px;
  border-radius: var(--border-radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Location Section */
.about-location {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

.location-info .section-badge {
  margin-bottom: 16px;
}

.location-info .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.location-info p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.location-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-primary);
}

.location-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.location-item a {
  color: var(--primary);
}

.location-item a:hover {
  text-decoration: underline;
}

.location-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-graphic {
  width: 100%;
  max-width: 400px;
}

.globe-graphic svg {
  width: 100%;
  height: auto;
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mission-stats {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .about-feature-card.featured {
    grid-column: span 2;
  }

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

  .location-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .location-visual {
    order: -1;
  }

  .globe-graphic {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: calc(var(--navbar-height) + 48px) 0 48px;
  }

  .about-hero-title {
    font-size: 32px;
  }

  .about-hero-subtitle {
    font-size: 16px;
  }

  .about-mission,
  .about-features,
  .about-team,
  .about-values,
  .about-location {
    padding: 64px 0;
  }

  .mission-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mission-stat-card {
    padding: 24px;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .about-feature-card.featured {
    grid-column: span 1;
  }

  .team-grid {
    gap: 24px;
  }

  .team-card {
    padding: 32px;
  }

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

  .value-card {
    padding: 24px;
  }

  .location-info .section-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: calc(64px + 32px) 0 32px;
  }

  .about-hero-title {
    font-size: 28px;
  }

  .mission-stat-value {
    font-size: 28px;
  }

  .about-feature-card {
    padding: 24px;
  }

  .about-feature-card h3 {
    font-size: 18px;
  }

  .team-avatar {
    width: 80px;
    height: 80px;
  }

  .team-avatar span {
    font-size: 28px;
  }

  .value-number {
    font-size: 36px;
  }

  .globe-graphic {
    max-width: 250px;
  }
}

/* ============================================
   Coming Soon Pages (Community, Blog, etc.)
   ============================================ */

.coming-soon-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--navbar-height) + 40px) 0 80px;
  overflow: hidden;
}

.coming-soon-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

.coming-soon-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
}

.coming-soon-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.coming-soon-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 48px;
}

.coming-soon-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at top center, var(--primary-glow) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(16, 185, 129, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at bottom right, rgba(52, 211, 153, 0.1) 0%, transparent 40%);
  opacity: 0.6;
  z-index: 0;
}

.coming-soon-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.coming-soon-feature {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.coming-soon-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.coming-soon-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--primary-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.coming-soon-feature h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.coming-soon-feature p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.coming-soon-notify {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-xl);
  padding: 48px;
  max-width: 560px;
  margin: 0 auto;
}

.coming-soon-notify h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.coming-soon-notify > p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.notify-form {
  display: flex;
  gap: 12px;
}

.notify-form input {
  flex: 1;
  padding: 14px 20px;
  font-size: 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.notify-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.notify-form input::placeholder {
  color: var(--text-muted);
}

.notify-form .btn {
  white-space: nowrap;
}

/* Coming Soon Responsive */
@media (max-width: 1024px) {
  .coming-soon-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .coming-soon-page {
    padding: calc(var(--navbar-height) + 32px) 0 64px;
  }

  .coming-soon-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .coming-soon-icon svg {
    width: 32px;
    height: 32px;
  }

  .coming-soon-title {
    font-size: 32px;
  }

  .coming-soon-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .coming-soon-features {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }

  .coming-soon-feature {
    padding: 24px;
  }

  .coming-soon-notify {
    padding: 32px 24px;
  }

  .coming-soon-notify h3 {
    font-size: 20px;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-form input {
    width: 100%;
  }

  .notify-form .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .coming-soon-page {
    padding: calc(64px + 24px) 0 48px;
  }

  .coming-soon-title {
    font-size: 28px;
  }

  .coming-soon-notify {
    padding: 24px 20px;
  }

  .coming-soon-notify h3 {
    font-size: 18px;
  }
}

/* ============================================
   Documentation/Resource Library Page
   ============================================ */

/* Docs Hero */
.docs-hero {
  position: relative;
  padding: calc(var(--navbar-height) + 60px) 0 60px;
  background: var(--bg-secondary);
  overflow: hidden;
}

.docs-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.docs-hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.docs-hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.docs-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top center, var(--primary-glow) 0%, transparent 60%);
  opacity: 0.4;
  z-index: 0;
}

/* Docs Search */
.docs-search {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.docs-search input {
  width: 100%;
  padding: 16px 20px 16px 52px;
  font-size: 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--bg-card);
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.docs-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.docs-search input::placeholder {
  color: var(--text-muted);
}

.docs-search svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
}

/* Docs Quick Links */
.docs-quick-links,
.docs-quicklinks {
  padding: 48px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.docs-quick-card,
.quicklink-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 4px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.docs-quick-card:hover,
.quicklink-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.docs-quick-icon,
.quicklink-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  grid-row: 1 / 3;
}

.docs-quick-icon svg,
.quicklink-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.quicklink-card-content {
  display: flex;
  flex-direction: column;
}

.docs-quick-content h3,
.quicklink-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  align-self: end;
}

.docs-quick-content p,
.quicklink-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
  align-self: start;
}

/* Docs Main Container */
.docs-main {
  padding: 48px 0 80px;
}

.docs-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Docs Sidebar */
.docs-sidebar {
  position: sticky;
  top: calc(var(--navbar-height) + 24px);
  height: fit-content;
  max-height: calc(100vh - var(--navbar-height) - 48px);
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 24px;
}

.docs-nav-section {
  margin-bottom: 24px;
}

.docs-nav-section:last-child {
  margin-bottom: 0;
}

.docs-nav-section h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-left: 12px;
}

.docs-nav-section ul {
  list-style: none;
}

.docs-nav-section li {
  margin-bottom: 2px;
}

.docs-nav-section a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.docs-nav-section a:hover {
  color: var(--primary);
  background: var(--bg-tertiary);
}

.docs-nav-section a.active {
  color: var(--primary);
  background: var(--primary-glow);
  font-weight: 500;
}

/* Docs Content Area */
.docs-content {
  min-width: 0;
}

/* Docs Article */
.docs-article {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  margin-bottom: 32px;
  scroll-margin-top: calc(var(--navbar-height) + 24px);
}

.docs-article h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.docs-article h2 svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
}

.docs-article > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.docs-article h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 16px;
}

.docs-article h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 24px;
  margin-bottom: 12px;
}

.docs-article ul,
.docs-article ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.docs-article li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.docs-article li strong {
  color: var(--text-primary);
}

/* Docs Callout */
.docs-callout {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin: 24px 0;
}

.docs-callout svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.docs-callout p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.docs-callout.warning {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  border-left-color: #f59e0b;
}

.docs-callout.warning svg {
  stroke: #f59e0b;
}

.docs-callout.info {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  border-left-color: #3b82f6;
}

.docs-callout.info svg {
  stroke: #3b82f6;
}

/* Docs Feature Grid */
.docs-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.docs-feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
}

.docs-feature-item:hover {
  border-color: var(--primary);
}

.docs-feature-item-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.docs-feature-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.docs-feature-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 6px 0;
}

.docs-feature-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Docs Steps */
.docs-steps {
  counter-reset: step-counter;
  margin: 24px 0;
}

.docs-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.docs-step:last-child {
  border-bottom: none;
}

.docs-step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.docs-step-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.docs-step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* Docs FAQ */
.docs-faq {
  margin: 24px 0;
}

.docs-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
}

.docs-faq-item:last-child {
  margin-bottom: 0;
}

.docs-faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 24px 28px;
  margin: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.docs-faq-item p {
  padding: 24px 28px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

.docs-faq-item p a {
  color: var(--primary);
}

.docs-faq-item p a:hover {
  text-decoration: underline;
}

.docs-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: var(--bg-secondary);
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: all 0.2s ease;
}

.docs-faq-question:hover {
  background: var(--bg-tertiary);
}

.docs-faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.docs-faq-item.active .docs-faq-question svg {
  transform: rotate(180deg);
}

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

.docs-faq-item.active .docs-faq-answer {
  max-height: 500px;
}

.docs-faq-answer p {
  padding: 24px 28px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
  border-top: 1px solid var(--border-color);
}

/* Docs Contact Cards */
.docs-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.docs-contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  transition: all 0.2s ease;
  margin: 16px 0;
}

.docs-contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Direct SVG inside contact card (without wrapper) */
.docs-contact-card > svg {
  width: 48px;
  height: 48px;
  padding: 12px;
  background: var(--primary-glow);
  border-radius: 12px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.docs-contact-card > a {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.docs-contact-card > a:hover {
  text-decoration: underline;
}

.docs-contact-card-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.docs-contact-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

.docs-contact-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.docs-contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.docs-contact-card a {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
}

.docs-contact-card a:hover {
  text-decoration: underline;
}

/* Docs Section Divider */
.docs-section-divider {
  height: 1px;
  background: var(--border-color);
  margin: 48px 0;
}

/* Docs Responsive */
@media (max-width: 1024px) {
  .docs-quick-grid,
  .quicklinks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .docs-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .docs-sidebar {
    position: static;
    max-height: none;
    display: none;
  }

  .docs-feature-grid {
    grid-template-columns: 1fr;
  }

  .docs-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .docs-hero {
    padding: calc(var(--navbar-height) + 40px) 0 40px;
  }

  .docs-hero-title {
    font-size: 28px;
  }

  .docs-hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .docs-quick-links,
  .docs-quicklinks {
    padding: 32px 0;
  }

  .docs-quick-grid,
  .quicklinks-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .docs-quick-card,
  .quicklink-card {
    padding: 16px;
  }

  .docs-quick-icon,
  .quicklink-icon {
    width: 40px;
    height: 40px;
  }

  .docs-quick-icon svg,
  .quicklink-icon svg {
    width: 20px;
    height: 20px;
  }

  .docs-main {
    padding: 32px 0 64px;
  }

  .docs-article {
    padding: 32px 24px;
  }

  .docs-article h2 {
    font-size: 24px;
  }

  .docs-article h2 svg {
    width: 28px;
    height: 28px;
  }

  .docs-article h3 {
    font-size: 18px;
  }

  .docs-feature-item {
    padding: 16px;
  }

  .docs-step {
    gap: 16px;
    padding: 16px 0;
  }

  .docs-step::before {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .docs-contact-card {
    padding: 20px;
  }

  .docs-contact-card-icon {
    width: 48px;
    height: 48px;
  }

  .docs-contact-card-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .docs-hero {
    padding: calc(64px + 24px) 0 32px;
  }

  .docs-hero-title {
    font-size: 24px;
  }

  .docs-search input {
    padding: 14px 16px 14px 44px;
    font-size: 15px;
  }

  .docs-search svg {
    left: 14px;
    width: 18px;
    height: 18px;
  }

  .docs-article {
    padding: 24px 20px;
    margin-bottom: 24px;
  }

  .docs-article h2 {
    font-size: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .docs-article > p,
  .docs-article li {
    font-size: 14px;
  }

  .docs-callout {
    padding: 16px;
    gap: 12px;
  }

  .docs-callout svg {
    width: 20px;
    height: 20px;
  }

  .docs-callout p {
    font-size: 14px;
  }

  .docs-feature-item {
    flex-direction: column;
    gap: 12px;
  }

  .docs-faq-question {
    padding: 16px;
    font-size: 14px;
  }

  .docs-faq-answer p {
    padding: 16px;
    font-size: 14px;
  }

  .docs-contact-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   Contact Page Styles
   ============================================ */

/* Contact Hero */
.contact-hero {
  position: relative;
  padding: calc(var(--navbar-height) + 80px) 0 80px;
  overflow: hidden;
}

.contact-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-hero-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.contact-hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top center, var(--primary-glow) 0%, transparent 60%);
  opacity: 0.5;
  z-index: 0;
}

/* Contact Options Grid */
.contact-options {
  padding: 80px 0;
  background: var(--bg-secondary);
}

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

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--primary-glow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
}

.contact-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.2s ease;
}

.contact-link:hover {
  gap: 12px;
}

.contact-link svg {
  width: 18px;
  height: 18px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 0;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-info h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.contact-form-info > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

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

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

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.contact-info-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-xl);
  padding: 40px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 48px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  margin-top: 8px;
}

.contact-form .btn svg {
  width: 18px;
  height: 18px;
}

/* Contact FAQ Section */
.contact-faq {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 28px 32px;
}

.contact-faq-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact-faq-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.contact-faq-cta {
  text-align: center;
}

.contact-faq-cta .btn svg {
  width: 18px;
  height: 18px;
}

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

  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-info {
    text-align: center;
  }

  .contact-info-items {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
  }

  .contact-info-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: calc(var(--navbar-height) + 48px) 0 48px;
  }

  .contact-hero-title {
    font-size: 32px;
  }

  .contact-hero-subtitle {
    font-size: 16px;
  }

  .contact-options {
    padding: 64px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-card {
    padding: 28px 24px;
  }

  .contact-form-section {
    padding: 64px 0;
  }

  .contact-form-info h2 {
    font-size: 28px;
  }

  .contact-form {
    padding: 28px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-faq {
    padding: 64px 0;
  }

  .contact-faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-faq-item {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: calc(64px + 32px) 0 32px;
  }

  .contact-hero-title {
    font-size: 28px;
  }

  .contact-card-icon {
    width: 56px;
    height: 56px;
  }

  .contact-card-icon svg {
    width: 28px;
    height: 28px;
  }

  .contact-card h3 {
    font-size: 18px;
  }

  .contact-info-items {
    flex-direction: column;
    align-items: center;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
}
