/* ============================================
   MAXIS-HOTLINK-3 STATIC PAGE STYLES
   Mobile-first | Breakpoints: 640px (sm), 1024px (lg)
   ============================================ */

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

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

.hidden {
  display: none !important;
}

/* ============================================
   KEYFRAMES / ANIMATIONS
   ============================================ */
@keyframes maxis-badge-pulse {
  0%, 100% {
    box-shadow: 0 4px 16px hsla(27, 100%, 50%, 0.25), 0 0 8px hsla(27, 100%, 50%, 0.15);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 32px hsla(27, 100%, 50%, 0.55), 0 0 20px hsla(27, 100%, 50%, 0.35);
    transform: scale(1.05);
  }
}

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

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

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

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

.animate-fade-in {
  animation: fade-in 0.4s ease-out forwards;
}

.spinner {
  animation: spin 1s linear infinite;
}

/* ============================================
   APP LAYOUT
   ============================================ */
.maxis-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #EFF8F2;
}

.maxis-main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4px 16px 4px;
}

@media (min-width: 640px) {
  .maxis-main {
    align-items: center;
    padding: 16px;
  }
}

@media (min-width: 1024px) {
  .maxis-main {
    align-items: flex-start;
    padding: 24px 32px 8px;
  }
}

.maxis-content-wrapper {
  width: 100%;
  max-width: 1152px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

/* ============================================
   URGENCY BANNER
   ============================================ */
.urgency-banner {
  position: relative;
  padding: 12px 0 8px;
  width: 100%;
  max-width: 448px;
  margin: 0 auto;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (min-width: 1024px) {
  .urgency-banner {
    max-width: 880px;
    justify-content: center;
  }
}

.urgency-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 640px) {
  .urgency-banner-inner {
    gap: 16px;
  }
}

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

.urgency-live-dot-wrapper {
  position: relative;
  display: flex;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.urgency-live-dot-ping {
  position: absolute;
  display: inline-flex;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background-color: #FF7300;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.urgency-live-dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: #FF7300;
  box-shadow: 0 4px 20px hsla(27, 100%, 50%, 0.2);
}

.urgency-exclusive {
  color: #FF7300;
  font-weight: 500;
}

.urgency-viewers {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #374151;
}

.urgency-users-icon {
  color: #FF7300;
  flex-shrink: 0;
}

/* Language Toggle */
.urgency-lang-toggle {
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .urgency-lang-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

.lang-toggle-group {
  display: flex;
  align-items: center;
  gap: 2px;
  border-radius: 9999px;
  padding: 2px;
  border: 1px solid rgba(229, 231, 235, 0.8);
  background-color: rgba(210, 215, 220, 0.3);
  font-size: 12px;
}

.lang-toggle-btn {
  padding: 4px 8px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-toggle-btn:hover {
  color: #374151;
}

.lang-toggle-btn.active {
  background-color: #ffffff;
  color: #1f2937;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* ============================================
   TWO-COLUMN GRID
   ============================================ */
.maxis-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .maxis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
    max-width: 880px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Left Column */
.maxis-left-col {
  width: 100%;
  max-width: 448px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .maxis-left-col {
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
}

/* Right Column */
.maxis-right-col {
  display: none;
}

@media (min-width: 1024px) {
  .maxis-right-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
}

/* ============================================
   MAIN CARD
   ============================================ */
.main-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
  .main-card {
    padding: 20px;
    border-radius: 12px;
  }
}

@media (min-width: 1024px) {
  .main-card {
    padding: 24px;
  }
}

/* ============================================
   BRAND HEADER
   ============================================ */
.brand-header {
  margin-bottom: 20px;
  text-align: center;
}

@media (min-width: 640px) {
  .brand-header {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .brand-header {
    margin-bottom: 12px;
  }
}

.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.brand-logo-divider {
  height: 32px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .brand-logo-divider {
    height: 40px;
  }
}

@media (min-width: 640px) {
  .brand-logos {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .brand-logos {
    margin-bottom: 32px;
  }
}

.brand-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .brand-logo-img {
    height: 48px;
  }
}

.brand-headline-area {
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .brand-headline-area {
    min-height: 56px;
  }
}

@media (min-width: 1024px) {
  .brand-headline-area {
    min-height: 64px;
  }
}

.brand-headline {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .brand-headline {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .brand-headline {
    font-size: 24px;
  }
}

.headline-free {
  color: #FF7300;
}

.brand-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-top: 6px;
}

@media (min-width: 640px) {
  .brand-subtitle {
    font-size: 14px;
    margin-top: 8px;
  }
}

@media (min-width: 1024px) {
  .brand-subtitle {
    margin-top: 4px;
  }
}

/* ============================================
   TRUST BADGE
   ============================================ */
.trust-badge-area {
  margin-top: 12px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media (min-width: 640px) {
  .trust-badge-area {
    margin-top: 16px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .trust-badge-area {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 12px;
  white-space: nowrap;
  color: #ffffff;
  font-weight: 600;
  background-color: #FF7300;
  box-shadow: 0 4px 20px hsla(27, 100%, 50%, 0.2);
  animation: maxis-badge-pulse 1.8s ease-in-out infinite;
}

.trust-badge-icon {
  color: #ffffff;
  flex-shrink: 0;
}

/* ============================================
   PROGRESS INDICATOR
   ============================================ */
.progress-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .progress-indicator {
    gap: 16px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .progress-indicator {
    margin-bottom: 12px;
  }
}

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

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

.step-circle {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
}

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

.step-active {
  background-color: #FF7300;
  color: #ffffff;
}

.step-pending {
  background-color: #e5e7eb;
  color: #6b7280;
}

.step-completed {
  background-color: #FF7300;
  color: #ffffff;
}

.step-connector {
  flex: 1;
  height: 1px;
  min-width: 16px;
  background-color: #e5e7eb;
  transition: background-color 0.3s;
}

.step-connector.connector-active {
  background-color: #FF7300;
}

.step-label {
  font-size: 14px;
}

.step-label-active {
  color: #1f2937;
  font-weight: 500;
}

.step-label-pending {
  color: #6b7280;
}

/* ============================================
   STEP CONTENT AREA
   ============================================ */
.step-content {
  min-height: 200px;
}

@media (min-width: 640px) {
  .step-content {
    min-height: 220px;
  }
}

@media (min-width: 1024px) {
  .step-content {
    min-height: 180px;
  }
}

/* ============================================
   PHONE FORM (Step 1)
   ============================================ */
.phone-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-label {
  font-size: 12px;
  color: #6b7280;
}

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

.phone-input-row {
  display: flex;
  transition: all 0.2s;
}

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

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

.phone-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 48px;
  border-radius: 8px 0 0 8px;
  border: 1px solid #e5e7eb;
  border-right: 0;
  background-color: rgba(210, 215, 220, 0.3);
  color: #1f2937;
  font-weight: 500;
  font-size: 16px;
  flex-shrink: 0;
}

.phone-input {
  flex: 1;
  height: 48px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  color: #1f2937;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 0;
}

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

.phone-input:focus {
  border-color: #FF7300;
  box-shadow: 0 0 0 3px rgba(64, 199, 6, 0.2);
}

.phone-input.input-error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

/* Error message */
.error-message {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #ef4444;
}

.error-icon {
  flex-shrink: 0;
  color: #ef4444;
}

/* Security note */
.security-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: -8px;
}

/* CTA Button */
.cta-btn {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background-color: #9CA2AD;
  cursor: not-allowed;
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.05em;
}

.cta-btn:not(:disabled) {
  background-color: #3B4B5F;
  cursor: pointer;
}

.cta-btn:not(:disabled):hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.cta-btn:not(:disabled):active {
  transform: scale(0.98);
}

.cta-btn:disabled {
  opacity: 0.5;
}

.cta-btn-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-arrow {
  transition: transform 0.2s;
}

.cta-btn:not(:disabled):hover .cta-arrow {
  transform: translateX(4px);
}

.cta-btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Pricing text */
.pricing-text {
  text-align: center;
  font-size: 12px;
  color: #1f2937;
  font-weight: 600;
}

.pricing-save {
  color: #FF7300;
}

/* Trust elements */
.trust-elements {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  color: #374151;
}

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

.trust-icon {
  color: #FF7300;
  flex-shrink: 0;
}

/* ============================================
   OTP FORM (Step 2)
   ============================================ */
.otp-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .otp-wrapper {
    gap: 20px;
  }
}

.otp-header {
  text-align: center;
}

.otp-sent-text {
  font-size: 10px;
  color: #6b7280;
}

@media (min-width: 640px) {
  .otp-sent-text {
    font-size: 14px;
  }
}

.otp-phone-display {
  font-weight: 500;
  color: #1f2937;
}

.otp-label {
  display: block;
  text-align: center;
  font-size: 10px;
  color: #6b7280;
}

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

.otp-input-group {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
}

.pin-single-input {
  width: 100%;
  height: 48px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  letter-spacing: 0.1em;
}

.pin-single-input:focus {
  border-color: #FF7300;
  box-shadow: 0 0 0 3px rgba(64, 199, 6, 0.2);
}

.pin-single-input.valid {
  border-color: #FF7300;
}

.pin-single-input.invalid,
.pin-single-input.shake {
  border-color: #ef4444;
}

/* OTP Actions */
.otp-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.resend-area {
  text-align: center;
}

.resend-timer {
  font-size: 12px;
  color: #6b7280;
}

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

.resend-countdown {
  color: #FF7300;
  font-weight: 500;
}

.resend-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: none;
  background: transparent;
  color: #FF7300;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s;
}

@media (min-width: 640px) {
  .resend-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

.resend-btn:hover {
  background-color: rgba(64, 199, 6, 0.1);
}

.resend-icon {
  color: #FF7300;
}

.back-btn {
  width: 100%;
  padding: 4px 0;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 12px;
  cursor: pointer;
  transition: color 0.2s;
}

@media (min-width: 640px) {
  .back-btn {
    font-size: 14px;
    padding: 8px 0;
  }
}

.back-btn:hover {
  color: #374151;
}

/* ============================================
   VALUE PROPOSITION (Mobile Accordion)
   ============================================ */
.value-prop-mobile {
  margin-top: 16px;
}

@media (min-width: 640px) {
  .value-prop-mobile {
    display: none;
  }
}

.vp-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  background-color: rgba(210, 215, 220, 0.3);
  font-size: 12px;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  text-align: left;
}

.vp-chevron {
  color: #6b7280;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.vp-chevron.rotated {
  transform: rotate(180deg);
}

.vp-accordion-body {
  display: grid;
  transition: grid-template-rows 0.3s ease-out, opacity 0.3s ease-out;
}

.vp-accordion-body.collapsed {
  grid-template-rows: 0fr;
  opacity: 0;
}

.vp-accordion-body.expanded {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 8px;
}

.vp-list {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vp-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(229, 231, 235, 0.3);
  background-color: rgba(210, 215, 220, 0.3);
}

.vp-icon-circle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background-color: rgba(64, 199, 6, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF7300;
}

.vp-text h3 {
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
}

.vp-text p {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
  margin-top: 2px;
}

/* ============================================
   MOBILE TESTIMONIAL STRIP
   ============================================ */
.mobile-testimonial-strip {
  display: none;
}

.mts-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.mts-inner:active {
  background: rgba(255, 255, 255, 0.7);
}

.mts-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(64, 199, 6, 0.2);
  margin-top: 2px;
}

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

.mts-quote-area {
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  max-height: 20px;
}

.mts-quote-area.expanded {
  max-height: 160px;
}

.mts-quote {
  font-size: 14px;
  color: #374151;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mts-quote-area.expanded .mts-quote {
  white-space: normal;
}

.mts-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.mts-name {
  font-size: 12px;
  color: #6b7280;
}

.mts-stars {
  display: flex;
  color: #f97316;
}

.mts-more {
  margin-left: auto;
  font-size: 12px;
  color: #9ca3af;
}

/* ============================================
   WHY NORDVPN CARD (Desktop / Tablet)
   ============================================ */
.why-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  padding: 16px 16px 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .why-card {
    padding: 14px 14px 14px;
  }
}

.why-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  text-align: center;
}

@media (min-width: 1024px) {
  .why-card-title {
    margin-bottom: 6px;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.why-item {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(229, 231, 235, 0.3);
  background-color: rgba(210, 215, 220, 0.3);
  transition: opacity 0.2s;
}

.why-item:hover {
  opacity: 0.8;
}

.why-icon-circle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background-color: rgba(64, 199, 6, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF7300;
}

.why-text {
  min-width: 0;
  flex: 1;
}

.why-text h4 {
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.3;
}

.why-text p {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.4;
  margin-top: 2px;
}

/* ============================================
   TESTIMONIAL CARD (Desktop / Tablet)
   ============================================ */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
  .testimonial-card {
    padding: 12px;
    flex: 1;
  }
}

.testimonial-title {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  text-align: center;
}

@media (min-width: 1024px) {
  .testimonial-title {
    margin-bottom: 8px;
  }
}

.testimonial-body {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 0;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .testimonial-body {
    flex: 1;
  }
}

.testimonial-inner {
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(229, 231, 235, 0.3);
  background-color: rgba(210, 215, 220, 0.3);
  display: flex;
  flex-direction: column;
  animation: fade-in 0.4s ease-out forwards;
}

@media (min-width: 1024px) {
  .testimonial-inner {
    padding: 12px;
    height: 100%;
  }
}

.testimonial-top {
  margin-bottom: 12px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid rgba(64, 199, 6, 0.2);
}

.testimonial-user-info {
  min-width: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.3;
}

.testimonial-handle-stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-handle {
  font-size: 12px;
  color: #6b7280;
}

.testimonial-stars {
  display: flex;
  color: #f97316;
}

.testimonial-quote {
  flex: 1;
  font-size: 14px;
  color: #1f2937;
  line-height: 1.6;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

@media (min-width: 1024px) {
  .testimonial-dots {
    margin-top: 8px;
  }
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  border: none;
  background-color: #d1d5db;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}

.dot:hover {
  background-color: #9ca3af;
}

.dot.active {
  background-color: #FF7300;
  transform: scale(1.1);
  box-shadow: 0 4px 20px hsla(27, 100%, 50%, 0.2);
}

/* ============================================
   TABLET EXTRAS (sm to lg)
   ============================================ */
.tablet-extras {
  display: none;
}

@media (max-width: 1023px) {
  .tablet-extras {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 448px;
    margin: 16px auto 0;
  }
}

@media (max-width: 639px) {
  .tablet-extras .why-card {
    display: none;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.maxis-footer {
  margin-top: 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .maxis-footer {
    margin-top: 16px;
  }
}

@media (min-width: 1024px) {
  .maxis-footer {
    margin-top: 8px;
  }
}

.footer-secure {
  font-size: 12px;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footer-lock-icon {
  color: #FF7300;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 12px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-dot {
  color: #9ca3af;
}

/* ============================================
   TOAST CONTAINER
   ============================================ */
.toast-container {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 360px;
}

@media (max-width: 639px) {
  .toast-container {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fade-in 0.3s ease-out;
  transition: opacity 0.3s, transform 0.3s;
}

.toast-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #FF7300;
}

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

.toast-title {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
}

.toast-desc {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

.toast-close {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  line-height: 1;
}

.toast-close:hover {
  color: #6b7280;
}

/* ============================================
   FADE TRANSITION (step switching)
   ============================================ */
.fade-enter {
  opacity: 0;
  transform: translateY(8px);
}

.fade-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.3s;
}

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

.fade-exit-active {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
}

/* ============================================
   SUCCESS SCREEN
   ============================================ */

.success-wrapper {
  text-align: center;
  padding: 16px 0;
  animation: fade-in-up 0.5s ease-out forwards;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.success-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #FF7300;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px hsl(104 94% 40% / 0.3);
  animation: pulse-glow 2s ease-in-out infinite;
}

@media (min-width: 640px) {
  .success-icon-circle {
    width: 80px;
    height: 80px;
  }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px hsl(104 94% 40% / 0.3); }
  50% { box-shadow: 0 4px 40px hsl(104 94% 40% / 0.5); }
}

.success-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

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

.success-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #FF7300;
  margin-bottom: 4px;
}

@media (min-width: 640px) {
  .success-subtitle { font-size: 16px; }
}

.success-phone {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 20px;
}

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

.success-progress-section {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .success-progress-section { padding: 24px; }
}

.success-status {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 8px;
}

@media (min-width: 640px) {
  .success-status { font-size: 16px; }
}

.progress-bar-track {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .progress-bar-track { height: 12px; }
}

.progress-bar-fill {
  height: 100%;
  background: #FF7300;
  border-radius: 4px;
  width: 0%;
  transition: width 0.1s linear;
}

.success-redirect-note {
  font-size: 12px;
  color: #6b7280;
}

.success-redirect-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FF7300;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 8px;
}

.success-redirect-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.success-fallback-text {
  font-size: 10px;
  color: #6b7280;
}

@media (min-width: 640px) {
  .success-fallback-text { font-size: 12px; }
}

/* Confetti */
.confetti-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 50;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  animation: confetti-fall linear forwards;
}

@media (min-width: 640px) {
  .confetti-piece { width: 12px; height: 12px; }
}

@keyframes confetti-fall {
  0% { transform: translateY(-100%) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}
