/* ProfitAI - Styles */
/* Converted from Tailwind CSS to vanilla CSS */

:root {
  /* Colors */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  
  --red-500: #ef4444;
  --red-600: #dc2626;
  
  --orange-500: #f97316;
  --orange-600: #ea580c;
  
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  
  --emerald-50: #ecfdf5;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  
  --yellow-300: #fde047;
  --yellow-500: #eab308;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--slate-900);
  background: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 18px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(to right, var(--blue-600), var(--cyan-600));
  color: white;
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(to right, var(--blue-700), var(--cyan-700));
  box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.4);
  transform: scale(1.02);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-white {
  background: white;
  color: var(--blue-600);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: var(--blue-50);
  transform: scale(1.05);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(to bottom right, var(--slate-900), var(--slate-800), var(--slate-900));
  color: white;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 18c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6z' stroke='%23fff' stroke-opacity='.05'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.hero-content {
  position: relative;
  padding: 116px 0 128px;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 164px 0 128px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 9999px;
  padding: 8px 16px;
  margin-bottom: 32px;
}

.hero-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-300);
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 60px;
  }
}

.hero h1 .gradient-text {
  background: linear-gradient(to right, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  color: var(--slate-300);
  margin-bottom: 8px;
}

@media (min-width: 1024px) {
  .hero-description {
    font-size: 24px;
  }
}

.hero-highlight {
  font-size: 18px;
  color: var(--blue-300);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: var(--slate-400);
  margin-bottom: 40px;
}

.hero-features > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-features .icon {
  width: 16px;
  height: 16px;
  color: var(--green-400);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 64px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-stat {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.hero-stat .value {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(to right, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

@media (min-width: 1024px) {
  .hero-stat .value {
    font-size: 48px;
  }
}

.hero-stat .label {
  font-size: 14px;
  color: var(--slate-400);
}

/* Section */
.section {
  padding: 80px 0;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-100);
  border: 1px solid var(--blue-200);
  border-radius: 9999px;
  padding: 8px 20px;
  margin-bottom: 24px;
}

.section-badge span {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-700);
}

.section-badge .icon {
  width: 20px;
  height: 20px;
  color: var(--blue-600);
}

.section-title {
  font-size: 30px;
  color: var(--slate-900);
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 48px;
  }
}

.section-subtitle {
  font-size: 20px;
  color: var(--slate-600);
  max-width: 800px;
  margin: 0 auto;
}

/* Cards */
.card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--slate-100);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  border-color: var(--blue-200);
}

.card-gradient {
  background: linear-gradient(to bottom right, var(--slate-50), var(--slate-100));
}

/* Advantages Section */
.advantages {
  background: linear-gradient(to bottom right, var(--slate-50), white, var(--blue-50));
}

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

@media (min-width: 768px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.advantage-card {
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background: linear-gradient(to bottom right, var(--blue-50), var(--cyan-50));
  border-radius: 0 0 0 100%;
  opacity: 0.5;
  transition: opacity 0.3s;
}

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

.advantage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover .advantage-icon {
  transform: scale(1.1);
}

.advantage-icon.blue {
  background: linear-gradient(to bottom right, var(--blue-500), var(--cyan-500));
}

.advantage-icon.green {
  background: linear-gradient(to bottom right, var(--green-500), var(--emerald-500));
}

.advantage-icon.orange {
  background: linear-gradient(to bottom right, var(--orange-500), var(--red-500));
}

.advantage-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.advantage-card h3 {
  font-size: 24px;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.advantage-card p {
  color: var(--slate-600);
  margin-bottom: 24px;
  line-height: 1.7;
}

.advantage-stat {
  background: linear-gradient(to bottom right, var(--slate-50), var(--slate-100));
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--slate-200);
}

.advantage-stat .value {
  font-size: 30px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.advantage-stat .label {
  font-size: 14px;
  color: var(--slate-600);
  font-weight: 500;
}

/* Features Banner */
.features-banner {
  background: linear-gradient(to bottom right, var(--slate-900), var(--blue-900), var(--slate-900));
  border-radius: 24px;
  padding: 32px;
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .features-banner {
    padding: 48px;
  }
}

.features-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 18c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6z' stroke='%23fff' stroke-opacity='.03'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.features-banner h3 {
  font-size: 24px;
  margin-bottom: 32px;
  text-align: center;
  position: relative;
}

@media (min-width: 1024px) {
  .features-banner h3 {
    font-size: 30px;
  }
}

.features-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

@media (min-width: 768px) {
  .features-banner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  transition: background 0.3s;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.feature-item-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-item-icon {
  background: rgba(255, 255, 255, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.feature-item h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-item h4 svg {
  width: 20px;
  height: 20px;
  color: var(--green-400);
}

.feature-item p {
  font-size: 14px;
  color: var(--blue-100);
  line-height: 1.6;
}

.features-banner-footer {
  margin-top: 32px;
  text-align: center;
  position: relative;
}

.features-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 12px 24px;
}

.features-banner-badge svg {
  width: 20px;
  height: 20px;
  color: var(--yellow-300);
}

.features-banner-badge span {
  font-size: 14px;
  font-weight: 600;
}

/* Virtual Assistants */
.assistants {
  background: white;
}

.assistants-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.assistant-card {
  background: linear-gradient(to bottom right, var(--slate-50), var(--slate-100));
  border-radius: 16px;
  padding: 32px;
  border: 2px solid var(--slate-200);
  transition: border-color 0.3s;
}

.assistant-card:hover {
  border-color: var(--blue-300);
}

.assistant-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .assistant-content {
    grid-template-columns: 1fr 2fr;
  }
}

.assistant-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.assistant-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  font-size: 32px;
}

.assistant-icon.blue { background: linear-gradient(to bottom right, var(--blue-500), var(--blue-600)); }
.assistant-icon.green { background: linear-gradient(to bottom right, var(--green-500), var(--green-600)); }
.assistant-icon.purple { background: linear-gradient(to bottom right, var(--purple-500), var(--purple-600)); }
.assistant-icon.orange { background: linear-gradient(to bottom right, var(--orange-500), var(--orange-600)); }
.assistant-icon.cyan { background: linear-gradient(to bottom right, var(--cyan-500), var(--cyan-600)); }

.assistant-header h3 {
  font-size: 24px;
  color: var(--slate-900);
}

.assistant-header p {
  font-size: 14px;
  color: var(--slate-500);
  font-weight: 600;
}

.assistant-task {
  background: var(--blue-50);
  border-left: 4px solid var(--blue-500);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.assistant-task .label {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-700);
  margin-bottom: 4px;
}

.assistant-task .text {
  font-size: 14px;
  color: var(--slate-700);
  font-weight: 600;
}

.assistant-description {
  font-size: 14px;
  color: var(--slate-600);
  margin-bottom: 16px;
}

.assistant-benefit {
  background: linear-gradient(to bottom right, var(--green-50), var(--emerald-50));
  border-left: 4px solid var(--green-500);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.assistant-benefit .label {
  font-size: 12px;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 4px;
}

.assistant-benefit .text {
  font-size: 14px;
  color: var(--slate-700);
}

.assistant-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-600);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.assistant-link:hover {
  background: var(--blue-700);
}

.assistant-features {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--slate-200);
}

.assistant-features h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 16px;
}

.assistant-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assistant-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--slate-50);
  border-radius: 8px;
  padding: 16px;
}

.assistant-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--blue-500), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.assistant-feature-icon svg {
  width: 16px;
  height: 16px;
  color: white;
}

.assistant-feature span {
  font-size: 14px;
  color: var(--slate-700);
}

/* Assistants Footer */
.assistants-footer {
  margin-top: 48px;
  background: linear-gradient(to bottom right, var(--slate-900), var(--blue-900));
  border-radius: 16px;
  padding: 32px;
  color: white;
  text-align: center;
}

@media (min-width: 1024px) {
  .assistants-footer {
    padding: 48px;
  }
}

.assistants-footer h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .assistants-footer h3 {
    font-size: 30px;
  }
}

.assistants-footer p {
  font-size: 18px;
  color: var(--blue-100);
  max-width: 800px;
  margin: 0 auto 24px;
}

.assistants-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .assistants-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.assistants-footer-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.assistants-footer-item .emoji {
  font-size: 48px;
  margin-bottom: 8px;
}

.assistants-footer-item h4 {
  font-weight: 700;
  margin-bottom: 4px;
}

.assistants-footer-item p {
  font-size: 14px;
  color: var(--blue-100);
  margin-bottom: 0;
}

/* VK Max Section */
.vk-max {
  background: linear-gradient(to bottom right, var(--slate-900), var(--blue-900), var(--slate-900));
  color: white;
  position: relative;
  overflow: hidden;
}

.vk-max::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 18c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6z' stroke='%23fff' stroke-opacity='.03'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.vk-max .container {
  position: relative;
}

.vk-max-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

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

.vk-max-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 9999px;
  padding: 8px 16px;
  margin-bottom: 24px;
}

.vk-max-badge svg {
  width: 20px;
  height: 20px;
  color: var(--blue-300);
}

.vk-max-badge span {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-200);
}

.vk-max h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .vk-max h2 {
    font-size: 48px;
  }
}

.vk-max h2 span {
  display: block;
  color: var(--blue-300);
  margin-top: 8px;
}

.vk-max-description {
  font-size: 20px;
  color: var(--slate-300);
  margin-bottom: 32px;
  line-height: 1.6;
}

.vk-max-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.vk-max-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vk-max-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 20px;
}

.vk-max-feature h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
}

.vk-max-feature p {
  font-size: 14px;
  color: var(--blue-200);
}

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

.vk-max-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  transition: background 0.3s;
}

.vk-max-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.vk-max-card .emoji {
  font-size: 48px;
  margin-bottom: 12px;
}

.vk-max-card h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.vk-max-card p {
  font-size: 14px;
  color: var(--blue-200);
}

/* Implementation Section */
.implementation {
  background: white;
}

.implementation-steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .implementation-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .implementation-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.implementation-step {
  position: relative;
}

.implementation-step-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--slate-100);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.implementation-step-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  border-color: var(--blue-200);
}

.implementation-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.implementation-step-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.implementation-step-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom right, var(--slate-800), var(--slate-900));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.implementation-step h3 {
  font-size: 18px;
  color: var(--slate-900);
  margin-bottom: 8px;
  text-align: center;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.implementation-step p {
  font-size: 14px;
  color: var(--slate-600);
  margin-bottom: 16px;
  text-align: center;
  flex-grow: 1;
}

.implementation-step-duration {
  background: linear-gradient(to bottom right, var(--slate-50), var(--slate-100));
  border-radius: 8px;
  padding: 8px 16px;
  text-align: center;
  margin-top: auto;
}

.implementation-step-duration .label {
  font-size: 12px;
  color: var(--slate-500);
  font-weight: 500;
}

.implementation-step-duration .value {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-900);
}

/* Implementation CTA */
.implementation-cta {
  margin-top: 64px;
  background: linear-gradient(to bottom right, var(--slate-900), var(--slate-800));
  border-radius: 16px;
  padding: 32px;
  color: white;
  text-align: center;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
  .implementation-cta {
    padding: 48px;
  }
}

.implementation-cta h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .implementation-cta h3 {
    font-size: 30px;
  }
}

.implementation-cta p {
  font-size: 18px;
  color: var(--slate-300);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.implementation-cta p .highlight {
  background: linear-gradient(to right, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

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

@media (min-width: 640px) {
  .implementation-cta-buttons {
    flex-direction: row;
  }
}

/* Technology Banner */
.tech-banner {
  background: linear-gradient(to bottom right, var(--blue-50), var(--cyan-50));
}

.tech-banner-card {
  background: linear-gradient(to right, var(--blue-600), var(--cyan-600));
  border-radius: 24px;
  padding: 48px;
  color: white;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
  .tech-banner-card {
    padding: 64px;
  }
}

.tech-banner-card svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  opacity: 0.9;
}

.tech-banner-card h2 {
  font-size: 30px;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .tech-banner-card h2 {
    font-size: 48px;
  }
}

.tech-banner-card p {
  font-size: 20px;
  color: var(--blue-100);
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Team Banner */
.team-banner {
  background: linear-gradient(to bottom right, var(--blue-50), var(--cyan-50));
}

.team-banner-card {
  background: linear-gradient(to bottom right, var(--slate-900), var(--blue-900), var(--slate-900));
  border-radius: 24px;
  padding: 48px;
  color: white;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .team-banner-card {
    padding: 64px;
  }
}

.team-banner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 18c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6z' stroke='%23fff' stroke-opacity='.03'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.team-banner-card > * {
  position: relative;
}

.team-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 8px 20px;
  margin-bottom: 24px;
}

.team-banner-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--blue-300);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.team-banner-badge span {
  font-size: 14px;
  font-weight: 600;
}

.team-banner-card h2 {
  font-size: 30px;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .team-banner-card h2 {
    font-size: 48px;
  }
}

.team-banner-card p {
  font-size: 20px;
  color: var(--blue-100);
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Support Section */
.support {
  background: white;
}

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

@media (min-width: 768px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.support-card {
  background: linear-gradient(to bottom right, var(--slate-50), var(--slate-100));
  border-radius: 12px;
  padding: 32px;
  border: 2px solid var(--slate-200);
  transition: border-color 0.3s;
}

.support-card:hover {
  border-color: var(--blue-300);
}

.support-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.support-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(to bottom right, var(--blue-500), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-card-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.support-card-header h3 {
  font-size: 20px;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.support-card-header p {
  color: var(--slate-600);
}

.support-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.support-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--slate-700);
}

.support-card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
  margin-top: 8px;
  flex-shrink: 0;
}

/* Support CTA */
.support-cta {
  background: linear-gradient(to bottom right, var(--blue-900), var(--slate-900));
  border-radius: 16px;
  padding: 32px;
  color: white;
}

@media (min-width: 1024px) {
  .support-cta {
    padding: 48px;
  }
}

.support-cta-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .support-cta-content {
    flex-direction: row;
  }
}

.support-cta-icon {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.support-cta-icon svg {
  width: 64px;
  height: 64px;
  color: var(--blue-400);
}

.support-cta-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .support-cta-text {
    text-align: left;
  }
}

.support-cta-text h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .support-cta-text h3 {
    font-size: 30px;
  }
}

.support-cta-text p {
  font-size: 18px;
  color: var(--slate-300);
  margin-bottom: 24px;
}

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

@media (min-width: 1024px) {
  .support-cta-stats {
    justify-content: flex-start;
  }
}

.support-cta-stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-cta-stat .label {
  font-size: 14px;
  color: var(--blue-300);
}

.support-cta-stat .value {
  font-size: 20px;
  font-weight: 700;
}

/* Support Stats */
.support-stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .support-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.support-stat {
  background: linear-gradient(to bottom right, var(--slate-50), var(--blue-50));
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--slate-200);
}

.support-stat .title {
  font-size: 14px;
  color: var(--slate-600);
  font-weight: 600;
  margin-bottom: 8px;
}

.support-stat .value {
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(to right, var(--blue-600), var(--cyan-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.support-stat .subtitle {
  font-size: 12px;
  color: var(--slate-500);
}

/* Security Section */
.security {
  background: var(--slate-900);
  color: white;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .security-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.security-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--slate-700);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
}

.security-card:hover {
  background: var(--slate-800);
  border-color: var(--slate-600);
}

.security-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(to bottom right, var(--blue-500), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.security-card-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.security-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.security-card p {
  font-size: 14px;
  color: var(--slate-400);
}

/* Security CTA */
.security-cta {
  margin-top: 48px;
  background: linear-gradient(to bottom right, var(--slate-800), var(--slate-900));
  border: 1px solid var(--slate-700);
  border-radius: 16px;
  padding: 32px;
}

.security-cta-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .security-cta-content {
    flex-direction: row;
  }
}

.security-cta-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(to bottom right, var(--blue-500), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-cta-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.security-cta-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .security-cta-text {
    text-align: left;
  }
}

.security-cta-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.security-cta-text p {
  color: var(--slate-400);
}

/* FAQ Section */
.faq {
  background: white;
}

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

.faq-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  overflow: hidden;
  transition: background 0.2s;
}

.faq-item:hover {
  background: var(--slate-100);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 18px;
  color: var(--slate-900);
  background: transparent;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--slate-600);
  flex-shrink: 0;
  transition: transform 0.2s;
}

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

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--slate-600);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* FAQ CTA */
.faq-cta {
  margin-top: 48px;
  background: linear-gradient(to bottom right, var(--blue-50), var(--cyan-50));
  border: 1px solid var(--blue-200);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.faq-cta h3 {
  font-size: 24px;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.faq-cta p {
  color: var(--slate-600);
  margin-bottom: 24px;
}

/* Footer */
.footer {
  background: var(--slate-900);
  color: white;
  padding: 48px 0;
  border-top: 1px solid var(--slate-800);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(to right, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--slate-400);
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--slate-800);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: var(--slate-700);
}

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

.footer-column h4 {
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column ul a {
  font-size: 14px;
  color: var(--slate-400);
  transition: color 0.2s;
}

.footer-column ul a:hover {
  color: white;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--slate-800);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  color: var(--slate-400);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: white;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 672px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.3s;
}

.modal-overlay.open .modal {
  transform: scale(1);
}

.modal-header {
  background: linear-gradient(to right, var(--blue-600), var(--cyan-600));
  color: white;
  padding: 24px;
  border-radius: 16px 16px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 24px;
}

.modal-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: transparent;
  color: white;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-close svg {
  width: 24px;
  height: 24px;
}

.modal-body {
  padding: 24px;
}

/* Form */
.form-group {
  margin-bottom: 16px;
}

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

.form-label .required {
  color: var(--red-500);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--slate-300);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
  resize: none;
}

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  padding: 12px;
  color: var(--red-600);
  font-size: 14px;
  margin-bottom: 16px;
}

.form-submit {
  width: 100%;
  margin-top: 16px;
}

.form-note {
  font-size: 12px;
  color: var(--slate-500);
  text-align: center;
  margin-top: 16px;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 32px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-icon svg {
  width: 40px;
  height: 40px;
  color: var(--green-600);
}

.success-message h3 {
  font-size: 24px;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.success-message p {
  color: var(--slate-600);
}

/* Calculator */
.calculator-slider {
  margin-bottom: 24px;
}

.calculator-slider label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 8px;
}

.calculator-slider input[type="range"] {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  background: var(--slate-200);
  border-radius: 8px;
  outline: none;
}

.calculator-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-600);
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.calculator-slider .value {
  text-align: right;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue-600);
  margin-top: 8px;
}

.calculator-results {
  background: linear-gradient(to bottom right, var(--slate-50), var(--slate-100));
  border-radius: 12px;
  padding: 24px;
  border: 2px solid var(--slate-200);
}

.calculator-results h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calculator-results h3 svg {
  width: 20px;
  height: 20px;
  color: var(--green-600);
}

.calculator-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.calculator-result-item {
  background: white;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.calculator-result-item .label {
  font-size: 14px;
  color: var(--slate-600);
  margin-bottom: 4px;
}

.calculator-result-item .value {
  font-size: 24px;
  font-weight: 700;
  color: var(--slate-900);
}

.calculator-saving {
  background: linear-gradient(to right, var(--green-50), var(--emerald-50));
  border: 2px solid var(--green-200);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.calculator-saving .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 4px;
}

.calculator-saving .value {
  font-size: 30px;
  font-weight: 700;
  color: var(--green-700);
}

.calculator-annual {
  background: linear-gradient(to right, var(--blue-50), var(--cyan-50));
  border: 2px solid var(--blue-200);
  border-radius: 8px;
  padding: 16px;
}

.calculator-annual .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-700);
  margin-bottom: 4px;
}

.calculator-annual .value {
  font-size: 30px;
  font-weight: 700;
  color: var(--blue-700);
}

.calculator-assumptions {
  background: var(--slate-50);
  border-radius: 8px;
  padding: 16px;
  margin-top: 24px;
}

.calculator-assumptions p {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.calculator-assumptions ul {
  font-size: 14px;
  color: var(--slate-600);
  margin-left: 20px;
}

.calculator-assumptions li {
  margin-bottom: 4px;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-600);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--blue-700);
  transform: scale(1.1);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
}

/* Page Header */
.page-header {
  background: linear-gradient(to bottom right, var(--slate-900), var(--blue-900), var(--slate-900));
  color: white;
  padding: 116px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 18c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6z' stroke='%23fff' stroke-opacity='.03'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.page-header .container {
  position: relative;
}

.page-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  transition: color 0.2s;
}

.page-header .back-link:hover {
  color: white;
}

.page-header .back-link svg {
  width: 20px;
  height: 20px;
}

.page-header h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .page-header h1 {
    font-size: 48px;
  }
}

.page-header p {
  font-size: 20px;
  color: var(--slate-300);
  max-width: 800px;
}

/* Utilities */
.hidden {
  display: none !important;
}

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

.mt-4 {
  margin-top: 16px;
}

.mt-8 {
  margin-top: 32px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 32px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ========================================
   Team Page Styles
   ======================================== */

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.back-link:hover {
  color: white;
}

.back-link svg {
  width: 20px;
  height: 20px;
}

/* Team Section */
.team-section {
  padding: 116px 0 80px;
  background: linear-gradient(to bottom right, white, var(--slate-50), var(--blue-50));
}

.team-description {
  font-size: 18px;
  color: var(--slate-600);
  max-width: 900px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

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

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Team Card */
.team-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--slate-100);
  transition: all 0.3s;
}

.team-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--blue-200);
}

.team-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-card-image img {
  transform: scale(1.1);
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.team-card:hover .team-card-overlay {
  opacity: 1;
}

.team-card-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s;
}

.team-card:hover .team-card-actions {
  opacity: 1;
  transform: translateY(0);
}

.btn-team-contact {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-900);
  cursor: pointer;
  transition: background 0.3s;
}

.btn-team-contact:hover {
  background: white;
}


.team-card-content {
  padding: 24px;
}

.team-card-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}

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

.team-card-description {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.7;
}

/* Team CTA */
.team-cta {
  background: linear-gradient(to bottom right, var(--slate-900), var(--blue-900), var(--slate-900));
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.team-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 18c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6z' stroke='%23fff' stroke-opacity='.03'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
}

.team-cta-content {
  position: relative;
}

.team-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .team-cta {
    padding: 64px;
  }
  
  .team-cta h3 {
    font-size: 32px;
  }
}

.team-cta p {
  font-size: 18px;
  color: var(--blue-100);
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (min-width: 640px) {
  .team-cta-buttons {
    flex-direction: row;
  }
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

.about-section {
  padding: 116px 0 80px;
  background: linear-gradient(to bottom right, white, var(--slate-50), var(--blue-50));
}

.about-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--slate-200);
  margin-bottom: 32px;
  overflow: hidden;
}

.about-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
  background: linear-gradient(to right, var(--slate-50), var(--blue-50));
  border-bottom: 1px solid var(--slate-200);
}

.about-card-header svg {
  color: var(--blue-500);
  flex-shrink: 0;
}

.about-card-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-900);
}

.about-card-body {
  padding: 32px;
}

.about-company-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--slate-100);
}

.about-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .about-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-info-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-info-value {
  font-size: 16px;
  color: var(--slate-800);
  font-weight: 500;
}

/* ========================================
   Technology Page Styles
   ======================================== */

/* Tech Header */
.tech-header {
  background: linear-gradient(to bottom right, var(--slate-900), var(--blue-900), var(--slate-900));
  color: white;
  padding: 116px 0 64px;
  position: relative;
  overflow: hidden;
}

.tech-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 18c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6z' stroke='%23fff' stroke-opacity='.03'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.tech-header-content {
  position: relative;
  text-align: center;
}

.tech-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .tech-title {
    font-size: 48px;
  }
}

.tech-subtitle {
  font-size: 18px;
  color: var(--slate-300);
  max-width: 700px;
  margin: 0 auto;
}

/* Tech Leadership Section */
.tech-leadership {
  background: linear-gradient(to bottom, white, var(--slate-50));
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.badge-blue {
  background: var(--blue-100);
  color: var(--blue-700);
  border: 1px solid var(--blue-200);
}

.badge-blue svg {
  width: 20px;
  height: 20px;
  color: var(--blue-600);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Feature Card */
.feature-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--slate-100);
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  border-color: var(--blue-200);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-gradient-blue {
  background: linear-gradient(to bottom right, var(--blue-500), var(--cyan-500));
}

.icon-gradient-green {
  background: linear-gradient(to bottom right, var(--green-500), var(--emerald-500));
}

.icon-gradient-orange {
  background: linear-gradient(to bottom right, var(--orange-500), var(--red-500));
}

.icon-gradient-purple {
  background: linear-gradient(to bottom right, var(--purple-500), var(--purple-600));
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.feature-text {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Fitness Banner */
.fitness-banner {
  background: linear-gradient(to bottom right, var(--slate-900), var(--blue-900));
  border-radius: 24px;
  padding: 32px;
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
  .fitness-banner {
    padding: 48px;
  }
}

.fitness-banner-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .fitness-banner-content {
    grid-template-columns: 1fr 1fr;
  }
}

.fitness-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .fitness-text h3 {
    font-size: 28px;
  }
}

.fitness-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fitness-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
}

.check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--green-500);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.fitness-stats {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-main {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-value {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(to right, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-label {
  font-size: 14px;
  color: var(--blue-200);
  margin-top: 8px;
}

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

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
}

.stat-label {
  font-size: 12px;
  color: var(--blue-200);
  margin-top: 4px;
}

/* Solutions Section */
.solutions-section {
  background: var(--slate-50);
}

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

@media (min-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--slate-100);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  border-color: var(--blue-200);
}

.solution-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.solution-icon svg {
  color: white;
}

.solution-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.solution-description {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate-700);
}

.solution-features li svg {
  width: 16px;
  height: 16px;
  color: var(--blue-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.solution-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(to right, var(--green-50), var(--emerald-50));
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--green-200);
  margin-top: auto;
}

.solution-stat svg {
  width: 24px;
  height: 24px;
  color: var(--green-600);
  flex-shrink: 0;
}

.stat-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-700);
}

.stat-text {
  font-size: 14px;
  color: var(--slate-600);
  margin-left: 8px;
}

/* Analytics Banner */
.analytics-banner {
  background: linear-gradient(to right, var(--blue-600), var(--cyan-600));
  border-radius: 16px;
  padding: 32px;
  color: white;
  text-align: center;
  box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.3);
}

@media (min-width: 1024px) {
  .analytics-banner {
    padding: 48px;
  }
}

.analytics-banner svg {
  margin: 0 auto 16px;
  opacity: 0.9;
}

.analytics-banner h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .analytics-banner h3 {
    font-size: 28px;
  }
}

.analytics-banner p {
  font-size: 16px;
  color: var(--blue-100);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Industry Cases Section */
.industry-cases {
  background: linear-gradient(to bottom right, var(--slate-900), var(--blue-900), var(--slate-900));
  position: relative;
  overflow: hidden;
}

.industry-cases::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 18c3.314 0 6 2.686 6 6s-2.686 6-6 6-6-2.686-6-6 2.686-6 6-6z' stroke='%23fff' stroke-opacity='.03'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.industry-cases .container {
  position: relative;
}

.text-white {
  color: white !important;
}

.text-slate-300 {
  color: var(--slate-300) !important;
}

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

@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.industry-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.industry-icon svg {
  color: white;
}

.industry-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.industry-description {
  font-size: 14px;
  color: var(--slate-300);
  line-height: 1.6;
  margin-bottom: 20px;
}

.industry-results {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.results-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-300);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.industry-results ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.industry-results li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--slate-200);
}

.industry-results li .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-400);
  flex-shrink: 0;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(to right, var(--blue-600), var(--cyan-600));
  border-radius: 16px;
  padding: 32px;
  color: white;
  text-align: center;
  box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.3);
}

@media (min-width: 1024px) {
  .cta-banner {
    padding: 48px;
  }
}

.cta-banner h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .cta-banner h3 {
    font-size: 28px;
  }
}

.cta-banner p {
  font-size: 16px;
  color: var(--blue-100);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Additional Styles */
.footer-logo {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(to right, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--slate-400);
  margin-bottom: 16px;
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: var(--slate-400);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-contact h4 {
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--slate-400);
}

.footer-contact a {
  color: var(--slate-400);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: white;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: var(--slate-400);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: white;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--slate-800);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: var(--slate-400);
}

.social-link:hover {
  background: var(--slate-700);
  color: white;
}

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

/* Section Description */
.section-description {
  font-size: 18px;
  color: var(--slate-600);
  max-width: 800px;
  margin: 0 auto;
}

/* ========================================
   Top Header Styles
   ======================================== */

.top-header {
  background: linear-gradient(to right, var(--slate-900), var(--blue-900));
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .top-header-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.top-header-brand {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  color: var(--blue-400);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(to right, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.company-org {
  font-size: 12px;
  color: var(--slate-400);
  font-weight: 500;
}

.top-header-slogan {
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-200);
  font-style: italic;
  max-width: 280px;
}

@media (min-width: 1024px) {
  .top-header-slogan {
    font-size: 15px;
    max-width: none;
  }
}

.top-header-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

@media (min-width: 640px) {
  .top-header-contacts {
    flex-direction: row;
    gap: 20px;
  }
}

.header-phone,
.header-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  transition: color 0.2s;
}

.header-phone:hover,
.header-email:hover {
  color: var(--blue-300);
}

.header-phone svg,
.header-email svg {
  color: var(--blue-400);
}

/* Footer Organization Name */
.footer-org {
  font-size: 13px;
  color: var(--slate-400);
  margin-bottom: 8px;
  font-weight: 500;
}

/* ========================================
   NAVBAR - Fixed Navigation
   ======================================== */

/* Top Bar with Slogan */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(to right, var(--blue-600), var(--cyan-600));
  padding: 8px 0;
  text-align: center;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-slogan {
  font-size: 13px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.3px;
}

.top-bar-slogan strong {
  font-weight: 600;
}

.top-bar-contacts {
  display: none;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .top-bar-contacts {
    display: flex;
  }
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.top-bar-contact:hover {
  color: white;
}

.top-bar-contact svg {
  width: 14px;
  height: 14px;
}

.top-bar-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.top-bar-close:hover {
  color: white;
}

.top-bar-close svg {
  width: 16px;
  height: 16px;
}

.top-bar.hidden {
  display: none;
}

.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.top-bar-hidden {
  top: 0;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-brand-text {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(to right, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav {
  display: none;
  align-items: center;
  gap: 8px;
}

@media (min-width: 1024px) {
  .navbar-nav {
    display: flex;
  }
}

.navbar-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-300);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}

.navbar-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.navbar-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .navbar-actions {
    display: flex;
  }
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.navbar-phone:hover {
  color: var(--blue-300);
}

.navbar-phone svg {
  color: var(--blue-400);
}

.navbar-phone span {
  display: none;
}

@media (min-width: 1200px) {
  .navbar-phone span {
    display: inline;
  }
}

.navbar-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.navbar-email:hover {
  color: var(--blue-300);
}

.navbar-email svg {
  color: var(--blue-400);
}

.navbar-email span {
  display: none;
}

@media (min-width: 1200px) {
  .navbar-email span {
    display: inline;
  }
}

.btn-nav-cta {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(to right, var(--blue-500), var(--cyan-500));
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-nav-cta:hover {
  background: linear-gradient(to right, var(--blue-600), var(--cyan-600));
  transform: scale(1.02);
}

/* Mobile Menu Toggle */
.navbar-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 1024px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-toggle-icon {
  position: relative;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar-toggle-icon::before,
.navbar-toggle-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar-toggle-icon::before {
  top: -7px;
}

.navbar-toggle-icon::after {
  top: 7px;
}

.navbar-toggle.open .navbar-toggle-icon {
  background: transparent;
}

.navbar-toggle.open .navbar-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggle.open .navbar-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 101px;
  left: 0;
  right: 0;
  height: fit-content;
  background: var(--slate-900);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 999;
}

.mobile-menu.open {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}

.navbar.top-bar-hidden .mobile-menu {
  top: 65px;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-link {
  padding: 18px 24px;
  font-size: 20px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: background 0.2s;
}

.mobile-menu-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu-phone,
.mobile-menu-email {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 500;
  color: var(--slate-300);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.mobile-menu-phone svg,
.mobile-menu-email svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--blue-400);
}

.mobile-menu-cta {
  margin-top: auto;
  padding: 18px 28px;
  font-size: 18px;
}

/* Adjust body padding for fixed navbar */
body {
  padding-top: 65px;
}

/* ========================================
   CLIENTS SECTION
   ======================================== */

.clients-section {
  padding: 48px 0;
  background: linear-gradient(to bottom, white, var(--slate-50));
  border-bottom: 1px solid var(--slate-100);
}

.clients-header {
  text-align: center;
  margin-bottom: 32px;
}

.clients-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.clients-subtitle {
  font-size: 16px;
  color: var(--slate-600);
}

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

@media (min-width: 768px) {
  .clients-logos {
    gap: 48px;
  }
}

.clients-logo {
  opacity: 0.5;
  transition: opacity 0.3s;
  color: var(--slate-500);
}

.clients-logo:hover {
  opacity: 1;
  color: var(--slate-700);
}

.clients-logo svg {
  width: 100px;
  height: 36px;
}

@media (min-width: 768px) {
  .clients-logo svg {
    width: 120px;
    height: 40px;
  }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
  background: linear-gradient(to bottom right, var(--slate-50), white, var(--blue-50));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--slate-100);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--blue-200);
  transform: translateY(-4px);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-rating svg {
  width: 18px;
  height: 18px;
  color: var(--yellow-500);
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate-700);
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-quote::before {
  content: '"';
  font-size: 48px;
  color: var(--blue-200);
  line-height: 0;
  vertical-align: bottom;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--blue-500), var(--cyan-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--slate-500);
}

.testimonial-result {
  background: linear-gradient(to right, var(--green-50), var(--emerald-50));
  border: 1px solid var(--green-200);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-result-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-600);
}

.testimonial-result-label {
  font-size: 13px;
  color: var(--green-700);
}

/* ========================================
   ANIMATION ON SCROLL
   ======================================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }

/* ========================================
   COUNTER ANIMATION
   ======================================== */

.counter {
  display: inline-block;
}

/* ========================================
   MODAL IMPROVEMENTS
   ======================================== */

.modal-description {
  text-align: center;
  color: var(--slate-600);
  margin-bottom: 24px;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form .form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.contact-form .form-label .required {
  color: var(--red-500);
}

.contact-form .form-input,
.contact-form .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--slate-200);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.2s;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.contact-form .form-textarea {
  resize: none;
}

.contact-form .form-submit {
  width: 100%;
  margin-top: 8px;
}

.contact-form .form-note {
  font-size: 12px;
  color: var(--slate-500);
  text-align: center;
  margin-top: 12px;
}

/* ========================================
   HOVER IMPROVEMENTS
   ======================================== */

.advantage-card,
.assistant-card,
.support-card,
.security-card,
.implementation-step-card {
  transition: all 0.3s ease;
}

.advantage-card:hover,
.assistant-card:hover,
.support-card:hover {
  transform: translateY(-4px);
}

/* ========================================
   BUTTON IMPROVEMENTS
   ======================================== */

.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* ===== VK MAX PAGE STYLES ===== */

/* VK MAX Hero Section */
.vkmax-hero {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
  padding: 120px 0 60px;
  text-align: center;
}

.vkmax-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.vkmax-hero-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
}

.vkmax-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vkmax-hero-subtitle {
  font-size: 1.25rem;
  color: #a5b4fc;
  margin-bottom: 16px;
  font-weight: 500;
}

.vkmax-hero-tagline {
  font-size: 1.125rem;
  color: var(--slate-400);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* VK MAX Advantages Section */
.vkmax-advantages {
  background: var(--slate-50);
}

.vkmax-advantages .advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.vkmax-advantages .advantage-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--slate-200);
  transition: all 0.3s ease;
}

.vkmax-advantages .advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vkmax-advantages .advantage-emoji {
  font-size: 3rem;
  margin-bottom: 16px;
}

.vkmax-advantages .advantage-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.vkmax-advantages .advantage-main {
  color: var(--slate-700);
  font-weight: 500;
  margin-bottom: 8px;
}

.vkmax-advantages .advantage-details {
  color: var(--slate-500);
  font-size: 0.875rem;
}

/* VK MAX Features Section */
.vkmax-features-section {
  background: white;
}

.features-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.feature-block {
  background: var(--slate-50);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--slate-200);
}

.feature-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.block-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.icon-gradient-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.icon-gradient-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.icon-gradient-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.feature-block-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.feature-block-header p {
  color: var(--slate-500);
  font-size: 0.875rem;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item svg {
  flex-shrink: 0;
  color: #10b981;
  margin-top: 2px;
}

.feature-item strong {
  display: block;
  color: var(--slate-900);
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-item span {
  color: var(--slate-500);
  font-size: 0.875rem;
}

/* Business Features Block */
.business-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.business-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--slate-200);
}

.business-feature svg {
  color: #3b82f6;
  flex-shrink: 0;
}

.business-feature span {
  font-size: 0.875rem;
  color: var(--slate-700);
}

.security-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-radius: 12px;
  border: 1px solid #a7f3d0;
}

.security-note svg {
  flex-shrink: 0;
  color: #10b981;
}

.security-note strong {
  display: block;
  color: #065f46;
  font-weight: 600;
  margin-bottom: 4px;
}

.security-note span {
  color: #047857;
  font-size: 0.875rem;
}

/* Unified App Section */
.unified-app {
  padding: 0;
}

.unified-app-content {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
  padding: 80px 0;
}

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

.unified-header svg {
  color: #a5b4fc;
  margin-bottom: 24px;
}

.unified-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.unified-header p {
  color: var(--slate-400);
  max-width: 500px;
  margin: 0 auto;
}

.client-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.client-type {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.client-type:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.client-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.client-type h4 {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.client-type p {
  color: var(--slate-400);
  font-size: 0.875rem;
}

/* Use Cases Section */
.use-cases {
  background: var(--slate-50);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.use-case-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--slate-200);
  transition: all 0.3s ease;
}

.use-case-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.use-case-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.use-case-card p {
  color: var(--slate-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Implementation Stages Section */
.implementation-stages {
  background: white;
}

.stages-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.stage-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--slate-200);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stage-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 20px 50px -15px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.stage-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--slate-100);
}

.stage-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.15);
}

.stage-number {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.stage-header h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.025em;
}

.stage-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-600);
  margin-bottom: 28px;
  padding-left: 4px;
}

.stage-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: stretch;
}

.stage-tasks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.stage-tasks::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--slate-200) 0%, var(--slate-100) 100%);
  border-radius: 1px;
  z-index: 0;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--slate-50);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}

.task-item:hover {
  background: white;
  border-color: var(--slate-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.task-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.35);
  position: relative;
  z-index: 2;
}

.task-item span:not(.task-number) {
  color: var(--slate-700);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Stage color variations */
.stage-blue .task-number {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.35);
}

.stage-blue .stage-tasks::before {
  background: linear-gradient(180deg, #93c5fd 0%, #dbeafe 100%);
}

.stage-green .task-number {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.35);
}

.stage-green .stage-tasks::before {
  background: linear-gradient(180deg, #6ee7b7 0%, #d1fae5 100%);
}

.stage-purple .task-number {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 2px 6px rgba(139, 92, 246, 0.35);
}

.stage-purple .stage-tasks::before {
  background: linear-gradient(180deg, #c4b5fd 0%, #ede9fe 100%);
}

.stage-result {
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px -4px rgba(16, 185, 129, 0.15);
}

.stage-result::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.stage-result::after {
  content: '\2713';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.result-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #10b981, #059669);
  border-radius: 1px;
}

.stage-result p {
  color: #065f46;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Transfer Banner */
.transfer-banner {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
  border-radius: 24px;
  padding: 48px;
  margin-top: 48px;
  text-align: center;
}

.transfer-banner h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 32px;
}

.transfer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.transfer-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
}

.transfer-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.transfer-card h4 {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.transfer-card p {
  color: var(--slate-400);
  font-size: 0.9rem;
}

.transfer-note {
  color: var(--slate-400);
  font-size: 0.875rem;
  max-width: 700px;
  margin: 0 auto;
}

/* VK MAX CTA Section */
.vkmax-cta {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  padding: 80px 0;
}

.vkmax-cta .cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.vkmax-cta h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.vkmax-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  font-size: 1.125rem;
}

.vkmax-cta .btn-white {
  background: white;
  color: #6366f1;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.vkmax-cta .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive for VK MAX Page */
@media (max-width: 768px) {
  .vkmax-hero {
    padding: 100px 0 40px;
  }

  .vkmax-hero h1 {
    font-size: 2.5rem;
  }

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

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

  .stage-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stage-tasks::before {
    display: none;
  }

  .stage-result {
    min-width: auto;
  }

  .stage-result::after {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
    top: 16px;
    right: 16px;
  }

  .stage-card {
    padding: 28px;
  }

  .stage-icon {
    width: 56px;
    height: 56px;
  }

  .stage-header h3 {
    font-size: 1.35rem;
  }

  .transfer-banner {
    padding: 32px 24px;
  }

  .transfer-banner h3 {
    font-size: 1.5rem;
  }
}

/* Badge styles */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-blue {
  background: var(--blue-50);
  color: var(--blue-700);
  border: 1px solid var(--blue-200);
}

.badge svg {
  width: 16px;
  height: 16px;
}

/* Navbar active link */
.navbar-link.active {
  color: var(--cyan-500);
}

.mobile-menu-link.active {
  color: var(--cyan-500);
}
