:root {
  --color-primary: #ea580c;
  --color-primary-hover: #c2410c;
  --color-primary-light: #fed7aa;

  --color-success: #16a34a;
  --color-success-hover: #15803d;
  --color-success-light: #bbf7d0;

  --color-error: #dc2626;
  --color-error-light: #fecaca;

  --color-text: #111827;
  --color-text-muted: #6b7280;
  --color-text-light: #9ca3af;

  --color-bg: #ffffff;
  --color-bg-muted: #f3f4f6;
  --color-bg-disabled: #e5e7eb;

  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;

  --gradient-bg: linear-gradient(to bottom, #fffbeb, #ffedd5, #fef3c7);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;

  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: var(--color-text);
  background: var(--gradient-bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.container-sm {
  max-width: 420px;
}

.container-md {
  max-width: 640px;
}

.container-lg {
  max-width: 1024px;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

.flex-1 {
  flex: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.space-y-2 > * + * { margin-top: var(--space-2); }
.space-y-3 > * + * { margin-top: var(--space-3); }
.space-y-4 > * + * { margin-top: var(--space-4); }
.space-y-6 > * + * { margin-top: var(--space-6); }
.space-y-8 > * + * { margin-top: var(--space-8); }

.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

.px-1 { padding-left: var(--space-1); padding-right: var(--space-1); }
.px-2 { padding-left: var(--space-2); padding-right: var(--space-2); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }

.py-1 { padding-top: var(--space-1); padding-bottom: var(--space-1); }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-3 { padding-top: var(--space-3); padding-bottom: var(--space-3); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }

.pt-4 { padding-top: var(--space-4); }
.pb-2 { padding-bottom: var(--space-2); }
.pb-8 { padding-bottom: var(--space-8); }
.pb-24 { padding-bottom: var(--space-24); }

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }

.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-2 { margin-top: var(--space-2); }
.mt-6 { margin-top: var(--space-6); }

.w-full { width: 100%; }
.w-5 { width: 1.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }

.h-full { height: 100%; }
.h-5 { height: 1.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }

.min-h-screen {
  min-height: 100vh;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-4xl { font-size: var(--font-size-4xl); }
.text-5xl { font-size: var(--font-size-5xl); }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gray-900 { color: var(--color-text); }
.text-gray-600 { color: var(--color-text-muted); }
.text-gray-500 { color: var(--color-text-light); }
.text-white { color: #ffffff; }
.text-orange-600 { color: var(--color-primary); }
.text-green-600 { color: var(--color-success); }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }
.text-orange-700 { color: #c2410c; }
.text-orange-800 { color: #9a3412; }

.leading-relaxed {
  line-height: 1.625;
}

.italic {
  font-style: italic;
}

.bg-white { background-color: var(--color-bg); }
.bg-secondary { background-color: #f3f4f6; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-300 { background-color: var(--color-bg-disabled); }
.bg-orange-50 { background-color: #fff7ed; }
.bg-orange-500 { background-color: #f97316; }
.bg-orange-600 { background-color: var(--color-primary); }
.bg-amber-50 { background-color: #fffbeb; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-600 { background-color: var(--color-success); }
.bg-blue-50 { background-color: #eff6ff; }

.bg-white-80 {
  background-color: rgba(255, 255, 255, 0.8);
}

.bg-white-60 {
  background-color: rgba(255, 255, 255, 0.6);
}

.backdrop-blur {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.border { border: 1px solid var(--color-border); }
.border-2 { border: 2px solid var(--color-border); }
.border-t { border-top: 1px solid var(--color-border); }
.border-b { border-bottom: 1px solid var(--color-border); }

.border-gray-200 { border-color: var(--color-border); }
.border-orange-200 { border-color: #fed7aa; }
.border-orange-500 { border-color: #f97316; }
.border-green-200 { border-color: #bbf7d0; }
.border-green-500 { border-color: #22c55e; }
.border-blue-200 { border-color: #bfdbfe; }

.rounded { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.overflow-hidden {
  overflow: hidden;
}

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }

.z-50 { z-index: 50; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-success);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-success-hover);
  box-shadow: var(--shadow-lg);
}

.btn-primary:disabled {
  background-color: var(--color-bg-disabled);
  color: var(--color-text-light);
  cursor: not-allowed;
}

.btn-large {
  height: 3.5rem;
  font-size: var(--font-size-base);
}

.btn-xl {
  height: 4rem;
  font-size: var(--font-size-lg);
}

.btn-block {
  display: flex;
  width: 100%;
}

.card {
  background: var(--color-bg);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-8);
}

.option-card {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: left;
  width: 100%;
}

.option-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.option-card.selected {
  border-color: var(--color-primary);
  background-color: rgba(234, 88, 12, 0.05);
  box-shadow: var(--shadow-lg);
}

.option-card .emoji {
  font-size: var(--font-size-2xl);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.25rem;
}

.option-card .label {
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.option-card .description {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.option-card.selected .label {
  color: var(--color-primary);
}

.progress-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-6) var(--space-4);
}

.progress-bar-inner {
  max-width: 480px;
  margin: 0 auto;
}

.progress-milestone {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
  border-radius: 9999px;
  display: inline-block;
  width: 100%;
}

.progress-checkpoints {
  position: relative;
  height: 2.5rem;
  display: flex;
  align-items: center;
}

.progress-checkpoints::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.08);
  transform: translateY(-50%);
  border-radius: 2px;
}

.checkpoint-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-success) 0%, var(--color-primary) 100%);
  transform: translateY(-50%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  z-index: 1;
}

.checkpoint {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.3s ease;
}

.checkpoint-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.15);
  border: 2px solid white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.checkpoint.active .checkpoint-dot {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--color-success) 0%, var(--color-primary) 100%);
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
  animation: pulseCheckpoint 0.5s ease-out;
}

@keyframes pulseCheckpoint {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: var(--space-4);
}

.sticky-bottom-inner {
  max-width: 480px;
  margin: 0 auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

.animate-fade-out-down {
  animation: fadeOutDown 0.3s ease-in forwards;
}

.animate-fade-in-scale {
  animation: fadeInScale 0.3s ease-out forwards;
  opacity: 0;
}

.animate-delay-1 { animation-delay: 0.05s; }
.animate-delay-2 { animation-delay: 0.1s; }
.animate-delay-3 { animation-delay: 0.15s; }
.animate-delay-4 { animation-delay: 0.2s; }
.animate-delay-5 { animation-delay: 0.25s; }
.animate-delay-6 { animation-delay: 0.3s; }
.animate-delay-7 { animation-delay: 0.35s; }
.animate-delay-8 { animation-delay: 0.4s; }

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

.animate-spin {
  animation: spin 1s linear infinite;
}

.transition {
  transition: all var(--transition-base);
}

.transition-all {
  transition: all var(--transition-base);
}

.transition-fast {
  transition: all var(--transition-fast);
}

.quiz-container {
  max-width: 480px;
  margin: 0 auto;
  padding: var(--space-4);
  padding-top: var(--space-8);
  padding-bottom: var(--space-24);
}

.quiz-step {
  margin-bottom: var(--space-6);
}

.quiz-title {
  font-size: var(--font-size-2xl);
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-4);
}

.quiz-subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: var(--space-6);
}

.input {
  width: 100%;
  padding: var(--space-4);
  font-size: var(--font-size-base);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.input-error {
  border-color: var(--color-error);
}

.error-message {
  color: var(--color-error);
  font-size: var(--font-size-sm);
  margin-top: var(--space-2);
}

.checkbox {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--color-text-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.checkbox.checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:text-3xl {
    font-size: var(--font-size-3xl);
  }

  .md\:text-4xl {
    font-size: var(--font-size-4xl);
  }

  .md\:text-lg {
    font-size: var(--font-size-lg);
  }
}

.hidden {
  display: none !important;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.line-through {
  text-decoration: line-through;
}

.underline {
  text-decoration: underline;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.checkout-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 50%, #ffedd5 100%);
}

.checkout-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #16a34a 0%, #15803d 100%);
  color: white;
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.checkout-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.checkout-banner-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkout-banner-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.checkout-banner-discount {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

.checkout-banner-separator {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.5;
}

.checkout-banner-timer {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
}

.checkout-banner-timer-label {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
}

.checkout-banner-timer-value {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.checkout-content {
  max-width: 64rem;
  margin: 0 auto;
  padding: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.checkout-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .checkout-title {
    font-size: 1.875rem;
  }
}

.promo-code-container {
  display: inline-flex;
  flex-direction: column;
  border-radius: 12px;
  background-color: rgba(16, 185, 129, 0.1);
  overflow: hidden;
}

.promo-code-message {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  gap: 8px;
}

.promo-message-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #065f46;
}

.promo-code-divider {
  position: relative;
  display: flex;
  border-top: 1px solid #d1ecdd;
}

.promo-divider-notch {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fffbeb;
  border-radius: 50%;
  top: -10px;
}

.promo-divider-notch-left {
  left: -10px;
}

.promo-divider-notch-right {
  right: -10px;
}

.promo-code-details {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  gap: 16px;
  line-height: 24px;
}

.promo-code-box {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid #d1ecdd;
  border-radius: 12px;
  background-color: #ffffff;
  font-weight: 600;
  gap: 8px;
  line-height: 24px;
  min-height: 58px;
  flex: 1;
  max-width: 60%;
}

.promo-code-text {
  font-size: 18px;
  font-weight: 600;
  color: #065f46;
  margin: 0;
}

.promo-timer {
  display: flex;
  padding: 8px;
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  background-color: #d1ecdd;
  font-weight: 600;
  gap: 8px;
}

.promo-timer-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #065f46;
  font-size: 26px;
  line-height: 24px;
}

.promo-timer-separator {
  display: flex;
  align-items: center;
  color: #065f46;
  font-size: 26px;
  line-height: 24px;
}

.promo-timer-label {
  color: #374151;
  font-size: 10px;
  line-height: 14px;
  font-weight: 400;
}

.promo-banner {
  background-color: #f0fdf4;
  border: 2px solid #86efac;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.promo-banner-content {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  flex-shrink: 1;
}

.promo-banner-discount {
  color: #16a34a;
  font-weight: bold;
  font-size: 1.1rem;
  white-space: nowrap;
}

.promo-banner-text {
  color: #374151;
  font-size: 0.95rem;
  white-space: nowrap;
}

.promo-banner-timer {
  display: flex;
  align-items: center;
  gap: 3px;
  background-color: white;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #86efac;
  flex-shrink: 0;
}

.promo-banner-timer span {
  font-family: monospace;
  font-weight: bold;
  color: #16a34a;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .promo-banner {
    padding: 12px 16px;
    gap: 8px;
  }
  
  .promo-banner-content {
    gap: 6px;
  }
  
  .promo-banner-discount {
    font-size: 0.95rem;
  }
  
  .promo-banner-text {
    font-size: 0.85rem;
  }
  
  .promo-banner-timer {
    padding: 3px 8px;
  }
  
  .promo-banner-timer span {
    font-size: 0.9rem;
  }
}

.pricing-section {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.plans-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.plan-selector-card {
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 14px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  position: relative;
}

.plan-selector-card.has-badge {
  border: 2px solid #6366f1;
  padding-top: 20px;
  margin-top: 12px;
}

.plan-selector-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.plan-badge-popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #6366f1;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  z-index: 10;
}

.plan-badge-icon {
  font-size: 10px;
}

.plan-selector-card.selected {
  background: #EEF2FF;
  border: 2px solid #6366f1;
  box-shadow: 0 2px 4px rgba(99, 102, 241, 0.1);
}

.plan-selector-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.plan-radio {
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.plan-radio.checked {
  border-color: #6366f1;
  border-width: 2px;
}

.plan-radio-inner {
  width: 8px;
  height: 8px;
  background: #6366f1;
  border-radius: 50%;
}

.plan-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.plan-total {
  font-size: 14px;
  color: #9ca3af;
}

.plan-price-block {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
}

.price-currency {
  font-size: 12px;
  color: #9ca3af;
  align-self: flex-start;
  margin-top: 6px;
}

.price-zero {
  font-size: 64px;
  font-weight: 400;
  color: #9ca3af;
  line-height: 0.85;
  letter-spacing: -0.02em;
}

.plan-selector-card.selected .price-zero {
  color: #111827;
}

.price-cents-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 6px;
}

.price-cents {
  font-size: 20px;
  font-weight: 400;
  color: #9ca3af;
  line-height: 1;
}

.plan-selector-card.selected .price-cents {
  color: #111827;
}

.price-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #9ca3af;
  white-space: nowrap;
  margin-top: 2px;
}

.plan-selector-card.selected .price-label {
  color: #111827;
}

.payment-btn-primary {
  width: 100%;
  height: 3rem;
  background: #000;
  color: white;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.payment-btn-primary:hover {
  background: #1f2937;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.secure-payment-info {
  text-align: center;
  margin-bottom: 2rem;
}

.secure-payment-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.payment-methods-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.payment-icon-img {
  height: 24px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.payment-icon-img:hover {
  opacity: 1;
}

.subscription-terms {
  text-align: center;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.subscription-terms-text {
  font-size: 0.625rem;
  line-height: 1.4;
  color: rgba(107, 114, 128, 0.6);
  margin: 0;
}

.context-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.context-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  text-align: center;
}

.context-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.context-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.context-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.context-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #374151;
}

@media (min-width: 768px) {
  .context-card {
    padding: 2rem;
  }

  .context-title {
    font-size: 1.25rem;
  }
}

.benefits-card {
  background: #e5f2e7;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.benefits-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #365314;
  margin-bottom: 1rem;
  text-align: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.benefit-text {
  font-size: 0.9375rem;
  color: #4d7c0f;
  line-height: 1.5;
}

.payment-toggle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.payment-toggle:hover {
  color: var(--color-text);
}

.payment-alternatives {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.payment-btn-secondary {
  width: 100%;
  height: 3.5rem;
  background: white;
  border: 2px solid var(--color-border);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.payment-btn-secondary:hover {
  border-color: var(--color-primary);
}

#payment-buttons-container {
  margin-bottom: 1.5rem;
}

#express-checkout-element {
  margin-bottom: 1rem;
}

#card-form-container {
  margin-top: 1rem;
}

#card-form-container #payment-element {
  margin-bottom: 1rem;
}

.fine-print {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.625;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.75rem;
}

.faq-question {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.faq-arrow {
  color: var(--color-primary);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.testimonials-section {
  margin-bottom: 3rem;
  max-width: 100%;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  width: 100%;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonial-card {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  box-sizing: border-box;
}

.testimonial-stars {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1.25rem;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.testimonial-dot:hover {
  background: #9ca3af;
  transform: scale(1.2);
}

.testimonial-dot.active {
  background: #6366f1;
  width: 24px;
  border-radius: 4px;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}

.trust-badge-item {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.success-checkmark {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
}

.checkmark-svg {
  width: 3.5rem;
  height: 3.5rem;
  color: white;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-plan-card {
  background: linear-gradient(135deg, #fffbeb 0%, #ffedd5 100%);
  border: 2px solid #fed7aa;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.success-stat-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.success-email-notice {
  background: #eff6ff;
  border: 2px solid #bfdbfe;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.text-blue-900 {
  color: #1e3a8a;
}

.text-blue-800 {
  color: #1e40af;
}

.hover\:text-orange-700:hover {
  color: #c2410c;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  z-index: 10000;
}

.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  max-width: 28rem;
  width: 100%;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 10001;
}

.text-red-600 {
  color: #dc2626;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.focus\:outline-none:focus {
  outline: none;
}

.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.2);
}

.focus\:ring-orange-500:focus {
  box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.3);
}

.hover\:bg-gray-50:hover {
  background-color: #f9fafb;
}

.hover\:bg-orange-700:hover {
  background-color: #c2410c;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.text-gray-700 {
  color: #374151;
}

body.modal-open {
  overflow: hidden;
}

.success-toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background-color: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  z-index: 10002;
  box-shadow: var(--shadow-lg);
}

.top-4 {
  top: 1rem;
}

.right-4 {
  right: 1rem;
}

.bg-green-100 {
  background-color: #dcfce7;
}

.border-green-400 {
  border-color: #86efac;
}

.modal-overlay.hidden {
  display: none !important;
}

.plan-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.plan-stat-box {
  background-color: #fffbeb;
  border-radius: var(--radius-xl);
  padding: var(--space-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.plan-stat-icon {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-2);
  line-height: 1;
}

.plan-stat-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.plan-stat-value {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

@media (max-width: 640px) {
  .plan-stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}

.commitment-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.commitment-overlay-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.2s ease-out;
}

.commitment-overlay-content {
  background-color: white;
  border-radius: var(--radius-2xl);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.3s ease-out;
}

.commitment-overlay-header {
  text-align: center;
  margin-bottom: 1rem;
}

.commitment-overlay-subtitle {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.commitment-overlay-title {
  font-size: var(--font-size-2xl);
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.commitment-overlay-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.commitment-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-border);
  background-color: white;
  transition: all var(--transition-base);
  cursor: pointer;
}

.commitment-button img,
.commitment-button > span:first-child {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.commitment-button span {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text);
}

.commitment-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.commitment-button-no:hover {
  border-color: #dc2626;
  background-color: #fef2f2;
}

.commitment-button-yes:hover {
  border-color: #16a34a;
  background-color: #f0fdf4;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .commitment-overlay-content {
    padding: 1.5rem;
  }

  .commitment-overlay-title {
    font-size: var(--font-size-xl);
    margin-bottom: 1.5rem;
  }

  .commitment-overlay-buttons {
    gap: 0.75rem;
  }

  .commitment-button {
    padding: 1.5rem 0.75rem;
  }

  .commitment-button img,
  .commitment-button > span:first-child {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .commitment-button span {
    font-size: var(--font-size-base);
  }
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-none {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
}

@media (min-width: 768px) {
  .md\:line-clamp-none {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
  }
}

.progress-bar-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

.progress-bar-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
  margin-bottom: 0.25rem;
}

.progress-bar-zones {
  display: flex;
  justify-content: space-between;
  padding: 0 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.progress-bar-container circle {
  transition: cx 0.05s ease-out;
}

.loading-testimonial {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-top: 2rem;
}

.loading-testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  color: #00b67a;
}

.loading-testimonial-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.loading-testimonial-text {
  font-size: 0.8rem;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.loading-testimonial-author {
  font-size: 0.8rem;
  color: #6b7280;
  text-align: right;
}

.testimonial-active {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

.testimonial-hidden {
  display: none;
}

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

.profile-content-box {
  background: white;
  border-radius: 1rem;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
}

.profile-layout {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.profile-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.profile-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.profile-stat-card {
  text-align: center;
  padding: 0.5rem;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  font-size: 0.75rem;
}

.profile-stat-icon {
  font-size: 1.5rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .profile-content-box {
    padding: 1.5rem;
  }

  .profile-image {
    width: 192px;
    height: 192px;
  }

  .profile-subtitle {
    font-size: 1rem;
    display: block;
    overflow: visible;
  }

  .profile-stat-card {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .profile-stat-icon {
    font-size: 1.875rem;
  }
}

.privacy-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background-color: #f9fafb;
}

.privacy-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: #9ca3af;
}

.privacy-text {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.h-2 {
  height: 0.5rem;
}

.result-benefits-section {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
}

.result-benefits-header {
  margin-bottom: 1.5rem;
}

.result-benefits-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  line-height: 1.3;
}

.result-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.result-benefit-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

.result-benefit-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.result-benefit-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #111827;
}

.result-benefit-bold {
  font-weight: 700;
  color: #2b2d30;
}

@media (min-width: 768px) {
  .result-benefits-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .result-benefits-title {
    font-size: 1.5rem;
  }

  .result-benefit-text {
    font-size: 1rem;
  }
}

.checkout-benefits-section {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.checkout-benefits-header {
  margin-bottom: 1.5rem;
}

.checkout-benefits-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  line-height: 1.3;
}

.checkout-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkout-benefit-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

.checkout-benefit-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.checkout-benefit-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #111827;
}

.checkout-benefit-bold {
  font-weight: 700;
  color: #2b2d30;
}

@media (min-width: 768px) {
  .checkout-benefits-section {
    padding: 1.5rem;
  }

  .checkout-benefits-title {
    font-size: 1.5rem;
  }

  .checkout-benefit-text {
    font-size: 1rem;
  }
}

.growth-graph-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.growth-graph-block {
  position: relative;
  width: 100%;
  max-width: 343px;
  height: 100%;
  align-self: center;
}

.growth-current {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  background-color: #111827;
  color: #ffffff;
  font-weight: 600;
  line-height: 24px;
  opacity: 0;
  animation: growth-current-appear 0.3s linear 0.5s forwards;
  inset: auto auto 84px;
}

.growth-target {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  background-color: #111827;
  color: #ffffff;
  font-weight: 600;
  gap: 0.5rem;
  line-height: 24px;
  opacity: 0;
  animation: growth-target-appear 0.3s linear 1.5s forwards;
}

.growth-months {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 16px;
  text-align: center;
  font-weight: 600;
}

.growth-info {
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 16px;
  text-align: center;
  font-weight: 400;
}

@keyframes growth-pathdraw {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes growth-current-appear {
  100% {
    opacity: 1;
  }
}

@keyframes growth-target-appear {
  100% {
    opacity: 1;
  }
}

.growth-svg-path0 {
  animation: growth-pathdraw 2s linear 0ms forwards;
  stroke-dasharray: 847 849;
  stroke-dashoffset: 848;
}

.growth-svg-path1 {
  animation: growth-pathdraw 2s linear 71ms forwards;
  stroke-dasharray: 590 592;
  stroke-dashoffset: 591;
}

.growth-svg-path2 {
  animation: growth-pathdraw 2s linear 142ms forwards;
  stroke-dasharray: 590 592;
  stroke-dashoffset: 591;
}

.growth-svg-path3 {
  animation: growth-pathdraw 2s linear 214ms forwards;
  stroke-dasharray: 590 592;
  stroke-dashoffset: 591;
}

.growth-svg-path4 {
  animation: growth-pathdraw 2s linear 285ms forwards;
  stroke-dasharray: 590 592;
  stroke-dashoffset: 591;
}

.growth-svg-path5 {
  animation: growth-pathdraw 2s linear 357ms forwards;
  stroke-dasharray: 365 367;
  stroke-dashoffset: 366;
}

.growth-svg-path6 {
  animation: growth-pathdraw 2s linear 428ms forwards;
  stroke-dasharray: 29 31;
  stroke-dashoffset: 30;
}

.growth-svg-path7 {
  animation: growth-pathdraw 2s linear 0.5s forwards;
  stroke-dasharray: 29 31;
  stroke-dashoffset: 30;
}

@media (min-width: 768px) {
  .growth-graph-block {
    max-width: 400px;
  }
}
