:root {
  --bg-900: #01030a;
  --bg-800: #050b16;
  --bg-700: #0b1424;
  --card: rgba(14, 25, 42, 0.85);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f8ff;
  --muted: rgba(245, 248, 255, 0.7);
  --cyan: #33d0ff;
  --purple: #8f5bff;
  --blue: #0d9bff;
  --gradient: radial-gradient(circle at 10% 20%, rgba(46, 197, 255, 0.25), transparent),
    radial-gradient(circle at 90% 10%, rgba(142, 93, 255, 0.25), transparent),
    #050b16;
  --radius: 18px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-900);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

button,
input,
textarea {
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

section {
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 7vw, 5rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem clamp(1.5rem, 7vw, 5rem);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: opacity 200ms ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.logo span {
  display: inline-block;
}

.primary-nav {
  display: flex;
  align-items: center;
}

.primary-nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.primary-nav li {
  position: relative;
}

.primary-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 200ms ease;
  position: relative;
  padding: 0.25rem 0;
}

.primary-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--cyan);
}

.primary-nav a:hover::after,
.primary-nav a:focus::after,
.primary-nav a.active::after {
  transform: scaleX(1);
}

.primary-nav a.active {
  color: var(--cyan);
}

.primary-nav a:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  border: none;
  background: none;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--cyan), var(--purple));
  color: var(--bg-900);
  box-shadow: 0 12px 24px rgba(51, 208, 255, 0.35);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(51, 208, 255, 0.4);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero {
  background: var(--gradient);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
}

.hero__video-container {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.hero__video-wrapper {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.hero__video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.15;
  margin: 1rem 0;
}

.hero__copy p {
  color: var(--muted);
  max-width: 560px;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  color: var(--muted);
}

.hero__trust strong {
  color: var(--cyan);
  font-weight: 600;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-800);
  margin-left: -10px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.1);
}

.avatars img:first-child {
  margin-left: 0;
}


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

  .hero__video-wrapper {
    max-width: 100%;
  }
}

.logo-strip {
  background: var(--bg-800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  will-change: transform;
}

.logo-marquee-content img {
  flex-shrink: 0;
  height: 90px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 300ms ease, transform 300ms ease;
  filter: brightness(0.95);
}

.logo-marquee-content img:hover {
  opacity: 1;
  filter: brightness(1.1);
  transform: scale(1.05);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.section-heading {
  max-width: 600px;
  margin-bottom: 2rem;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.section-heading p {
  color: var(--muted);
  margin-top: 0.5rem;
}

.benefits {
  background: var(--bg-800);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.benefit-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
  min-height: 200px;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transform: scaleX(0);
  transition: transform 300ms ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(51, 208, 255, 0.4);
  box-shadow: 0 20px 40px rgba(51, 208, 255, 0.15);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.benefit-card p {
  color: var(--muted);
  margin: 0;
}

.guarantee-banner {
  margin-top: 3rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(51, 208, 255, 0.1), rgba(143, 91, 255, 0.1));
  border: 1px solid rgba(51, 208, 255, 0.2);
  border-radius: var(--radius);
  text-align: center;
  color: var(--text);
}

.guarantee-banner strong {
  color: var(--cyan);
}

.packages {
  background: var(--bg-900);
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.plan-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 420px;
  position: relative;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.plan-card.featured {
  border: 2px solid var(--cyan);
  box-shadow: 0 15px 45px rgba(51, 208, 255, 0.3);
  transform: scale(1.05);
}

.plan-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: linear-gradient(120deg, var(--cyan), var(--purple));
  color: var(--bg-900);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0.5rem 0;
  flex-wrap: wrap;
}

.price-current {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--muted);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-old {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-right: 0.5rem;
}

.price-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.promo-note {
  color: var(--cyan);
  font-weight: 600;
  margin-left: 0.4rem;
}

.promo-timer {
  margin: 0.5rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: calc(var(--radius) / 1.5);
  background: rgba(51, 208, 255, 0.08);
  border: 1px dashed rgba(51, 208, 255, 0.4);
  text-align: center;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.08em;
}

.promo-timer span {
  font-size: 1.1rem;
  color: var(--cyan);
}

.plan-card h3 {
  margin: 0;
  font-size: 2rem;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--muted);
  flex-grow: 1;
}

.plan-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.plan-popular {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.pricing-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(51, 208, 255, 0.05);
  border: 1px solid rgba(51, 208, 255, 0.15);
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
}

.pricing-note a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

.pricing-note a:hover {
  text-decoration: underline;
}

.plan-card .plan-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.85rem;
}

.plan-card.featured {
  border: 1px solid var(--cyan);
  box-shadow: 0 15px 45px rgba(0, 180, 255, 0.25);
}

.portfolio {
  background: var(--bg-800);
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  margin: 2rem 0;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 calc(33.333% - 1rem);
  width: 400px;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  scroll-snap-align: start;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.carousel-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(51, 208, 255, 0.2);
  border-color: rgba(51, 208, 255, 0.4);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(1, 3, 10, 0.95), transparent);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 300ms ease;
}

.carousel-item:hover .carousel-overlay {
  transform: translateY(0);
}

.carousel-overlay h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--text);
}

.carousel-overlay p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(1, 3, 10, 0.9);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
  opacity: 0.7;
}

.carousel-btn:hover {
  opacity: 1;
  background: rgba(51, 208, 255, 0.2);
  border-color: var(--cyan);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 300ms ease;
  padding: 0;
}

.dot:hover {
  background: rgba(51, 208, 255, 0.5);
  transform: scale(1.2);
}

.dot.active {
  background: var(--cyan);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(51, 208, 255, 0.5);
}

.reviews {
  background: var(--bg-900);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 300ms ease, border-color 300ms ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(51, 208, 255, 0.3);
}

.stars {
  color: #ffd700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.testimonial-card p {
  color: var(--text);
  font-style: italic;
  margin: 0;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(51, 208, 255, 0.3);
  flex-shrink: 0;
}

.testimonial-author h3 {
  margin: 0;
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 0.85rem;
}

.trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-item strong {
  font-size: 2rem;
  background: linear-gradient(120deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta {
  background: linear-gradient(120deg, #04112a, #050710);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
}

.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-item strong {
  color: var(--cyan);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--cyan);
}

.cta__copy ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.cta__panel {
  background: rgba(6, 12, 26, 0.9);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

.cta__panel h3 {
  margin: 0;
  font-size: 1.5rem;
}

.form-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin: -0.5rem 0 1rem;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.form-message {
  display: none;
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.form-message.success {
  background: rgba(67, 217, 173, 0.1);
  border: 1px solid rgba(67, 217, 173, 0.3);
  color: #43d9ad;
}

.form-message.error {
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.3);
  color: #ff4d4d;
}

.form-message.info {
  background: rgba(51, 208, 255, 0.1);
  border: 1px solid rgba(51, 208, 255, 0.3);
  color: var(--cyan);
}

.btn-arrow {
  margin-left: 0.5rem;
  transition: transform 200ms ease;
}

.btn.primary:hover .btn-arrow {
  transform: translateX(4px);
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-weight: 600;
}

input,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem 1rem;
  color: var(--text);
  transition: border-color 200ms ease, background 200ms ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(51, 208, 255, 0.1);
}

textarea {
  resize: vertical;
}

.checkbox {
  flex-direction: row;
  align-items: center;
  font-weight: 500;
  color: var(--muted);
}

.checkbox input {
  width: auto;
  margin-right: 0.5rem;
}

.cta__details {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 2.5rem clamp(1.5rem, 7vw, 5rem);
  background: #02050f;
  border-top: 1px solid var(--border);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--muted);
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 200ms ease;
}

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

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .primary-nav ul {
    position: absolute;
    right: 1.5rem;
    top: 100%;
    flex-direction: column;
    background: var(--bg-800);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 300ms ease, opacity 300ms ease;
  }

  .primary-nav ul.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .plan-card.featured {
    transform: scale(1);
  }

  .plan-card.featured:hover {
    transform: translateY(-8px);
  }

  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .carousel-item {
    flex: 0 0 calc(50% - 0.75rem);
    width: 350px;
    height: 450px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-prev {
    left: 0.5rem;
  }

  .carousel-next {
    right: 0.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__video-container {
    order: -1;
    margin-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  .carousel-item {
    flex: 0 0 85%;
    width: 300px;
    height: 400px;
  }

  .carousel-btn {
    display: none;
  }
}

