@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img, video, iframe {
  max-width: 100%;
  height: auto;
}

:root {
  --bg: #07070d;
  --bg2: #0e0e18;
  --bg3: #161625;
  --surface: #1a1a2e;
  --surface2: #22223a;
  --text: #f0f0f5;
  --text2: #9595ad;
  --text3: #5e5e75;
  --accent: #7c6df5;
  --accent2: #a599ff;
  --accent-glow: rgba(124, 109, 245, 0.25);
  --green: #00d4a1;
  --green-glow: rgba(0, 212, 161, 0.15);
  --gold: #f5c542;
  --red: #ff5c5c;
  --radius: 14px;
  --radius-sm: 10px;
  --border: rgba(255, 255, 255, 0.06);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

section, footer, .hero {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Fix iframe / video overflow causing horizontal scroll */
img, video, iframe {
  max-width: 100% !important;
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: all .7s cubic-bezier(.22, 1, .36, 1);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Layout */
.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 56px 0;
}

.section-dark {
  background: var(--bg2);
}

.badge {
  display: inline-block;
  background: rgba(124, 109, 245, 0.15);
  color: var(--accent2);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: 1px solid rgba(124, 109, 245, 0.2);
}

.section-title {
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 500px;
}

.highlight {
  color: var(--accent2);
}

/* Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 4px 20px var(--accent-glow);
  width: 100%;
  max-width: 400px;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
  filter: brightness(1.1);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn.green {
  background: var(--green);
  box-shadow: 0 4px 20px var(--green-glow);
}

.cta-btn.green:hover {
  box-shadow: 0 8px 30px var(--green-glow);
}

.cta-small {
  display: block;
  text-align: center;
  color: var(--text3);
  font-size: 0.78rem;
  margin-top: 10px;
}

.cta-wrapper {
  text-align: center;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero */
.hero {
  padding: 56px 0 24px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 109, 245, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .badge {
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-desc {
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 20px;
}

.hero-trust {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text2);
  font-size: 0.75rem;
}

.hero-trust-item .icon {
  color: var(--green);
}

/* Video */
.video-section {
  padding: 0 0 8px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--bg3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero CTA (below video) */
.hero-cta {
  padding: 20px 0 0;
  text-align: center;
}

/* Capacity inline */
.capacity-inline {
  padding: 24px 0;
}

.capacity-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  max-width: 480px;
  margin: 0 auto;
}

.capacity-bar .pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 161, 0.4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(0, 212, 161, 0);
  }
}

.capacity-bar .cap-text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.4;
}

.capacity-bar .cap-text strong {
  color: var(--text);
  font-weight: 700;
}

.capacity-bar .cap-count {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent2);
  white-space: nowrap;
}

.capacity-bar .cap-count span {
  font-size: 0.8rem;
  color: var(--text3);
  font-weight: 500;
}

.capacity-date-small {
  text-align: center;
  color: var(--text3);
  font-size: 0.72rem;
  margin-top: 8px;
}

/* Form */
.form-section {
  padding: 48px 0;
}

.form-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.step {
  display: none;
}

.step.active {
  display: block;
  animation: fadeUp .4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 4px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text3);
  transition: color .3s;
}

.step-item.active {
  color: var(--text);
}

.step-item .step-num {
  flex-shrink: 0;
  min-width: 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text3);
  font-size: 0.75rem;
  transition: all .3s;
  font-weight: 800;
}

.step-item.active .step-num {
  background: var(--accent);
  color: #fff;
}

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 14px;
  position: relative;
  border-radius: 2px;
  transition: background .3s;
}

.step-line.active {
  background: var(--accent);
  opacity: 0.8;
}

.form-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-desc {
  color: var(--text2);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text3);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input {
  width: 100%;
  padding: 13px 14px;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all .3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder {
  color: var(--text3);
}

/* Radio product selector */
.product-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.product-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .3s;
}

.product-option:hover {
  border-color: rgba(124, 109, 245, 0.3);
}

.product-option.selected {
  border-color: var(--accent);
  background: rgba(124, 109, 245, 0.06);
}

.product-option .radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--text3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.product-option.selected .radio {
  border-color: var(--accent);
}

.product-option.selected .radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.product-option .opt-info {
  flex: 1;
}

.product-option .opt-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.product-option .opt-sub {
  font-size: 0.75rem;
  color: var(--text2);
  margin-top: 4px;
  line-height: 1.3;
}

.product-option .opt-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent2);
  flex-shrink: 0;
}

/* Stripe Payment Element container */
#payment-element {
  margin-bottom: 20px;
  min-height: 100px;
}

#payment-message {
  color: var(--red);
  font-size: 0.85rem;
  margin-bottom: 12px;
  text-align: center;
  display: none;
}

/* Order Bump — removed, kept for reference */

/* Secure Badges */
.secure-badges {
  text-align: center;
  margin-top: 14px;
}

.secure-badges>span {
  display: block;
  color: var(--text3);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.guarantee-note {
  text-align: center;
  color: var(--text3);
  font-size: 0.78rem;
  margin-top: 12px;
  line-height: 1.5;
}

.guarantee-note .shield {
  color: var(--green);
}

/* Value Stack */
.value-stack {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.value-row:last-child {
  border-bottom: none;
}

.value-row .label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.value-row .label .emoji {
  font-size: 1.1rem;
}

.value-row .price {
  color: var(--text3);
  text-decoration: line-through;
  font-weight: 500;
  font-size: 0.9rem;
}

.value-row.total {
  background: rgba(124, 109, 245, 0.08);
  border-top: 1px solid rgba(124, 109, 245, 0.2);
}

.value-row.total .label {
  font-weight: 800;
  font-size: 1.05rem;
}

.value-row.total .price {
  color: var(--accent2);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 800;
}

.value-row .included {
  color: var(--green);
  font-weight: 600;
  font-size: 0.82rem;
}

.offer-badge {
  text-align: center;
  margin-top: 20px;
}

.offer-badge .main {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.offer-badge .sub {
  color: var(--text3);
  font-size: 0.78rem;
  margin-top: 3px;
}

/* How It Works */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.step-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateY(-2px);
}

.step-card .step-icon {
  font-size: 1.6rem;
  background: rgba(124, 109, 245, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(124, 109, 245, 0.2);
}

.step-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-card p {
  color: var(--text2);
  font-size: 0.88rem;
  line-height: 1.6;
}

.profit-example {
  background: rgba(0, 212, 161, 0.08);
  border: 1px solid rgba(0, 212, 161, 0.15);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin-top: 10px;
  font-size: 0.83rem;
  color: var(--green);
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}

.stat-card .num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent2);
}

.stat-card .lbl {
  color: var(--text3);
  font-size: 0.75rem;
  margin-top: 3px;
}

/* About */
.about-text {
  color: var(--text2);
  font-size: 0.92rem;
  line-height: 1.8;
}

.about-text strong {
  color: var(--text);
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-top: 20px;
}

.carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1);
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  border: none;
  transition: all .3s;
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 6px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all .3s;
}

.carousel-nav:hover {
  background: var(--accent);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

/* Why 37€ & Reasons Grid */
.why-section .reason-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  margin-bottom: 14px;
}

.reason-block .reason-num {
  background: var(--accent);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.reason-block h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.reason-block p,
.reason-block li {
  color: var(--text2);
  font-size: 0.88rem;
  line-height: 1.7;
}

.reason-block ul {
  list-style: none;
  margin-top: 6px;
}

.reason-block ul li::before {
  content: '✓ ';
  color: var(--green);
  font-weight: 700;
}

/* Form Back Button */
.form-back-btn {
  background: none;
  border: none;
  color: var(--accent2);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 14px;
  font-family: inherit;
  transition: color .3s;
}

.form-back-btn:hover {
  color: var(--text);
}

/* Mini Stats */
.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.mini-stat {
  text-align: center;
  padding: 14px 6px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

.mini-stat .val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent2);
}

.mini-stat .desc {
  font-size: 0.72rem;
  color: var(--text3);
  margin-top: 2px;
}

.success-note {
  background: rgba(0, 212, 161, 0.06);
  border: 1px solid rgba(0, 212, 161, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-top: 14px;
}

.success-note p {
  color: var(--text2);
  font-size: 0.83rem;
  line-height: 1.6;
}

.success-note p::before {
  content: '✓ ';
  color: var(--green);
  font-weight: 700;
}

/* Results */
.results-carousel {
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.results-track {
  display: flex;
  gap: 14px;
  padding-right: 14px;
  animation: scrollResults 20s linear infinite;
  width: max-content;
}

.results-track:hover {
  animation-play-state: paused;
}

.result-card {
  width: 320px;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  background: #0b0b14;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Trustpilot Header */
.trustpilot-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.tp-stars-header {
  height: 24px;
  width: auto;
}

.tp-score {
  color: var(--text2);
  font-size: 0.9rem;
}

.tp-score strong {
  color: #00B67A;
}

/* Reviews Carousel */
.reviews-carousel {
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.reviews-track {
  display: flex;
  gap: 16px;
  padding-right: 16px;
  animation: scrollReviews 30s linear infinite;
  width: max-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.review-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
}

.review-stars {
  margin-bottom: 10px;
  display: flex;
  gap: 3px;
}

.review-stars svg {
  height: 18px;
  width: 18px;
}

.review-text {
  color: var(--text2);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-author strong {
  color: var(--text);
  font-size: 0.85rem;
}

.review-author span {
  color: var(--text3);
  font-size: 0.72rem;
}

@keyframes scrollReviews {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes scrollResults {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* FAQ */
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color .3s;
  gap: 12px;
}

.faq-q:hover {
  color: var(--accent2);
}

.faq-q .arrow {
  font-size: 0.7rem;
  transition: transform .3s;
  color: var(--text3);
  flex-shrink: 0;
}

.faq-item.open .faq-q .arrow {
  transform: rotate(180deg);
  color: var(--accent2);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  padding: 0 18px 16px;
  color: var(--text2);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 36px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer p {
  color: var(--text3);
  font-size: 0.78rem;
}

.footer a {
  color: var(--accent2);
  text-decoration: none;
}

/* Legal Pages */
.legal-container {
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 760px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent2);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 32px;
  transition: color .3s;
}

.legal-back:hover {
  color: var(--text);
}

.legal-content {
  margin-top: 32px;
}

.legal-content h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  color: var(--text2);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-content a {
  color: var(--accent2);
  text-decoration: none;
}

.legal-content a:hover {
  color: var(--text);
}

/* Toast */
.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1000;
  animation: toastIn .4s ease;
  box-shadow: 0 8px 28px rgba(0, 212, 161, 0.3);
  max-width: 90vw;
  text-align: center;
}

.toast.error {
  background: var(--red);
  box-shadow: 0 8px 28px rgba(255, 92, 92, 0.3);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translate(-50%, -16px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Loading */
.btn-loading {
  pointer-events: none;
  opacity: 0.7;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .container {
    max-width: 760px;
    padding: 0 20px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 80px 0 32px;
  }

  .hero-trust {
    gap: 20px;
  }

  .hero-trust-item {
    font-size: 0.82rem;
  }

  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .mini-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .product-selector {
    flex-direction: row;
  }

  .product-option {
    flex: 1;
  }
}
