:root {
  --bg: #0f1629;
  --bg-soft: rgba(255, 255, 255, 0.1);
  --card: rgba(255, 255, 255, 0.14);
  --border: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: #c5cfe0;
  --accent: #00d9ff;
  --accent-2: #a855f7;
  --dark-card: #172043;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --radius: 24px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 217, 255, 0.15), transparent 35%),
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.15), transparent 30%),
    linear-gradient(180deg, #0f1629 0%, #132d4f 50%, #0f1f35 100%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-title {
  max-width: 720px;
  margin-bottom: 48px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}

p {
  color: var(--muted);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(15, 22, 41, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(168, 85, 247, 0.1));
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
}

.logo:hover {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(168, 85, 247, 0.15));
  border-color: rgba(0, 217, 255, 0.35);
}

.logo-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--accent);
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.menu-toggle-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 15px 24px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button-secondary:hover,
.plan-button:hover,
.submit-button:hover {
  transform: translateY(-2px);
}

.button {
  background: linear-gradient(135deg, #00d9ff, #a855f7);
  color: #0f1629;
  box-shadow: var(--shadow);
}

.button-secondary {
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--text);
}

.hero {
  padding: 64px 0 92px;
  border-bottom: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 217, 255, 0.3);
  background: rgba(0, 217, 255, 0.1);
  color: #00d9ff;
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.hero p {
  max-width: 700px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-card,
.card,
.feature-box,
.plan,
.faq-item,
.contact-wrap {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 0;
}

.hero-card-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 280px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  background: transparent;
  border: none;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--accent);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, rgba(15, 22, 41, 0.95), rgba(23, 32, 67, 0.95));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--accent);
}

.modal-content h3 {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.modal-content h3 span {
  color: var(--accent);
}

.plan-inquiry-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(15, 22, 41, 0.8);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 12px;
  outline: none;
  font: inherit;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 217, 255, 0.7);
}

.form-group option {
  background: #0f1629;
  color: var(--text);
}

.plan-inquiry-form .submit-button {
  margin-top: 10px;
  width: 100%;
}

.inquiry-message {
  display: none;
  color: var(--accent);
  font-weight: 700;
  text-align: center;
  padding: 20px;
  background: rgba(0, 217, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.inquiry-message.active {
  display: block;
}

@media (max-width: 768px) {
  .modal-content {
    padding: 30px 20px;
    max-height: 85vh;
  }

  .modal-close {
    top: 15px;
    right: 15px;
    font-size: 24px;
  }

  .modal-content h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 217, 255, 0.4);
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 217, 255, 0.6);
}

.hero-card-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 280px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  animation: slideOut 0.6s ease forwards;
  opacity: 0;
}

.hero-card-inner.active {
  position: relative;
  animation: slideIn 0.6s ease forwards;
  opacity: 1;
}

.offer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.offer-top small {
  color: #8d9ab2;
  display: block;
  margin-bottom: 6px;
}

.price-badge {
  background: rgba(0, 217, 255, 0.15);
  color: #00d9ff;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.offer-list {
  display: grid;
  gap: 14px;
  margin-top: auto;
}

.offer-item,
.plan li,
.step-number,
.reason,
.faq-question {
  border-radius: 18px;
}

.offer-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  color: var(--muted);
}

.cards-3,
.plans-grid,
.steps-grid,
.reasons-grid {
  display: grid;
  gap: 24px;
}

.cards-3,
.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.step-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  min-width: 160px;
  max-width: 170px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.step-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  margin: 0 auto 12px auto;
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

.flow-arrow {
  font-size: 2rem;
  color: var(--primary);
  font-weight: bold;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.flow-step:hover .flow-arrow {
  opacity: 1;
}

.process-timeline {
  margin: 30px 0;
  position: relative;
  white-space: nowrap;
}

.timeline-container {
  position: relative;
  min-width: 100%;
  margin: 0 auto;
  padding: 0 20px 80px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 30px;
}

.timeline-container::-webkit-scrollbar {
  height: 8px;
}

.timeline-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}

.timeline-line {
  display: none;
}

.runner-track {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  width: calc(100% - 40px);
  height: 6px;
  background: linear-gradient(90deg, #00d4ff, #0099cc); /* Default to first step color */
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  z-index: 0;
}

.rocket-runner {
  position: absolute;
  bottom: 16px;
  left: 0;
  transform: translateX(-50%) translateY(50%);
  transition: left 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
  cursor: pointer;
}

.rocket {
  transform-origin: center;
  transform: rotateY(180deg);
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease, font-size 0.3s ease;
  animation: rocket-float 2s ease-in-out infinite;
}

.rocket-trail {
  display: none;
}

.rocket {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transform: rotateY(180deg);
  transition: transform 0.3s ease, font-size 0.3s ease;
  animation: rocket-float 2s ease-in-out infinite;
}

.rocket-runner:hover .rocket {
  transform: rotateY(180deg) scale(1.2) rotate(-5deg);
  animation: rocket-bounce 0.6s ease-in-out;
}

@keyframes rocket-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes rocket-bounce {
  0%, 100% {
    transform: scale(1.2) rotate(-5deg) translateY(0px);
  }
  50% {
    transform: scale(1.3) rotate(5deg) translateY(-8px);
  }
}

.rocket-trail {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 40px;
  height: 6px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), rgba(0, 212, 255, 0.6));
  border-radius: 3px;
  transform: translateY(-50%);
  animation: trail-pulse 1s ease-in-out infinite;
}

.timeline-step.highlighted .step-circle {
  transform: scale(1.2);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4), 0 0 40px currentColor;
  animation: highlight-pulse 1s ease-in-out infinite;
}

.timeline-step.highlighted .step-content {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: currentColor;
}

@keyframes highlight-pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4), 0 0 40px currentColor;
  }
  50% {
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.6), 0 0 60px currentColor;
  }
}

.timeline-line {
  display: none;
}

@keyframes flow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scaleY(1.2);
  }
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 0 0 260px;
  width: 260px;
  min-width: 260px;
  margin-bottom: 0;
}

.step-circle {
  width: 92px;
  height: 92px;
}

.step-number {
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
}

.timeline-step .step-content {
  margin-top: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 230px;
  min-width: 230px;
  max-width: 230px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.timeline-step .step-content h4,
.timeline-step .step-content p {
  width: 100%;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
  margin: 0;
}

.timeline-step .step-content p {
  letter-spacing: 0.01em;
}

.timeline-step.step-1 .step-circle {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.timeline-step.step-1 .step-circle:hover {
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.7);
  transform: scale(1.15);
}

.timeline-step.step-2 .step-circle {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.timeline-step.step-2 .step-circle:hover {
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.7);
  transform: scale(1.15);
}

.timeline-step.step-3 .step-circle {
  background: linear-gradient(135deg, #a855f7, #c084fc);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

.timeline-step.step-3 .step-circle:hover {
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.7);
  transform: scale(1.15);
}

.timeline-step.step-4 .step-circle {
  background: linear-gradient(135deg, #fbbf24, #10b981);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6), 0 0 30px rgba(16, 185, 129, 0.4);
  position: relative;
}

.timeline-step.step-4 .step-circle::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(45deg, #fbbf24, #10b981, #fbbf24);
  z-index: -1;
  animation: celebrate 2s ease-in-out infinite;
}

.timeline-step.step-4 .step-circle::after {
  content: '✨';
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 1rem;
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes celebrate {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes sparkle {
  0%, 100% {
    transform: rotate(0deg) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: rotate(180deg) scale(1.2);
    opacity: 1;
  }
}

.timeline-step.step-4 .step-circle:hover {
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.8), 0 0 40px rgba(16, 185, 129, 0.6);
  transform: scale(1.2);
}

@keyframes celebrate {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-circle:hover {
  transform: scale(1.1);
}

.step-circle .step-number {
  color: white;
  font-weight: bold;
  font-size: 1rem;
  margin: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.timeline-step.step-1 .step-content {
  border-left: 4px solid #00d4ff;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 153, 204, 0.05));
}

.timeline-step.step-1 .step-content:hover {
  border-left-color: #0099cc;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

.timeline-step.step-2 .step-content {
  border-left: 4px solid #ff6b35;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 140, 66, 0.05));
}

.timeline-step.step-2 .step-content:hover {
  border-left-color: #ff8c42;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.timeline-step.step-3 .step-content {
  border-left: 4px solid #a855f7;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(192, 132, 252, 0.05));
}

.timeline-step.step-3 .step-content:hover {
  border-left-color: #c084fc;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.15);
}

.timeline-step.step-4 .step-content {
  border-left: 4px solid #fbbf24;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(16, 185, 129, 0.05));
  position: relative;
}

.timeline-step.step-4 .step-content::before {
  content: '🎉';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-step.step-4 .step-content:hover::before {
  opacity: 1;
}

.timeline-step.step-4 .step-content:hover {
  border-left-color: #10b981;
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2), 0 0 20px rgba(16, 185, 129, 0.1);
}

.timeline-step.step-1 .step-content h4::before {
  content: '🚀';
  margin-right: 4px;
  font-size: 0.9rem;
}

.timeline-step.step-2 .step-content h4::before {
  content: '⚡';
  margin-right: 4px;
  font-size: 0.9rem;
}

.timeline-step.step-3 .step-content h4::before {
  content: '🎨';
  margin-right: 4px;
  font-size: 0.9rem;
}

.timeline-step.step-4 .step-content h4::before {
  content: '🎯';
  margin-right: 4px;
  font-size: 0.9rem;
}

.step-content h4 {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.reasons-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.reasons-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.plan,
.faq-item {
  padding: 30px;
}

.card:hover,
.plan:hover {
  transform: translateY(-4px);
}

.card,
.plan {
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.muted-section {
  background: linear-gradient(180deg, rgba(0, 217, 255, 0.05), rgba(168, 85, 247, 0.05));
  border-top: none;
  border-bottom: none;
}

.reason {
  border: 1px solid var(--border);
  background: rgba(23, 32, 67, 0.9);
  padding: 18px;
  color: #d7e0ec;
}

.step-number {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(168, 85, 247, 0.2));
  color: #00d9ff;
  font-weight: 700;
  margin-bottom: 18px;
}

.plan.highlighted {
  border-color: rgba(0, 217, 255, 0.4);
  background: rgba(0, 217, 255, 0.08);
}

.plan-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.tag {
  background: linear-gradient(135deg, #00d9ff, #a855f7);
  color: #0a0e27;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
}

.plan-price {
  color: var(--muted);
  margin: 10px 0 0;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}

.plan li {
  background: rgba(15, 22, 41, 0.65);
  padding: 16px;
  color: #dde6f2;
}

.plan-button,
.submit-button {
  border: none;
  cursor: pointer;
  border-radius: 18px;
  padding: 15px 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #00d9ff, #a855f7);
  color: #0a0e27;
  margin-top: 24px;
  transition: transform 0.2s ease;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-question {
  width: 100%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.faq-question span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  font-size: 1rem;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 16px 24px 22px;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--accent);
}

.contact-wrap {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(168, 85, 247, 0.1));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(15, 22, 41, 0.8);
  color: var(--text);
  padding: 16px 18px;
  border-radius: 18px;
  outline: none;
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #8290a8;
}

input:focus,
textarea:focus {
  border-color: rgba(0, 217, 255, 0.7);
}

.form-message {
  margin-top: 14px;
  color: #00d9ff;
  font-weight: 700;
  display: none;
}

.footer {
  padding: 28px 0 42px;
  color: #8d9ab2;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-grid,
  .reasons-layout,
  .faq-layout,
  .cards-3,
  .plans-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .reasons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-flow {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .flow-step {
    flex-direction: column;
    gap: 15px;
  }

  .flow-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  .timeline-runner {
    display: none;
  }

  .process-timeline {
    margin: 24px 0 0;
  }

  .timeline-container {
    width: 100%;
    padding: 8px 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }

  .timeline-line {
    display: none;
  }

  .runner-track,
  .rocket-runner {
    display: none;
  }

  .timeline-step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 32px;
    align-items: center;
    width: 100%;
    min-width: 0;
    flex: none;
    margin-bottom: 0;
    padding-left: 0;
    text-align: left !important;
  }

  .timeline-step::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    bottom: -28px;
    width: 2px;
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.45), rgba(168, 85, 247, 0.2));
    z-index: 0;
  }

  .timeline-step:last-of-type::before {
    display: none;
  }

  .timeline-step .step-content {
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 0;
    margin: 0 !important;
    align-items: flex-start;
    text-align: left;
  }

  .step-circle {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 52px;
    height: 52px;
  }

  .timeline-step.step-4 .step-circle {
    position: relative;
    left: auto;
    top: auto;
  }

  .timeline-step .step-content h4,
  .timeline-step .step-content p,
  .step-content h4 {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 68px 0;
  }

  .hero-card-carousel {
    min-height: 0;
  }

  .hero-card-inner {
    min-height: 0;
    padding: 22px;
  }

  .offer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .price-badge {
    white-space: normal;
    align-self: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(15, 22, 41, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .contact-form,
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .process-flow {
    gap: 20px;
  }

  .step-content {
    padding: 20px;
  }

  .timeline-container {
    padding: 0;
    gap: 18px;
  }

  .timeline-step {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 28px;
  }

  .timeline-step::before {
    left: 22px;
    bottom: -24px;
  }

  .step-circle {
    width: 44px;
    height: 44px;
  }

  .timeline-step.step-1 {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .timeline-step.step-1 .step-circle {
    width: 38px;
    height: 38px;
  }

  .timeline-step.step-2 {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .timeline-step.step-2 .step-circle {
    width: 42px;
    height: 42px;
  }

  .timeline-step.step-3 {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .timeline-step.step-3 .step-circle {
    width: 46px;
    height: 46px;
  }

  .timeline-step.step-4 {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .timeline-step.step-4 .step-circle {
    width: 50px;
    height: 50px;
    left: auto;
    top: auto;
  }

  .step-circle .step-number {
    font-size: 1rem;
  }

  .timeline-step .step-content {
    padding: 18px;
    border-left-width: 3px;
    border-radius: 18px;
  }

  .step-content h4 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero {
    padding-top: 32px;
  }
}

/* About page styles */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 0;
}

.about-text {
  max-width: 560px;
  justify-self: center;
  align-self: center;
  transform: translateY(-96px);
}

.about-visual {
  display: grid;
}

.about-image-card {
  position: relative;
  width: min(100%, 420px);
  justify-self: center;
  padding: 14px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(0, 217, 255, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.about-image-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.24), transparent 68%);
  pointer-events: none;
}

.about-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.about-note {
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(10, 217, 255, 0.08), rgba(168, 85, 247, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-note-eyebrow {
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-note p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  justify-items: center;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-item-compact {
  justify-self: center;
  padding: 16px 20px;
  min-width: 0;
  max-width: 170px;
}

.stat-item-compact .stat-number {
  font-size: 2rem;
  margin-bottom: 4px;
}

.stat-item-compact .stat-label {
  font-size: 0.8rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-skills-section {
  padding-top: 12px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.skill-item {
  padding: 24px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.skill-item h3 {
  margin: 0 0 12px 0;
  color: var(--accent);
}

.skill-item p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-text {
    transform: none;
  }

  .about-visual {
    order: -1;
  }

  .about-image-card {
    padding: 10px;
    border-radius: 24px;
  }

  .about-photo {
    border-radius: 18px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }
}
