/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
  color: #1A1A2E;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  touch-action: manipulation;
}

.hidden {
  display: none !important;
}

/* Main Container */
.nord-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================
   HEADER (matches NojuHeader)
   ============================================ */
.noju-header {
  background-color: #f5f5f5;
  padding: 8px 12px;
}

.noju-header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.exit-btn {
  display: none;
}

.noju-header-center {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.noju-logo {
  height: 20px;
  width: auto;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .noju-logo {
    height: 24px;
  }
}

.header-tagline-mobile {
  color: #666;
  font-size: 10px;
  line-height: 1.15;
}

.header-tagline-desktop {
  color: #666;
  font-size: 14px;
  display: none;
}

@media (min-width: 640px) {
  .header-tagline-mobile {
    display: none;
  }
  .header-tagline-desktop {
    display: inline;
  }
}

@media (min-width: 768px) {
  .header-tagline-desktop {
    font-size: 14px;
  }
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border: none;
  background: transparent;
  color: rgba(102, 102, 102, 0.5);
  cursor: pointer;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  transition: all 0.2s;
}

.lang-btn:hover {
  color: #666;
}

.lang-btn.active {
  background-color: rgba(255, 255, 255, 0.2);
  color: #666;
  font-weight: 700;
}

.lang-divider {
  color: rgba(102, 102, 102, 0.5);
}

/* ============================================
   HERO SECTION (white background, dark text)
   ============================================ */
.hero-section {
  background-color: #ffffff;
  padding: 16px 16px 32px;
}

@media (min-width: 640px) {
  .hero-section {
    padding: 32px 16px 48px;
  }
}

.hero-container {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
}

.nordvpn-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .nordvpn-logo-container {
    margin-bottom: 32px;
  }
}

.nordvpn-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 640px) {
  .nordvpn-logo {
    height: 96px;
  }
}

.hero-title {
  color: #1A1A2E;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-title-highlight {
  font-style: italic;
  color: #3E5FFF;
}

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

@media (min-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
}

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

.hero-subtitle {
  display: none;
}

/* Avatar Stack - hidden in Poland design, replaced by benefits carousel */
.avatar-stack {
  display: none;
}

/* VPN Benefits Carousel */
.vpn-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 0;
}

@media (min-width: 640px) {
  .vpn-benefits {
    padding: 16px 0;
  }
}

.vpn-benefit-pill {
  position: relative;
  background: #ffffff;
  border-radius: 9999px;
  padding: 8px 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 160px;
}

@media (min-width: 640px) {
  .vpn-benefit-pill {
    padding: 12px 24px;
    gap: 12px;
    min-width: 200px;
  }
}

.vpn-benefit-pill svg {
  width: 20px;
  height: 20px;
  color: #3E5FFF;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .vpn-benefit-pill svg {
    width: 24px;
    height: 24px;
  }
}

.vpn-benefit-pill span {
  font-size: 16px;
  font-weight: 500;
  color: #1A1A2E;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .vpn-benefit-pill span {
    font-size: 18px;
  }
}

@keyframes fade-slide-up {
  0% { opacity: 0; transform: translateY(10px); }
  15% { opacity: 1; transform: translateY(0); }
  85% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-10px); }
}

.benefit-fade {
  animation: fade-slide-up 3s ease-in-out;
}

/* Step Indicator (dark circles on white) */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 0;
}

@media (min-width: 640px) {
  .step-indicator {
    gap: 16px;
    padding: 24px 0;
  }
}

.step {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (min-width: 640px) {
  .step {
    gap: 8px;
  }
}

.step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

.step-circle.active {
  background-color: #1A1A2E;
  color: #ffffff;
}

.step-circle.completed {
  background-color: #22c55e;
  color: #ffffff;
}

.step-circle.pending {
  background-color: #e5e7eb;
  color: #666;
}

.step-label {
  color: #1A1A2E;
  font-size: 12px;
  font-weight: 500;
}

@media (min-width: 640px) {
  .step-label {
    font-size: 14px;
  }
}

.step-label-pending {
  color: #666;
}

.step-connector {
  width: 32px;
  height: 2px;
  background-color: #e5e7eb;
}

@media (min-width: 640px) {
  .step-connector {
    width: 48px;
  }
}

/* ============================================
   FORM CONTAINER (card style)
   ============================================ */
.form-container {
  margin-top: 0;
}

.step-content {
  transition: opacity 0.3s ease;
}

/* Phone Form Card */
.phone-form {
  width: 100%;
  max-width: 384px;
  margin: 0 auto;
}

.phone-form-card {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .phone-form-card {
    padding: 20px;
  }
}

.phone-form-card.focused {
  border-color: rgba(62, 95, 255, 0.5);
  box-shadow: 0 10px 25px rgba(62, 95, 255, 0.1);
}

.form-label {
  display: block;
  color: #1A1A2E;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  text-align: center;
}

.phone-input-container {
  display: flex;
  align-items: center;
  height: 56px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}

.phone-input-container.focused {
  border-color: #3E5FFF;
  box-shadow: 0 0 0 3px rgba(62, 95, 255, 0.2);
}

.phone-input-container.valid {
  border-color: #22c55e;
}

.phone-input-container.error {
  border-color: #ef4444;
}

/* CTA variant (bottom form) */
.phone-input-container.cta-variant {
  border: 2px solid #e5e7eb;
}

.phone-input-container.cta-variant.focused {
  border-color: #3E5FFF;
  box-shadow: 0 0 0 3px rgba(62, 95, 255, 0.1);
}

.country-code {
  display: flex;
  align-items: center;
  padding: 0 12px;
  height: 100%;
  border-right: 1px solid rgba(229, 231, 235, 0.5);
  background-color: rgba(245, 245, 245, 0.3);
  flex-shrink: 0;
  gap: 6px;
}

.country-flag {
  display: inline-block;
  width: 20px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.country-flag-top {
  width: 100%;
  height: 50%;
  background: #ffffff;
}

.country-flag-bottom {
  width: 100%;
  height: 50%;
  background: #DC143C;
}

.country-code .phone-icon {
  display: none;
}

.country-code .code {
  font-size: 18px;
  font-weight: 500;
  color: #1A1A2E;
}

.phone-input {
  flex: 1;
  height: 100%;
  padding: 0 40px 0 12px;
  font-size: 18px;
  font-weight: 500;
  border: none;
  outline: none;
  background: transparent;
  color: #1A1A2E;
  min-width: 0;
}

.phone-input::placeholder {
  color: #9ca3af;
}

/* Validation check inside input */
.input-valid-check {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-valid-check svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

/* Progress indicator */
.phone-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 8px;
}

.phone-progress-count {
  color: #666;
  transition: color 0.2s;
}

.phone-progress-count.has-input {
  color: #1A1A2E;
}

.phone-progress-remaining {
  color: #666;
}

.phone-progress-valid {
  color: #22c55e;
  font-weight: 500;
}

/* Error Message */
.error-message {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #fef2f2;
  border-radius: 8px;
  border: 1px solid #ef4444;
  padding: 8px;
  margin-top: 12px;
  color: #dc2626;
  font-size: 14px;
}

/* CTA Button (red, rounded-full) */
.cta-btn {
  width: 100%;
  margin-top: 16px;
  padding: 18px 24px;
  background-color: #E02F1F;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 10px 25px rgba(224, 47, 31, 0.3);
}

.cta-btn:hover:not(:disabled) {
  background-color: rgba(224, 47, 31, 0.9);
  box-shadow: 0 15px 35px rgba(224, 47, 31, 0.4);
}

.cta-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.cta-btn .arrow-icon {
  display: none;
}

/* Hero Info (dark text) */
.hero-info {
  margin-top: 16px;
  text-align: center;
}

.hero-price {
  font-size: 16px;
  font-weight: 600;
  color: #1A1A2E;
}

.hero-age {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

/* Trust Signals (below form card) */
.trust-signals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #666;
  font-size: 12px;
  margin-top: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.trust-check {
  width: 14px;
  height: 14px;
  color: #666;
}

/* ============================================
   PIN FORM (on white bg)
   ============================================ */
.pin-form {
  padding: 8px 0;
  max-width: 448px;
  margin: 0 auto;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.2s;
  margin-bottom: 16px;
}

.back-btn:hover {
  color: #1A1A2E;
}

.pin-header {
  text-align: center;
  margin-bottom: 24px;
}

.pin-check-row {
  display: none;
}

.pin-almost-done {
  display: none;
}

.pin-title {
  color: #1A1A2E;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pin-sent-to {
  color: #666;
  font-size: 14px;
  margin-top: 4px;
}

.pin-countdown {
  color: #666;
  font-size: 14px;
  margin-left: 8px;
}



.pin-input-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.pin-input {
  width: 100%;
  max-width: 320px;
  height: 56px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #1A1A2E;
  outline: none;
  text-transform: uppercase;
  transition: all 0.3s;
}

.pin-input::placeholder {
  color: #d1d5db;
  letter-spacing: normal;
  font-weight: 400;
  font-size: 18px;
}

.pin-input:focus {
  border-color: #3E5FFF;
  box-shadow: 0 0 0 3px rgba(62, 95, 255, 0.2);
}

.pin-input.valid {
  border-color: #22c55e;
}

.pin-input.shake {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
  20%, 40%, 60%, 80% { transform: translateX(4px); }
}

.pin-price-note {
  color: #1A1A2E;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

/* Service info box (matches Step2Page) */
.pin-service-info {
  margin-top: 24px;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 12px;
  text-align: left;
  font-size: 14px;
}

.pin-service-info-title {
  font-weight: 500;
  color: #666;
  margin-bottom: 8px;
}

.pin-service-info ul {
  color: rgba(102, 102, 102, 0.8);
  font-size: 12px;
  list-style: none;
  padding: 0;
}

.pin-service-info ul li {
  margin-bottom: 4px;
}

.pin-service-info ul li::before {
  content: "\2022 ";
}

.carrier-consent {
  margin-top: 16px;
  margin-bottom: 12px;
  padding: 12px;
  background-color: #D6C5F0;
  border-radius: 8px;
}

.carrier-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  color: #5C1B80;
  cursor: pointer;
  line-height: 1.5;
}

.carrier-consent-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #5C1B80;
}

.carrier-consent-label a {
  color: #5C1B80;
  text-decoration: underline;
}

.carrier-footer {
  margin-top: 16px;
  font-size: 12px;
  color: #666666;
  text-align: center;
  padding: 0 8px;
}

/* ============================================
   PROCESSING STEP (Step 2)
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.processing-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  padding: 24px 32px;
  max-width: 448px;
  margin: 0 auto;
  animation: fadeIn 0.3s ease-out;
}

.processing-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #1A1A2E;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .processing-title {
    font-size: 24px;
  }
}

/* Timer Container */
.timer-container {
  position: relative;
  width: 144px;
  height: 144px;
  margin: 0 auto 32px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.05); }
}

.timer-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: rgba(62, 95, 255, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

.timer-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  position: relative;
  z-index: 1;
}

.timer-progress {
  stroke-dasharray: 326.73;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
  filter: drop-shadow(0 0 6px rgba(62, 95, 255, 0.5));
}

.timer-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timer-number {
  font-size: 36px;
  font-weight: 700;
  color: #1A1A2E;
}

.timer-label {
  font-size: 12px;
  color: #666;
}

/* Processing Steps */
.processing-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.processing-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.processing-step.active {
  background-color: rgba(62, 95, 255, 0.1);
}

.processing-step.completed {
  background-color: rgba(34, 197, 94, 0.1);
}

.processing-step.pending {
  background-color: #f5f5f5;
}

.processing-step-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.processing-step.active .processing-step-circle {
  background-color: #3E5FFF;
  color: #ffffff;
}

.processing-step.completed .processing-step-circle {
  background-color: #22c55e;
  color: #ffffff;
}

.processing-step.pending .processing-step-circle {
  background-color: #e5e7eb;
  color: #666;
}

.processing-step-circle .spinner {
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
}

.processing-step-circle .check-icon {
  width: 16px;
  height: 16px;
}

.processing-step span {
  font-size: 14px;
  font-weight: 500;
}

.processing-step.active span {
  color: #1A1A2E;
}

.processing-step.completed span {
  color: #22c55e;
}

.processing-step.pending span {
  color: #666;
}

.processing-step.error {
  background-color: rgba(224, 47, 31, 0.1);
}

.processing-step.error .processing-step-circle {
  background-color: #E02F1F;
  color: #ffffff;
}

.processing-step.error span {
  color: #E02F1F;
}

.processing-error-message {
  text-align: center;
  color: #E02F1F;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  padding: 12px;
  background-color: rgba(224, 47, 31, 0.1);
  border-radius: 8px;
}

.processing-notice {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: 16px;
}

/* ============================================
   SUCCESS STEP (Step 3)
   ============================================ */
.success-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  padding: 24px 32px;
  max-width: 448px;
  margin: 0 auto;
  animation: fadeIn 0.3s ease-out;
}

.success-icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.success-glow {
  position: absolute;
  inset: 0;
  background-color: rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  filter: blur(16px);
  animation: pulse 2s ease-in-out infinite;
  width: 80px;
  height: 80px;
  margin: auto;
}

.success-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.success-icon svg {
  width: 40px;
  height: 40px;
  color: #ffffff;
}

.success-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #1A1A2E;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .success-title {
    font-size: 30px;
  }
}

.success-subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 32px;
}

/* Completed Steps */
.completed-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.completed-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.completed-step-icon {
  width: 20px;
  height: 20px;
  background-color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.completed-step-icon svg {
  width: 12px;
  height: 12px;
  color: #ffffff;
}

.completed-step span {
  color: #1A1A2E;
}

.redirect-text {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 16px;
}

/* ============================================
   FEATURES SECTION (dark navy)
   ============================================ */
.features-section {
  background-color: #1A1A2E;
  padding: 64px 16px;
}

.features-container {
  max-width: 1152px;
  margin: 0 auto;
}

.features-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .features-title {
    font-size: 30px;
  }
}

.features-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  max-width: 768px;
  margin: 0 auto 48px;
  font-size: 14px;
  line-height: 1.6;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

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

.feature-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: #3E5FFF;
  stroke-width: 1.5;
}

.feature-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* Features CTA button */
.features-cta {
  text-align: center;
  margin-top: 40px;
}

.features-cta .cta-btn {
  display: inline-flex;
  width: auto;
  padding: 18px 40px;
}

@media (min-width: 640px) {
  .features-cta .cta-btn {
    width: auto;
  }
}

/* ============================================
   TESTIMONIALS SECTION (white bg)
   ============================================ */
.testimonials-section {
  background-color: #ffffff;
  padding: 64px 16px;
}

.testimonials-container {
  max-width: 896px;
  margin: 0 auto;
}

.testimonials-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #1A1A2E;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .testimonials-title {
    font-size: 30px;
  }
}

.testimonials-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 48px;
  font-size: 14px;
}

.testimonials-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow: visible;
    padding-bottom: 0;
  }
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
  flex-shrink: 0;
  width: 280px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  text-align: left;
}

@media (min-width: 768px) {
  .testimonial-card {
    width: auto;
  }
}

.testimonial-quote-mark {
  display: none;
}

.testimonial-stars {
  display: none;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
  color: #1A1A2E;
}

.testimonial-location {
  font-size: 12px;
  color: #3E5FFF;
  font-weight: 500;
}

.testimonial-text {
  font-size: 14px;
  color: #666;
  font-style: normal;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Testimonials CTA button */
.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}

.testimonials-cta .cta-btn {
  display: inline-flex;
  width: auto;
  padding: 18px 40px;
}

@media (min-width: 640px) {
  .testimonials-cta .cta-btn {
    width: auto;
  }
}

/* ============================================
   BOTTOM CTA SECTION (hero image + form)
   ============================================ */
.cta-section {
  background-color: #ffffff;
  padding: 48px 16px 64px;
}

.cta-container {
  max-width: 896px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .cta-container {
    flex-direction: row;
  }
}

.cta-image-container {
  flex-shrink: 0;
  position: relative;
}

.cta-image-circle {
  width: 288px;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

@media (min-width: 768px) {
  .cta-image-circle {
    width: 384px;
  }
}

.cta-woman-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

/* Floating dots decoration */
.cta-image-container::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 80px;
  width: 16px;
  height: 16px;
  background: #3E5FFF;
  border-radius: 50%;
  opacity: 0.6;
}

.cta-image-container::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 128px;
  width: 12px;
  height: 12px;
  background: #3E5FFF;
  border-radius: 50%;
  opacity: 0.4;
}

.cta-form-container {
  flex: 1;
  width: 100%;
  max-width: 384px;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-form-container {
    text-align: left;
  }
}

.cta-phone-form .form-label {
  color: #1A1A2E;
}

.cta-description {
  color: #1A1A2E;
  font-size: 14px;
  margin-bottom: 8px;
}

.cta-pricing {
  color: #1A1A2E;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.cta-legal-links {
  display: none;
}

/* ============================================
   FAQ SECTION (individual cards)
   ============================================ */
.faq-section {
  background-color: rgba(245, 245, 245, 0.3);
  padding: 64px 16px;
}

.faq-container {
  max-width: 576px;
  margin: 0 auto;
}

.faq-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #1A1A2E;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .faq-title {
    font-size: 30px;
  }
}

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

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 0 20px;
  transition: box-shadow 0.2s;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.faq-item.open {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: #1A1A2E;
  line-height: 1.5;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #3E5FFF;
}

.faq-question:hover svg {
  color: #3E5FFF;
}

.faq-question svg {
  width: 16px;
  height: 16px;
  color: #1A1A2E;
  flex-shrink: 0;
  transition: transform 0.3s, color 0.2s;
}

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

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  overflow: hidden;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 0;
  transition: padding 0.3s;
}

.faq-item.open .faq-answer > p {
  padding-bottom: 20px;
}

/* FAQ CTA button */
.faq-cta {
  text-align: center;
  margin-top: 40px;
}

.faq-cta .cta-btn {
  display: inline-flex;
  width: auto;
  padding: 18px 40px;
}

@media (min-width: 640px) {
  .faq-cta .cta-btn {
    width: 100%;
    max-width: none;
  }
}

/* ============================================
   FOOTER (dark navy)
   ============================================ */
.footer {
  background-color: #1A1A2E;
  padding: 32px 16px;
}

.footer-container {
  max-width: 1152px;
  margin: 0 auto;
  text-align: center;
}

.footer-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.dcb-text, .checkout-text {
  font-weight: 700;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 16px;
  margin-bottom: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links .link-divider {
  color: rgba(255, 255, 255, 0.4);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-bottom: 4px;
}

.footer-trademark {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* ============================================
   DISCLAIMER
   ============================================ */
.disclaimer-container {
  margin-top: 16px;
}

.disclaimer-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.disclaimer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  margin-bottom: 8px;
}

@media (min-width: 640px) {
  .disclaimer-contact {
    flex-direction: row;
    gap: 16px;
  }
}

.disclaimer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.disclaimer-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.disclaimer-text-light {
  color: #666;
}

.disclaimer-text-dark {
  color: #666;
}

.disclaimer-mono {
  font-family: monospace;
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scrollbar hide for testimonials */
.testimonials-grid::-webkit-scrollbar {
  display: none;
}

.testimonials-grid {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Float animation for hero image */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* PIN complaints text */
.pin-complaints {
  margin-top: 16px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

/* ============================================
   CONSENT MODAL
   ============================================ */
.consent-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 16px;
}

.consent-card {
  background: #ffffff;
  border-radius: 16px;
  max-width: 448px;
  width: 100%;
  padding: 24px;
  position: relative;
  animation: fadeIn 0.3s ease-out;
}

.consent-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.consent-close:hover {
  color: #1A1A2E;
}

.consent-title {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 16px;
}

.consent-body {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.consent-body p {
  margin-bottom: 16px;
}

.consent-link {
  color: #3E5FFF;
  text-decoration: underline;
}

.consent-confirm-btn {
  width: 100%;
  padding: 16px 24px;
  background-color: #1A1A2E;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background-color 0.2s;
}

.consent-confirm-btn:hover {
  background-color: rgba(26, 26, 46, 0.9);
}

.consent-confirm-btn input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #ffffff;
  cursor: pointer;
}

.consent-body .text-link,
.consent-body a {
  color: #F14C01;
  text-decoration: underline;
}

/* ============================================
   LEGAL / FOOTER PAGES
   ============================================ */
.legal-page-main {
  flex: 1;
  padding: 32px 16px;
  max-width: 896px;
  margin: 0 auto;
  width: 100%;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3E5FFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: text-decoration 0.2s;
}

.legal-back-link:hover {
  text-decoration: underline;
}

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

.legal-logo-center {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.legal-logo-center img {
  height: 64px;
  width: auto;
}

@media (min-width: 640px) {
  .legal-logo-center img {
    height: 80px;
  }
}

.legal-title {
  font-size: 30px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 32px;
}

.legal-updated {
  color: #666;
  margin-bottom: 24px;
  font-size: 14px;
}

.legal-content {
  color: #1A1A2E;
  line-height: 1.65;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 28px 0 12px;
  color: #1A1A2E;
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0 8px;
  color: #1A1A2E;
}

.legal-content p {
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: #3E5FFF;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
}

.legal-content th,
.legal-content td {
  border: 1px solid #e5e7eb;
  padding: 8px 12px;
  text-align: left;
  font-size: 14px;
}

.legal-content th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.legal-form-box {
  background-color: #f5f5f5;
  padding: 16px;
  border-radius: 12px;
  margin: 12px 0 20px;
  font-style: italic;
  line-height: 1.8;
}

.legal-grid {
  display: grid;
  gap: 32px;
}

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

.legal-info-card {
  background-color: #f5f5f5;
  padding: 24px;
  border-radius: 12px;
}

.legal-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 16px 0;
}

.legal-stat {
  text-align: center;
  padding: 16px;
  background-color: #f5f5f5;
  border-radius: 12px;
}

.legal-stat-number {
  font-size: 30px;
  font-weight: 700;
  color: #3E5FFF;
  margin-bottom: 4px;
}

.legal-stat-label {
  font-size: 13px;
  color: #666;
}
