/* ===== CSS Variables ===== */
:root {
  /* Primary Colors - Extracted from logo */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;

  /* Dark Blue Background */
  --dark-50: #f8fafc;
  --dark-100: #f1f5f9;
  --dark-200: #e2e8f0;
  --dark-300: #cbd5e1;
  --dark-400: #94a3b8;
  --dark-500: #64748b;
  --dark-600: #475569;
  --dark-700: #334155;
  --dark-800: #1e293b;
  --dark-900: #0f172a;
  --dark-950: #020617;

  /* Accent Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --purple: #8b5cf6;

  /* Typography */
  --font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --section-padding: 100px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;

  /* 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 -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-700);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Utility Classes ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
  background: var(--dark-100);
  color: var(--dark-700);
}

.btn-secondary:hover {
  background: var(--dark-200);
}

.btn-outline {
  background: transparent;
  color: var(--primary-600);
  border: 2px solid var(--primary-200);
}

.btn-outline:hover {
  background: var(--primary-50);
  border-color: var(--primary-500);
}

.btn-white {
  background: white;
  color: var(--primary-600);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Premium Pricing Button */
.btn-pricing {
  position: relative;
  width: 100%;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-600);
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  border: 2px solid var(--primary-200);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn-pricing:hover {
  transform: scale(1.02) translateY(-2px);
  color: white;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-color: var(--primary-500);
  box-shadow:
    0 10px 30px rgba(59, 130, 246, 0.4),
    0 0 20px rgba(59, 130, 246, 0.2);
}

.btn-pricing:hover::before {
  left: 100%;
}

.btn-pricing:active {
  transform: scale(0.98);
}

.btn-pricing-featured {
  color: white;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

.btn-pricing-featured:hover {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
  box-shadow:
    0 12px 35px rgba(59, 130, 246, 0.5),
    0 0 30px rgba(59, 130, 246, 0.25);
}

.btn-pricing svg {
  transition: transform 0.3s ease;
}

.btn-pricing:hover svg {
  transform: translateX(4px);
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--dark-900);
  padding: 10px 0;
  border-bottom: 1px solid var(--dark-700);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition: transform var(--transition-base);
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dark-300);
  transition: color var(--transition-fast);
}

.top-bar-item:hover {
  color: var(--primary-400);
}

.top-bar-item svg {
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--dark-400);
  background: var(--dark-800);
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.top-bar-socials a:hover {
  color: white;
  background: var(--primary-600);
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-200);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  top: 0;
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-900);
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-600);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary-600);
}

.nav-btn {
  padding: 10px 22px !important;
  background: var(--primary-600) !important;
  color: white !important;
  border-radius: var(--border-radius);
}

.nav-btn:hover {
  background: var(--primary-700) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-700);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 60px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--primary-50) 0%, #ffffff 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary-100);
  border-radius: var(--border-radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-700);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease forwards;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark-900);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--dark-500);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-900);
}

.stat-label {
  font-size: 13px;
  color: var(--dark-400);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--dark-200);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease 0.5s forwards;
  opacity: 0;
}

.hero-graphic {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}

.main-cloud {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  animation: float 6s ease-in-out infinite;
}

.main-cloud svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.3));
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-700);
}

.card-1 {
  top: 15%;
  left: 5%;
  animation: floatCard 4s ease-in-out infinite;
}

.card-2 {
  top: 25%;
  right: 0;
  animation: floatCard 4s ease-in-out infinite 1s;
}

.card-3 {
  bottom: 10%;
  left: 10%;
  animation: floatCard 4s ease-in-out infinite 2s;
}

.card-4 {
  bottom: 20%;
  right: 0;
  animation: floatCard 4s ease-in-out infinite 2s;
}

.card-5 {
  bottom: 50%;
  right: -10%;
  animation: floatCard 4s ease-in-out infinite 2s;
}

.card-6 {
  top: 50%;
  left: 0;
  animation: floatCard 4s ease-in-out infinite 1s;
}

div#cards-1 {
  top: 13%;
  left: 0%;
  animation: floatCard 4s ease-in-out infinite 2s;
}

div#cards-2 {
  top: 29%;
  left: -15%;
  animation: floatCard 4s ease-in-out infinite 2s;
}

div#cards-3 {
  top: 63%;
  left: -22%;
  animation: floatCard 4s ease-in-out infinite 1s;
}

div#cards-4 {
  bottom: 11%;
  left: 6%;
  animation: floatCard 4s ease-in-out infinite 2s;
}

div#cards-5 {
  top: 11%;
  right: -5%;
  animation: floatCard 4s ease-in-out infinite 1s;
}

div#cards-6 {
  top: 30%;
  right: -10%;
  animation: floatCard 4s ease-in-out infinite 2s;
}

div#cards-7 {
  top: 78%;
  right: 0%;
  animation: floatCard 4s ease-in-out infinite 2s;
}

div#cards-8 {
  bottom: 39%;
  right: -20%;
  animation: floatCard 4s ease-in-out infinite 1s;
}

.hero-bg-gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-100);
  color: var(--primary-700);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--border-radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-title {
  font-size: clamp(26px, 4vw, 35px);
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: var(--dark-500);
  line-height: 1.7;
}

/* ===== Features Section ===== */
.features {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--dark-50) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Premium Grid - 2x2 Layout */
.features-grid.premium-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  padding: 36px;
  background: white;
  border: 1px solid var(--dark-200);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  border-color: var(--primary-200);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

/* Premium Card Styling */
.feature-card.premium-card {
  padding: 40px;
  background: white;
  border: 1px solid var(--dark-100);
  border-radius: 24px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.04),
    0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card.premium-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card.premium-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-100);
  box-shadow:
    0 20px 40px rgba(59, 130, 246, 0.12),
    0 8px 16px rgba(0, 0, 0, 0.06);
}

.feature-card.premium-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--primary-100);
  border-radius: var(--border-radius);
  color: var(--primary-600);
  margin-bottom: 20px;
}

.premium-card .feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
  border-radius: 16px;
  margin-bottom: 0;
  transition: all 0.4s ease;
}

.premium-card:hover .feature-icon {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.feature-badge {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--primary-50);
  color: var(--primary-600);
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--border-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-900);
  margin-bottom: 12px;
}

.premium-card .feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.feature-desc {
  font-size: 15px;
  color: var(--dark-500);
  line-height: 1.7;
}

.premium-card .feature-desc {
  font-size: 15px;
  color: var(--dark-400);
  line-height: 1.75;
  margin-bottom: 20px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--dark-100);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-600);
}

.feature-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--primary-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== About Section ===== */
.about-section {
  padding: var(--section-padding) 0;
  background: var(--dark-50);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-tag {
  margin-bottom: 16px;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-text {
  font-size: 16px;
  color: var(--dark-500);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--dark-200);
}

.about-stat {
  display: flex;
  flex-direction: column;
}

.about-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-600);
  line-height: 1;
}

.about-stat-label {
  font-size: 14px;
  color: var(--dark-400);
  margin-top: 8px;
}

.about-visual {
  position: relative;
}

.about-image-container {
  position: relative;
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-50) 100%);
  border-radius: var(--border-radius-lg);
  padding: 60px 40px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.about-feature-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-700);
  transition: all 0.3s ease;
}

.about-feature-badge:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-xl);
}

.about-feature-badge svg {
  color: var(--primary-600);
}

/* ===== Services Section ===== */
.services-section {
  padding: var(--section-padding) 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 32px;
  background: white;
  border: 1px solid var(--dark-100);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-200);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--primary-100);
  border-radius: var(--border-radius);
  color: var(--primary-600);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--primary-500);
  color: white;
  transform: scale(1.1);
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-900);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--dark-400);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-600);
  transition: all 0.3s ease;
}

.service-link svg {
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--primary-700);
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ===== Why Choose Us Section ===== */
.why-choose-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--dark-50) 0%, white 100%);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px;
  background: white;
  border: 1px solid var(--dark-100);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-100);
  line-height: 1;
  margin-bottom: 16px;
}

.why-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-900);
  margin-bottom: 12px;
}

.why-desc {
  font-size: 14px;
  color: var(--dark-400);
  line-height: 1.7;
}

/* ===== How It Works Section ===== */
.how-it-works-section {
  padding: var(--section-padding) 0;
  background: var(--dark-900);
}

.how-it-works-section .section-tag {
  background: rgba(59, 130, 246, 0.2);
  color: var(--primary-400);
}

.how-it-works-section .section-title {
  color: white;
}

.how-it-works-section .section-subtitle {
  color: var(--dark-400);
}

.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 200px;
  padding: 24px 20px;
  background: var(--dark-800);
  border: 1px solid var(--dark-700);
  border-radius: var(--border-radius-lg);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary-500);
  box-shadow:
    0 20px 40px rgba(59, 130, 246, 0.2),
    0 0 30px rgba(59, 130, 246, 0.1);
}

.step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 100%);
  border-radius: 16px;
  color: white;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
}

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--dark-400);
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-600), var(--primary-400));
  margin-top: 60px;
  flex-shrink: 0;
  position: relative;
}

.step-connector::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--primary-400);
  border-right: 2px solid var(--primary-400);
  transform: rotate(45deg);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, white 0%, var(--dark-50) 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  background: white;
  border: 1px solid var(--dark-100);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--primary-500);
}

.testimonial-text {
  font-size: 15px;
  color: var(--dark-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-900);
  margin-bottom: 2px;
}

.author-role {
  font-size: 13px;
  color: var(--dark-400);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
}

/* ===== Industries Section ===== */
.industries {
  padding: var(--section-padding) 0;
  background: var(--dark-900);
}

.industries .section-tag {
  background: rgba(59, 130, 246, 0.2);
  color: var(--primary-400);
}

.industries .section-title {
  color: white;
}

.industries .section-subtitle {
  color: var(--dark-400);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  position: relative;
  padding: 32px;
  background: var(--dark-800);
  border: 1px solid var(--dark-700);
  border-radius: var(--border-radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.industry-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-600);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(59, 130, 246, 0.15);
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 100%);
  border-radius: var(--border-radius);
  color: white;
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.industry-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.industry-desc {
  font-size: 14px;
  color: var(--dark-400);
  line-height: 1.7;
  margin-bottom: 20px;
}

.industry-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-400);
  transition: all 0.3s ease;
}

.industry-link svg {
  transition: transform 0.3s ease;
}

.industry-link:hover {
  color: var(--primary-300);
}

.industry-link:hover svg {
  transform: translateX(4px);
}

/* ===== Pricing Section ===== */
.pricing {
  padding: var(--section-padding) 0;
  background: var(--dark-50);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -12px;
  object-fit: cover;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.avatar-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-500);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -12px;
}

.trust-text {
  font-size: 14px;
  color: var(--dark-500);
}

.trust-text strong {
  color: var(--dark-700);
}

/* Billing Toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-500);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.toggle-label.active {
  color: var(--dark-900);
}

.save-badge {
  padding: 4px 10px;
  background: var(--success);
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--border-radius-full);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-300);
  transition: var(--transition-base);
  border-radius: var(--border-radius-full);
}

.toggle-slider::before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background: white;
  transition: var(--transition-base);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary-500);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(26px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-grid.three-cards {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 20px;
  background: white;
  border: 1px solid var(--dark-200);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(30px);
}

.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border: 2px solid var(--primary-500);
  box-shadow: var(--shadow-2xl), var(--shadow-glow);
  z-index: 1;
}

.pricing-card.featured.visible {
  transform: translateY(0);
}

.pricing-card.featured:hover {
  transform: translateY(-8px);
}

/* Plan Badge */
.plan-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--dark-100);
  color: var(--dark-600);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--border-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.plan-badge.badge-blue {
  background: var(--primary-100);
  color: var(--primary-700);
}

.plan-badge.badge-gradient {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
}

.plan-badge.badge-dark {
  background: var(--dark-800);
  color: white;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--border-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--dark-200);
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 13px;
  color: var(--dark-400);
  margin-bottom: 16px;
  line-height: 1.5;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-price.enterprise-price {
  display: block;
}

.contact-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-600);
}

.currency {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-900);
}

.amount {
  font-size: 44px;
  font-weight: 800;
  color: var(--dark-900);
  line-height: 1;
  transition: all var(--transition-base);
}

.period {
  font-size: 14px;
  color: var(--dark-400);
  font-weight: 500;
}

.plan-features {
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--dark-600);
}

.plan-features svg {
  flex-shrink: 0;
  color: var(--success);
}

.pricing-card .btn {
  width: 100%;
}

/* ===== Contact Section ===== */
.contact-section {
  padding: var(--section-padding) 0;
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding-right: 40px;
}

.contact-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--dark-900);
  margin: 16px 0;
  line-height: 1.2;
}

.contact-desc {
  font-size: 16px;
  color: var(--dark-500);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary-100);
  border-radius: var(--border-radius);
  color: var(--primary-600);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-900);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--dark-500);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--dark-50);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--dark-200);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease 0.3s forwards;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-family);
  color: var(--dark-900);
  background: white;
  border: 1px solid var(--dark-200);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--dark-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-500);
  box-shadow:
    0 0 0 4px rgba(59, 130, 246, 0.15),
    0 2px 8px rgba(59, 130, 246, 0.1);
}

.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='%2394A3B8' 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 12px center;
  background-size: 18px;
  padding-right: 44px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-full {
  width: 100%;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--dark-400);
  margin-top: 8px;
}

/* Form Success Message */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  animation: fadeInUp 0.6s ease forwards;
}

.form-success .success-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  border-radius: 50%;
  color: white;
  margin-bottom: 24px;
  animation: scaleIn 0.5s ease 0.2s forwards;
  opacity: 0;
  transform: scale(0);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-success h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 16px;
  color: var(--dark-500);
  line-height: 1.6;
}

/* Form submit button loading state */
.btn-text,
.btn-arrow {
  transition: opacity 0.3s ease;
}

.btn-loader {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-900) 0%, var(--primary-900) 100%);
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(25px, 4vw, 38px);
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 36px;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--dark-300);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 14px;
  color: var(--dark-400);
}

.cta-bg-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
}

.cta-circle-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
}

.cta-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -50px;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark-950);
  padding: 80px 0 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 15px;
  color: var(--dark-400);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--dark-800);
  border-radius: var(--border-radius);
  color: var(--dark-400);
  transition: all var(--transition-base);
}

.social-links a:hover {
  background: var(--primary-600);
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  font-size: 14px;
  color: var(--dark-400);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--dark-800);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--dark-500);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-20px);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .pricing-grid.three-cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .top-bar-left {
    gap: 16px;
  }

  .top-bar-item span {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 40px;
  }

  .hero-graphic {
    max-width: 400px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid.premium-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  /* New sections responsive */
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-content .section-title {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-container {
    flex-wrap: wrap;
    gap: 24px;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    max-width: 180px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-info {
    padding-right: 0;
    text-align: center;
  }

  .contact-details {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .press-hero {
    padding: 160px 0px 80px 0 !important;
  }
  .contact-info {
    padding: 0 !important;
  }
  section.support-channels {
    padding: 40px 0px !important;
  }
  section#faq {
    padding: 40px 0px !important;
  }
  section.blog-out {
    padding: 40px 0px !important;
  }
  .blog-grid,
  .press-list {
    margin-top: 20px !important;
  }

  .blog-hero {
    padding: 110px 0 70px 0px;
  }
  .exp-ct {
    padding: 16px 0 20px !important;
  }
  .press-list {
    margin-bottom: 0 !important;
  }
  section.media-coverege {
    padding: 40px 0px !important;
  }
  section.media-coverege .media-grid {
    margin: 20px auto !important;
  }
  .blog-hero h1,
  .press-hero h1 {
    font-size: 28px !important;
    line-height: 38px;
  }
  .blog-hero p,
  .press-hero p {
    font-size: 16px !important;
  }
  .contact-item h4,
  .contact-item p {
    text-align: left !important;
  }
  .contact-wrapper {
    display: block !important;
  }
  .contact-section {
    padding: 36px 0 20px !important;
  }
  .cta-section {
    padding: 50px 0 !important;
  }
  .cta-title {
    line-height: 36px !important;
  }
  .contact-item {
    flex-direction: initial;
  }
  .section-header {
    margin: 0 auto 40px;
  }
  :root {
    --section-padding: 40px;
  }
  .hero-container {
    gap: 10px;
  }
  .press-hero h1 {
    font-size: 34px;
    line-height: 44px;
  }

  .navbar {
    top: 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    background: white;
    box-shadow: var(--shadow-2xl);
    transition: right var(--transition-base);
    gap: 20px;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 20px;
  }

  .hero-visual {
    order: 1;
    margin-top: -57px;
    margin-bottom: 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-grid.premium-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .feature-card.premium-card {
    padding: 32px;
  }

  /* New sections mobile */
  .about-stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .about-image-container {
    padding: 40px 24px;
    min-height: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Pricing responsive */
  /* .trust-badges {
    flex-direction: column;
    gap: 12px;
  } */

  .billing-toggle {
    flex-wrap: wrap;
    gap: 12px;
  }

  .toggle-label {
    font-size: 14px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-grid.three-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* Contact form responsive */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
@media (max-width: 575px) {
  div#cards-3,
  div#cards-5,
  div#cards-2 {
    display: none;
  }
  div#cards-8 {
    right: inherit;
    left: -30px;
    z-index: 1;
  }
  div#cards-6 {
    z-index: 1;
  }
  div#cards-7 {
    top: 58%;
    z-index: 1;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-badge {
    font-size: 12px;
  }

  .hero-graphic {
    max-width: 300px;
  }

  .floating-card {
    padding: 10px 14px;
    font-size: 12px;
  }

  .feature-card,
  .pricing-card,
  .industry-card {
    padding: 24px;
  }

  .feature-card.premium-card {
    padding: 24px;
    border-radius: 18px;
  }

  .premium-card .feature-icon {
    width: 52px;
    height: 52px;
  }

  .premium-card .feature-title {
    font-size: 18px;
  }

  .feature-list li {
    font-size: 13px;
  }

  .features-grid.premium-grid {
    max-width: 100%;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .amount {
    font-size: 36px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: var(--primary-200);
  color: var(--dark-900);
}

.blog-hero {
  padding: 210px 0 80px 0px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
}
.blog-hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
}
.blog-hero p {
  font-size: 1.2em;
  opacity: 0.95;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.blog-card {
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}
.blog-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  position: relative;
  overflow: hidden;
}
.blog-image svg {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.blog-meta {
  padding: 20px 24px 0;
  display: flex;
  gap: 12px;
}
.blog-date {
  font-size: 0.85em;
  color: #666;
  font-weight: 500;
}
.blog-cat {
  font-size: 0.75em;
  background: #eff6ff;
  color: #3b82f6;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}
.blog-title {
  padding: 12px 24px 8px;
  font-size: 1.2em;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
}
.blog-desc {
  padding: 0 24px 16px;
  color: #666;
  font-size: 0.95em;
  line-height: 1.5;
}
.blog-footer {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f3f4f6;
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e5e7eb;
}
.author-name {
  font-size: 0.85em;
  color: #666;
  font-weight: 500;
}
.read-more {
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.9em;
  text-decoration: none;
  transition: all 0.2s;
}
.read-more:hover {
  color: #1d4ed8;
}
.featured-blog {
  grid-column: span 1;
}
@media (min-width: 1000px) {
  .featured-blog {
    grid-column: span 2;
    grid-row: span 1;
  }
  .featured-blog .blog-title {
    font-size: 1.5em;
  }
}

.press-hero {
  padding: 220px 0px 80px 0;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
}
.press-hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
}
.press-hero p {
  font-size: 1.2em;
  opacity: 0.95;
}
.press-list {
  max-width: 900px;
  margin: 60px auto;
}
.press-item {
  background: white;
  border-left: 4px solid #3b82f6;
  padding: 30px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.press-item:hover {
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
  transform: translateX(5px);
}
.press-date {
  font-size: 0.9em;
  color: #3b82f6;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.press-title {
  font-size: 1.35em;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.4;
}
.press-desc {
  color: #666;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 18px;
}
.press-category {
  display: inline-block;
  background: #f0f9ff;
  color: #3b82f6;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
  margin-bottom: 15px;
}
.press-link {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.press-link:hover {
  color: #1d4ed8;
  gap: 12px;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
}
.media-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}
.media-card:hover {
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.1);
  transform: translateY(-5px);
}
.media-logo {
  font-size: 1.5em;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 15px;
}
.media-title {
  font-size: 1.1em;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}
.media-date {
  color: #999;
  font-size: 0.9em;
}

.about-img img {
  border-radius: 10px;
  width: 100%;
}
section#cookies-sec .about-wrapper {
  display: block;
}
.navbar a.logo img {
  max-width: 160px;
}
.why-number img {
  width: 38px;
}

/*contact*/
.page-hero {
  padding: 88px 0 40px;
}

.hero-box {
  background: linear-gradient(130deg, #0f1e45 0%, #1d4ed8 70%, #1e40af 100%);
  border-radius: 28px;
  padding: 56px clamp(22px, 6vw, 72px);
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-box::before,
.hero-box::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.hero-box::before {
  width: 220px;
  height: 220px;
  background: rgba(125, 211, 252, 0.23);
  top: -70px;
  right: -40px;
}

.hero-box::after {
  width: 170px;
  height: 170px;
  background: rgba(147, 197, 253, 0.18);
  bottom: -65px;
  left: -30px;
}

.hero-box h1 {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.hero-box p {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: #dbeafe;
  font-size: clamp(16px, 2vw, 20px);
}

.contact-section {
  padding: 56px 0 90px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(22px, 3.5vw, 46px);
  align-items: stretch;
}

.contact-info,
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3.5vw, 42px);
}

.section-tag {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: #e0ecff;
  color: #1e40af;
  margin-bottom: 14px;
}

.contact-title {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.contact-desc {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 26px;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid #e6edf9;
  border-radius: 14px;
  padding: 14px;
  background: #f8fbff;
}

.contact-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1d4ed8;
}

.contact-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-item p {
  color: #475569;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #c8d9f1;
  background: #fff;
  border-radius: 12px;
  padding: 14px 14px;
  font: inherit;
  color: #0f172a;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 15px 18px;
  font: inherit;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-pricing {
  background: #1d4ed8;
  color: #fff;
}

.btn-pricing-featured {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 14px 25px rgba(37, 99, 235, 0.32);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

.form-note {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

.btn-arrow {
  opacity: 0.9;
}

.form-success {
  text-align: center;
  padding: 24px;
  border: 1px solid #99f6e4;
  border-radius: 14px;
  background: #ecfeff;
  color: var(--success);
}

.success-icon {
  display: inline-flex;
  margin-bottom: 10px;
}

/* Help page alignment with project visual language */
.help-page-main .hero#hero .hero-container {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  min-height: auto;
  padding-top: 24px;
  padding-bottom: 40px;
}

.help-page-main .hero#hero .hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.help-page-main .hero#hero .hero-cta {
  justify-content: center;
  flex-wrap: wrap;
}

.help-page-main .faq-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.help-page-main .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.help-page-main .faq-card {
  background: #ffffff;
  border: 1px solid var(--dark-200);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.help-page-main .faq-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-300);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.14);
}

.help-page-main .faq-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-700);
  background: linear-gradient(135deg, #dbeafe 0%, #e0ecff 100%);
  margin-bottom: 18px;
}

.help-page-main .faq-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 10px;
  line-height: 1.35;
}

.help-page-main .faq-card p {
  font-size: 15px;
  color: var(--dark-500);
  line-height: 1.75;
}

.help-page-main .support-channels {
  padding: 90px 0;
  background: #ffffff;
}

.help-page-main .channels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.help-page-main .channel-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--dark-200);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.help-page-main .channel-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-300);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.14);
}

.help-page-main .channel-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-700);
  background: linear-gradient(135deg, #dbeafe 0%, #e0ecff 100%);
  margin-bottom: 18px;
}

.help-page-main .channel-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 8px;
}

.help-page-main .channel-card p {
  font-size: 15px;
  color: var(--dark-500);
  line-height: 1.75;
  margin-bottom: 16px;
}

.help-page-main .channel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-700);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.help-page-main .channel-link:hover {
  color: var(--primary-500);
}

.help-page-main .channel-link::after {
  content: "->";
  font-size: 13px;
}

.help-page-main .cta-section {
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .help-page-main .faq-grid,
  .help-page-main .channels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .help-page-main .faq-section,
  .help-page-main .support-channels,
  .help-page-main .cta-section {
    padding: 70px 0;
  }

  .help-page-main .hero#hero .hero-container {
    padding-top: 12px;
    padding-bottom: 26px;
  }

  .help-page-main .faq-grid,
  .help-page-main .channels-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .help-page-main .faq-card,
  .help-page-main .channel-card {
    border-radius: 14px;
    padding: 22px 18px;
  }

  .help-page-main .faq-card h3,
  .help-page-main .channel-card h3 {
    font-size: 19px;
  }

  .help-page-main .hero#hero .hero-cta {
    width: 100%;
  }

  .help-page-main .hero#hero .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .help-page-main .cta-buttons {
    width: 100%;
    flex-direction: column;
  }

  .help-page-main .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-main {
    gap: 0;
  }
  .footer-main {
    margin-bottom: 30px;
  }
  .footer-bottom {
    padding-top: 20px;
  }
  .footer {
    padding: 50px 0 30px;
  }
}

/* Blog Details + Press Released pages */
.top-bar-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 32px;
  color: var(--dark-400);
  background: var(--dark-800);
  border-radius: 6px;
  transition: all var(--transition-fast);
}
.social-links {
  display: none;
}
.map-sec iframe {
  width: 100% !important;
}
.detail-hero {
  position: relative;
  overflow: hidden;
}

.detail-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.23) 0%, rgba(255, 255, 255, 0) 72%);
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.page-breadcrumb a {
  color: #ffffff;
}

.blog-detail-main,
.press-release-main {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.detail-content-wrap,
.press-release-wrap {
  padding: 80px 0;
}

.detail-grid,
.release-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: 30px;
  align-items: start;
}

.article-body,
.release-article {
  background: #ffffff;
  border: 1px solid #dbe7ff;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(29, 78, 216, 0.08);
  padding: 34px;
}

.article-cover {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.article-cover img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.article-meta-row,
.release-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.article-read-time,
.release-location {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  background: #e9f2ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
}
span.release-location {
  margin-bottom: 15px;
}
.article-body h2,
.release-article h2 {
  font-size: 28px;
  color: #0f172a;
  margin: 30px 0 14px;
  line-height: 1.2;
}

.article-body p,
.release-article p {
  color: #334155;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.detail-highlight {
  background: linear-gradient(130deg, #eff6ff 0%, #e0ecff 100%);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 20px;
  margin: 26px 0;
}

.detail-highlight h3 {
  margin-bottom: 8px;
  color: #1d4ed8;
}

.detail-list {
  margin: 10px 0 0;
  padding-left: 20px;
}

.detail-list li {
  list-style: disc;
  color: #334155;
  margin-bottom: 10px;
  line-height: 1.7;
}

.release-quote {
  border-left: 4px solid #3b82f6;
  background: #f8fbff;
  border-radius: 0 14px 14px 0;
  padding: 18px 20px;
  margin: 26px 0;
  color: #1e293b;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.release-quote cite {
  display: block;
  margin-top: 8px;
  color: #475569;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.article-sidebar,
.release-sidebar {
  display: grid;
  gap: 18px;
}

.side-card {
  background: #ffffff;
  border: 1px solid #dbe7ff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.side-card h3 {
  color: #0f172a;
  margin-bottom: 10px;
  font-size: 20px;
}

.side-card p {
  color: #475569;
  line-height: 1.7;
}

.side-author {
  color: #1d4ed8;
  font-weight: 700;
}

.kpi-list {
  display: grid;
  gap: 14px;
}

.kpi-list div {
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 12px;
  background: #f8fbff;
}

.kpi-list strong {
  display: block;
  color: #1d4ed8;
  font-size: 22px;
  line-height: 1;
}

.kpi-list span {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}

.side-btn {
  margin-top: 12px;
  width: 100%;
}

.media-kit-links {
  display: grid;
  gap: 10px;
}

.media-kit-links a {
  color: #1d4ed8;
  font-weight: 600;
}

.related-posts {
  padding: 10px 0 90px;
}

.related-head {
  text-align: center;
  margin-bottom: 34px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.related-card {
  background: #ffffff;
  border: 1px solid #dbe7ff;
  border-radius: 16px;
  padding: 24px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.related-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.related-card h3 {
  color: #0f172a;
  margin-bottom: 6px;
}

.related-card p {
  color: #64748b;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.13);
}

.release-stats {
  padding: 0 0 90px;
}

.release-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.release-stat {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(29, 78, 216, 0.28);
}

.release-stat strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.release-stat span {
  font-size: 14px;
  opacity: 0.95;
}

.animate-rise {
  animation: riseIn 0.7s ease forwards;
  opacity: 0;
  transform: translateY(24px);
}

.animate-delay-1 {
  animation-delay: 0.12s;
}

.animate-delay-2 {
  animation-delay: 0.24s;
}

.animate-delay-3 {
  animation-delay: 0.36s;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .detail-grid,
  .release-grid {
    grid-template-columns: 1fr;
  }

  .related-grid,
  .release-stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .detail-content-wrap,
  .press-release-wrap,
  .release-stats,
  .related-posts {
    padding: 60px 0;
  }

  .article-body,
  .release-article,
  .side-card {
    padding: 20px;
    border-radius: 14px;
  }

  .article-cover img {
    height: 220px;
  }

  .article-body h2,
  .release-article h2 {
    font-size: 22px;
  }

  .page-breadcrumb {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .detail-hero h1 {
    font-size: 34px;
  }

  .detail-hero p {
    font-size: 16px;
  }
}
