/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  color: #111111;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.delay-5 { transition-delay: 0.5s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.navbar.scrolled {
  border-bottom-color: #E8E8E8;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo img {
  height: 44px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-links a {
  font-size: 15px;
  font-weight: 500;
  color: #111111;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #111111;
  transition: width 0.3s ease;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-links a:hover {
  opacity: 1;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Social icons in navbar */
.navbar-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.navbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: 1.5px solid #E8E8E8;
  color: #9A9A9A;
  transition: all 0.2s ease;
}

.navbar-social a:hover {
  border-color: #111111;
  color: #111111;
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #111111;
  color: #FFFFFF;
}

.btn-primary:hover {
  background: #333333;
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: #111111;
  border: 1.5px solid #111111;
}

.btn-outline:hover {
  background: #111111;
  color: #FFFFFF;
  opacity: 1;
}

.btn-white {
  background: #FFFFFF;
  color: #111111;
}

.btn-white:hover {
  background: #F5F5F5;
  opacity: 1;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 14px;
}

/* Mobile menu toggle */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111111;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  color: #9A9A9A;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 0 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-video {
  flex: 0 0 620px;
  max-width: 620px;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #F5F5F5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.video-placeholder-label {
  font-size: 16px;
  color: #9A9A9A;
  font-weight: 500;
}

/* ===== SECTION: WHAT WE ARE ===== */
.section {
  padding: 100px 0;
}

.section-gray {
  background: #F5F5F5;
}

.section-dark {
  background: #111111;
  color: #FFFFFF;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  background: #111111;
  color: #FFFFFF;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.feature-card {
  padding: 40px 32px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E8E8E8;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #F5F5F5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #9A9A9A;
  line-height: 1.6;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E8E8E8;
}

.stat-value {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: #9A9A9A;
  font-weight: 400;
}

/* ===== PARTNERS ===== */
.partners-section .section-header {
  margin-bottom: 48px;
}

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

.partner-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px 40px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1.5px solid #E8E8E8;
  text-decoration: none;
  color: #111111;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #F5F5F5;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.partner-card:hover {
  border-color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(17,17,17,0.07);
  opacity: 1;
}

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

.partner-logo-wrap {
  flex-shrink: 0;
  width: 100px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.partner-logo {
  max-width: 100px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(100%);
  transition: filter 0.25s ease;
}

.partner-card:hover .partner-logo {
  filter: grayscale(0%);
}

.partner-logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #111111;
}

.partner-info {
  flex: 1;
  position: relative;
  z-index: 1;
}

.partner-name {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111111;
}

.partner-desc {
  font-size: 14px;
  color: #9A9A9A;
  line-height: 1.5;
}

.partner-arrow {
  flex-shrink: 0;
  color: #9A9A9A;
  transition: color 0.25s ease, transform 0.25s ease;
  position: relative;
  z-index: 1;
}

.partner-card:hover .partner-arrow {
  color: #111111;
  transform: translate(3px, -3px);
}

/* ===== FINAL CTA ===== */
.cta-section {
  padding: 100px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PRICING ===== */
.pricing-hero {
  padding: 160px 0 60px;
  text-align: center;
}

.pricing-hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.pricing-hero p {
  font-size: 18px;
  color: #9A9A9A;
  max-width: 560px;
  margin: 0 auto;
}

/* Slider section */
.slider-section {
  padding: 0 0 48px;
}

.slider-wrapper {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.slider-label {
  font-size: 15px;
  font-weight: 500;
  color: #9A9A9A;
  margin-bottom: 12px;
}

.slider-value {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.slider-info {
  font-size: 14px;
  color: #9A9A9A;
  margin-bottom: 24px;
}

.slider-info span {
  font-weight: 600;
  color: #111111;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #E8E8E8;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #111111;
  cursor: pointer;
  transition: transform 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #111111;
  cursor: pointer;
  border: none;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 80px;
}

.pricing-card {
  padding: 36px 32px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1.5px solid #E8E8E8;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card.recommended {
  border-color: #111111;
  transform: scale(1.02);
}

.pricing-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #111111;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card.recommended .pricing-card-badge {
  opacity: 1;
}

.pricing-card-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-card-price {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.pricing-card-price span {
  font-size: 16px;
  font-weight: 400;
  color: #9A9A9A;
}

.pricing-card-gens {
  font-size: 14px;
  color: #9A9A9A;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #E8E8E8;
}

/* Plan feature checklist */
.plan-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.plan-features li {
  font-size: 14px;
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.plan-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-features li.included::before {
  content: '\2713';
  background: #111111;
  color: #FFFFFF;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}

.plan-features li.excluded {
  color: #9A9A9A;
}

.plan-features li.excluded::before {
  content: '\2715';
  background: #E8E8E8;
  color: #9A9A9A;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
}

/* Enterprise list override */
.plan-features.enterprise-list li.included::before {
  background: #FFFFFF;
  color: #111111;
}

.pricing-card.enterprise .plan-features li {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #E8E8E8;
  margin-bottom: 24px;
}

.pricing-total-label {
  font-size: 15px;
  font-weight: 600;
}

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

.pricing-savings {
  background: #F5F5F5;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #111111;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.pricing-savings.show {
  display: block;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Enterprise card */
.pricing-card.enterprise {
  background: #111111;
  color: #FFFFFF;
  border-color: #111111;
}

.pricing-card.enterprise .pricing-card-gens {
  color: rgba(255, 255, 255, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.enterprise .pricing-card-price span {
  color: rgba(255, 255, 255, 0.5);
}

/* ===== CHECKOUT MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 24px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #9A9A9A;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #111111;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-subtitle {
  font-size: 15px;
  color: #9A9A9A;
  margin-bottom: 28px;
  line-height: 1.5;
}

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

.modal-error {
  font-size: 14px;
  color: #D32F2F;
  margin-bottom: 16px;
  display: none;
}

.modal-form .btn {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  margin-top: 8px;
}

.modal-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== SUCCESS PAGE ===== */
.success-section {
  padding: 200px 0 120px;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: #111111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.success-section h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.success-section p {
  font-size: 17px;
  color: #9A9A9A;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact-hero {
  padding: 160px 0 60px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.contact-hero p {
  font-size: 18px;
  color: #9A9A9A;
  max-width: 520px;
  margin: 0 auto;
}

.contact-section {
  padding: 0 0 100px;
}

.contact-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #111111;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid #E8E8E8;
  border-radius: 10px;
  font-size: 15px;
  background: #FFFFFF;
  color: #111111;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9A9A9A;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #111111;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239A9A9A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: 8px;
}

.contact-alt {
  text-align: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #E8E8E8;
}

.contact-alt p {
  font-size: 15px;
  color: #9A9A9A;
  margin-bottom: 8px;
}

.contact-alt a {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
}

/* ===== FOOTER ===== */
.footer {
  background: #F5F5F5;
  padding: 64px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 38px;
  margin-bottom: 12px;
  mix-blend-mode: multiply;
}

.footer-tagline {
  font-size: 14px;
  color: #9A9A9A;
  max-width: 280px;
}

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

.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: #9A9A9A;
}

.footer-links a:hover {
  color: #111111;
  opacity: 1;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #E8E8E8;
  font-size: 13px;
  color: #9A9A9A;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    gap: 32px;
  }

  .hero-video {
    flex: 0 0 480px;
    max-width: 480px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .section-header h2,
  .cta-section h2 {
    font-size: 36px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .pricing-card.enterprise {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid #E8E8E8;
  }

  .navbar-links.open {
    display: flex;
  }

  .navbar-cta {
    display: none;
  }

  .navbar-cta.mobile-show {
    display: flex;
  }

  .navbar-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero .container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

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

  .hero p {
    max-width: none;
    margin: 0 auto 40px;
    font-size: 16px;
  }

  .hero-ctas {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-video {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .section {
    padding: 64px 0;
  }

  .section-header h2,
  .cta-section h2 {
    font-size: 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-value {
    font-size: 36px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .partner-card {
    padding: 24px 28px;
    gap: 20px;
  }

  .partner-logo-wrap {
    width: 72px;
    height: 44px;
  }

  .partner-logo {
    max-width: 72px;
  }

  .cta-section {
    padding: 64px 0;
  }

  .pricing-hero {
    padding: 120px 0 40px;
  }

  .pricing-hero h1,
  .contact-hero h1 {
    font-size: 36px;
  }

  .slider-value {
    font-size: 36px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card.recommended {
    transform: none;
  }

  .contact-hero {
    padding: 120px 0 40px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .pricing-card {
    padding: 28px 24px;
  }
}

/* Scroll offset for fixed navbar */
#fonctionnement,
#faq {
  scroll-margin-top: 88px;
}

/* ===== HOW IT WORKS ===== */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: #E8E8E8;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.how-step-num {
  width: 48px;
  height: 48px;
  background: #111111;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-step-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111111;
}

.how-step-body p {
  font-size: 14px;
  color: #9A9A9A;
  line-height: 1.6;
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
  padding: 80px 0;
  background: #F5F5F5;
}

.testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1.5px solid #E8E8E8;
  padding: 52px 60px;
  text-align: center;
}

.testimonial-quote-mark {
  font-size: 80px;
  line-height: 0.8;
  color: #E8E8E8;
  font-family: Georgia, serif;
  margin-bottom: 12px;
  display: block;
}

.testimonial-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: #111111;
  letter-spacing: -0.2px;
  margin-bottom: 36px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial-author-logo {
  height: 22px;
  width: auto;
  mix-blend-mode: multiply;
  opacity: 0.55;
}

.testimonial-divider {
  width: 1px;
  height: 28px;
  background: #E8E8E8;
}

.testimonial-author-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}

.testimonial-author-meta span {
  font-size: 13px;
  color: #9A9A9A;
}

/* ===== CODE SNIPPET ===== */
.code-section .section-header {
  margin-bottom: 40px;
}

.code-block {
  background: #1a1a1a;
  border-radius: 14px;
  padding: 0;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.code-block-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-dot:nth-child(1) { background: #FF5F57; }
.code-dot:nth-child(2) { background: #FEBC2E; }
.code-dot:nth-child(3) { background: #28C840; }

.code-filename {
  margin-left: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
}

.code-block pre {
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.9;
  overflow-x: auto;
  padding: 24px 28px;
  margin: 0;
}

.code-c { color: rgba(255,255,255,0.28); }
.code-t { color: #79C0FF; }
.code-a { color: #FFA657; }
.code-s { color: #A5D6FF; }
.code-p { color: rgba(255,255,255,0.85); }

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 0;
  background: #F5F5F5;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1.5px solid #E8E8E8;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.open {
  border-color: #111111;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
  gap: 16px;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid #E8E8E8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #9A9A9A;
  line-height: 1;
  transition: all 0.25s ease;
}

.faq-item.open .faq-icon {
  background: #111111;
  border-color: #111111;
  color: #FFFFFF;
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 15px;
  color: #9A9A9A;
  line-height: 1.7;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ===== COMPARISON TABLE ===== */
.compare-section {
  padding: 80px 0;
}

.compare-section .section-header {
  margin-bottom: 40px;
}

.compare-wrapper {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table thead th {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid #111111;
  white-space: nowrap;
}

.compare-table thead th:first-child {
  text-align: left;
  width: 28%;
}

.compare-table tbody td {
  padding: 13px 16px;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid #E8E8E8;
  color: #9A9A9A;
}

.compare-table tbody td:first-child {
  text-align: left;
  color: #111111;
  font-weight: 500;
}

.compare-table tbody tr:hover td {
  background: #F5F5F5;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.c-yes { color: #111111; font-weight: 700; font-size: 15px; }
.c-no  { color: #CCCCCC; font-weight: 700; font-size: 15px; }
.c-val { color: #111111; font-weight: 600; }

/* ===== FOOTER SOCIAL ===== */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid #E8E8E8;
  color: #9A9A9A;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  border-color: #111111;
  color: #111111;
  opacity: 1;
}

/* ===== CONTACT BOOKING ===== */
.contact-book {
  background: #F5F5F5;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-bottom: 48px;
}

.contact-book h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111111;
}

.contact-book p {
  font-size: 15px;
  color: #9A9A9A;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ===== SUCCESS NEXT STEPS ===== */
.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 40px auto 0;
  text-align: left;
}

.next-step-card {
  background: #F5F5F5;
  border-radius: 14px;
  padding: 28px 24px;
}

.next-step-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.next-step-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 6px;
}

.next-step-card p {
  font-size: 13px;
  color: #9A9A9A;
  line-height: 1.5;
  margin: 0;
}

/* ===== DEMO WIDGET ANIMÉ ===== */
.demo-widget-frame {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #FAFAFA;
  overflow: hidden;
  font-size: 13px;
}

/* Barre navigateur */
.demo-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #EEEEEE;
  border-bottom: 1px solid #E0E0E0;
  flex-shrink: 0;
}

.demo-browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.demo-browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}

.db-r { background: #FF5F57; }
.db-y { background: #FFBD2E; }
.db-g { background: #28CA41; }

.demo-browser-url {
  background: #E2E2E2;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 10px;
  color: #666;
  flex: 1;
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Page produit */
.demo-product-page {
  display: flex;
  flex: 1;
  padding: 20px 24px;
  gap: 20px;
  align-items: center;
  min-height: 0;
  overflow: hidden;
}

.demo-product-left {
  flex: 0 0 36%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.demo-product-img-wrap {
  position: relative;
  display: inline-flex;
}

.demo-dress-svg {
  width: auto;
  height: clamp(140px, 55cqh, 200px);
  height: 200px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.14));
}

.demo-img-badge {
  position: absolute;
  top: 6px;
  left: -6px;
  background: #111;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 2px 7px;
  border-radius: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.demo-product-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}

.demo-product-cat {
  font-size: 10px;
  color: #9A9A9A;
  font-weight: 500;
  letter-spacing: 0.3px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.demo-product-name {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
  line-height: 1.1;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.demo-product-price {
  font-size: 17px;
  font-weight: 600;
  color: #111;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.demo-product-price span {
  font-size: 13px;
  font-weight: 400;
  color: #9A9A9A;
}

.demo-sizes {
  display: flex;
  gap: 5px;
}

.demo-sizes span {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1.5px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  color: #9A9A9A;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.demo-sizes span.sel {
  border-color: #111;
  color: #111;
}

.demo-try-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: default;
  width: fit-content;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: box-shadow 0.3s ease;
}

[data-phase="1"] .demo-try-btn {
  box-shadow: 0 0 0 3px rgba(17,17,17,0.18), 0 6px 20px rgba(0,0,0,0.22);
}

.demo-cart-page-btn {
  background: transparent;
  color: #111;
  border: 1.5px solid #E0E0E0;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: default;
  width: fit-content;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Curseur animé */
.demo-cursor {
  position: absolute;
  pointer-events: none;
  z-index: 60;
  transition:
    top 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    left 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.5s ease;
  top: 60%;
  left: 55%;
  opacity: 0;
}

[data-phase="0"] .demo-cursor {
  top: 60%;
  left: 55%;
  opacity: 0;
}

[data-phase="1"] .demo-cursor {
  top: 64%;
  left: 60%;
  opacity: 1;
}

[data-phase="2"] .demo-cursor,
[data-phase="3"] .demo-cursor,
[data-phase="4"] .demo-cursor,
[data-phase="5"] .demo-cursor {
  opacity: 0;
}

@keyframes cursorClick {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(0.82); }
}

.demo-cursor.clicking {
  animation: cursorClick 0.32s ease;
}

/* Overlay */
.demo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.38);
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 100;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

[data-phase="2"] .demo-overlay,
[data-phase="3"] .demo-overlay,
[data-phase="4"] .demo-overlay,
[data-phase="5"] .demo-overlay {
  opacity: 1;
  pointer-events: all;
}

/* Panel widget */
.demo-panel {
  background: #fff;
  border-radius: 12px;
  width: 220px;
  max-width: 42%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  overflow: hidden;
  transform: translateY(14px);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-phase="2"] .demo-panel,
[data-phase="3"] .demo-panel,
[data-phase="4"] .demo-panel,
[data-phase="5"] .demo-panel {
  transform: translateY(0);
}

.demo-panel-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid #F0F0F0;
  flex-shrink: 0;
}

.demo-panel-brand {
  font-size: 12px;
  font-weight: 700;
  color: #111;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.demo-panel-tag {
  font-size: 9px;
  background: #111;
  color: #fff;
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.demo-panel-close {
  margin-left: auto;
  font-size: 16px;
  color: #BDBDBD;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Corps du panel */
.demo-panel-body {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  flex: 1;
  min-height: 0;
}

[data-phase="2"] [data-body="upload"],
[data-phase="3"] [data-body="processing"],
[data-phase="4"] [data-body="result"],
[data-phase="5"] [data-body="success"] {
  display: flex;
}

/* ----- Phase Upload ----- */
.demo-panel-instruct {
  font-size: 11px;
  color: #666;
  text-align: center;
  line-height: 1.5;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.demo-panel-instruct strong {
  color: #111;
}

.demo-upload-zone {
  width: 100%;
  border: 2px dashed #E0E0E0;
  border-radius: 8px;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.demo-upload-zone span {
  font-size: 11px;
  color: #BDBDBD;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.demo-photo-ready {
  display: none;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: #F5F5F5;
  border-radius: 8px;
  padding: 8px 10px;
}

.demo-photo-ready.show {
  display: flex;
}

.demo-photo-thumb {
  width: 36px;
  height: 46px;
  border-radius: 6px;
  background: #E8D5C0;
  overflow: hidden;
  flex-shrink: 0;
}

.demo-photo-thumb svg {
  width: 100%;
  height: 100%;
}

.demo-photo-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.demo-photo-fname {
  font-size: 10px;
  font-weight: 600;
  color: #111;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.demo-photo-ok {
  font-size: 9px;
  color: #22C55E;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Dimensions row */
.demo-dims-row {
  display: flex;
  align-items: center;
  background: #F7F7F7;
  border-radius: 8px;
  padding: 5px 4px;
  width: 100%;
}

.demo-dim-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.demo-dim-label {
  font-size: 8px;
  color: #BDBDBD;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1;
  margin-bottom: 1px;
}

.demo-dim-val {
  font-size: 10.5px;
  color: #111;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
}

.demo-dim-sep {
  width: 1px;
  height: 22px;
  background: #E8E8E8;
  flex-shrink: 0;
}

.demo-gen-btn {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-top: auto;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.demo-gen-btn.show {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Phase Processing ----- */
.demo-ai-rings {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  margin: 8px 0 4px;
}

.demo-ai-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.ar1 {
  inset: 0;
  border-top-color: #111;
  animation: spinRing 1.1s linear infinite;
}

.ar2 {
  inset: 10px;
  border-right-color: #555;
  animation: spinRing 1.7s linear infinite reverse;
}

.ar3 {
  inset: 20px;
  border-bottom-color: #CCC;
  animation: spinRing 2.3s linear infinite;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

.demo-ai-dot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #111;
  animation: aiPulse 1.8s ease-in-out infinite;
}

@keyframes aiPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.demo-ai-status {
  font-size: 12px;
  font-weight: 600;
  color: #111;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.demo-ai-sub {
  font-size: 10px;
  color: #9A9A9A;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.demo-progress-bar {
  width: 100%;
  height: 4px;
  background: #E8E8E8;
  border-radius: 4px;
  overflow: hidden;
}

.demo-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #111, #555);
  border-radius: 4px;
  width: 0%;
  transition: width 0.08s linear;
}

.demo-progress-pct {
  font-size: 10px;
  color: #9A9A9A;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ----- Phase Result ----- */
.demo-result-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.demo-result-img {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #F9F6F3 0%, #F2EDE8 100%);
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
  padding: 10px;
}

.demo-result-img svg {
  height: 100%;
  max-height: 140px;
  width: auto;
}

.demo-result-tag {
  font-size: 9px;
  color: #BDBDBD;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.demo-add-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex-shrink: 0;
}

/* ----- Phase Success ----- */
[data-body="success"] {
  justify-content: center;
}

.demo-success-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.demo-success-h {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.demo-success-p {
  font-size: 11px;
  color: #9A9A9A;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Responsive */
@media (max-width: 640px) {
  .demo-dress-svg { height: 130px; }
  .demo-product-name { font-size: 14px; }
  .demo-product-price { font-size: 13px; }
  .demo-panel { width: 170px; max-width: 48%; }
  .demo-sizes span { width: 24px; height: 24px; font-size: 9px; }
  .demo-ai-rings { width: 48px; height: 48px; }
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .how-steps::before {
    display: none;
  }
  .how-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  .how-step-body { flex: 1; }
  .testimonial-card { padding: 40px 36px; }
  .next-steps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .testimonial-card { padding: 32px 24px; }
  .testimonial-text { font-size: 17px; }
  .testimonial-author { flex-direction: column; gap: 12px; }
  .testimonial-divider { width: 40px; height: 1px; }
  .code-block pre { font-size: 12px; }
  .contact-book { padding: 28px 24px; }
  .faq-question { font-size: 15px; }
  .next-steps {
    grid-template-columns: 1fr;
    margin: 32px auto 0;
  }
}

/* ===== HOW STEP ICONS ===== */
.how-step-icon {
  width: 52px;
  height: 52px;
  background: #FFFFFF;
  border: 1.5px solid #E8E8E8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.how-step:hover .how-step-icon {
  border-color: #111111;
  background: #111111;
}

.how-step:hover .how-step-icon svg {
  stroke: #FFFFFF;
}

/* ===== CTA TAGLINE ===== */
.cta-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  margin-top: 18px;
  letter-spacing: 0.4px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: #FFFFFF;
  border-top: 1px solid #E8E8E8;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 -4px 24px rgba(0,0,0,.07);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.cookie-banner.hidden {
  transform: translateY(110%);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 960px;
  width: 100%;
  flex-wrap: wrap;
}

.cookie-content p {
  font-size: 13px;
  color: #9A9A9A;
  flex: 1;
  min-width: 220px;
  margin: 0;
  line-height: 1.5;
}

.cookie-content p a {
  color: #111111;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .cookie-content {
    gap: 12px;
  }
  .cookie-content p {
    min-width: 0;
  }
}
