/* ============================================
   DATABACKUP - Modern Landing Page
   ============================================ */

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

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --accent: #06b6d4;
  --accent-light: #22d3ee;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-glow: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Design System - Glassmorphism */
  --ds-primary: #0F172A;
  --ds-secondary: #334155;
  --ds-cta: #0369A1;
  --ds-cta-hover: #0284C7;
  --ds-bg: #F8FAFC;
  --ds-text: #020617;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: 1px solid rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --glass-blur: blur(16px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, #0369A1 0%, #0284C7 50%, #2563eb 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(3, 105, 161, 0.4);
  background-size: 200% 200%;
  background-position: 0% 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(3, 105, 161, 0.5);
  background-position: 100% 50%;
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: var(--gray-50);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header.hidden-header {
  transform: translateY(-100%);
}

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

.logo {
  height: 56px;
}

.header .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--gradient-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 100%;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--accent-light);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--gray-400);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.stat-item .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}

.stat-item .label {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.3;
}

/* === Section Base === */
section {
  padding: 100px 0;
}

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

.section-header .overline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-500);
}

/* === Benefits Section === */
.benefits {
  background: var(--gray-50);
}

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

.benefit-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-glow);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--primary);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 0.938rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* === Why Resell Section === */
.why-resell {
  background: var(--white);
  position: relative;
}

.why-resell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-resell-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 24px;
}

.why-resell-content > p {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: 40px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.check-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-radius: 50%;
  color: var(--primary);
  font-weight: 700;
}

.check-list li div h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.check-list li div p {
  font-size: 0.938rem;
  color: var(--gray-500);
}

.why-resell-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-resell-visual img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.why-resell-content .overline {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.why-resell-content .btn {
  margin-top: 32px;
}

/* === Pricing Section === */
.pricing {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.price-card {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(3, 105, 161, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.price-card--popular {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow:
    0 0 0 2px rgba(3, 105, 161, 0.4),
    0 8px 32px rgba(3, 105, 161, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: scale(1.05);
  z-index: 1;
}

.price-card--popular:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow:
    0 0 0 2px rgba(3, 105, 161, 0.5),
    0 16px 48px rgba(3, 105, 161, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-card__head {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 24px;
}

.price-card__head h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.price-card__head .gb {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
}

.price-card__price {
  text-align: center;
  margin-bottom: 24px;
}

.price-card__price .old {
  font-size: 1rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.price-card__price .value {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin: 8px 0;
}

.price-card--popular .price-card__price .value {
  color: var(--primary);
}

.price-card__price .period {
  font-size: 1rem;
  color: var(--gray-500);
}

.promo-note {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.price-card__features {
  list-style: none;
  margin-bottom: 32px;
}

.price-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.938rem;
  color: var(--gray-600);
}

.price-card__features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.price-card .btn {
  width: 100%;
}

.price-card .btn-primary {
  background: linear-gradient(135deg, #0369A1 0%, #0284C7 100%);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(3, 105, 161, 0.35);
}

.price-card .btn-primary:hover {
  box-shadow: 0 6px 24px rgba(3, 105, 161, 0.5);
}

.price-card--popular .btn-primary {
  background: linear-gradient(135deg, #0369A1 0%, #2563eb 100%);
  box-shadow: 0 4px 20px rgba(3, 105, 161, 0.45);
  padding: 16px 28px;
  font-size: 1.05rem;
}

.price-card--popular .btn-primary:hover {
  box-shadow: 0 8px 28px rgba(3, 105, 161, 0.55);
}

/* === Calculator Section === */
.calculator {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.calculator::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.calculator .section-header .overline {
  color: var(--accent-light);
}

.calculator .section-header h2 {
  color: var(--white);
}

.calculator .section-header p {
  color: var(--gray-400);
}

.profit-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
}

.profit-form input,
.profit-form select {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.profit-form input:focus,
.profit-form select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

.profit-form select option {
  background: var(--dark);
  color: var(--white);
}

.form-actions {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 16px;
}

.profit-result {
  margin-top: 48px;
}

.result-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.result-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.result-card--highlight {
  background: rgba(37, 99, 235, 0.2);
  border-color: var(--primary);
}

.rc-label {
  display: block;
  font-size: 0.813rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.rc-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.result-card--highlight .rc-value {
  color: var(--accent-light);
  font-size: 1.75rem;
}

.result-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* === Features Grid === */
.features-grid-section {
  background: var(--white);
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-item {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.feature-item--large {
  grid-column: span 2;
}

.feature-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.feature-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.feature-item--large img {
  width: 100px;
  height: 100px;
}

.feature-item h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 0.938rem;
  color: var(--gray-500);
  line-height: 1.6;
}


/* === Testimonials === */
.testimonials {
  background: var(--white);
  position: relative;
}

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

.testimonial-card {
  background: var(--gray-50);
  padding: 40px 32px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-xl);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 28px;
  font-size: 3.5rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-author h5 {
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 0.813rem;
  color: var(--gray-500);
}

/* === CTA Section === */
.cta-section {
  background: var(--gray-50);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-visual img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .cta-visual {
    order: -1;
  }

  .cta-visual img {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* === Trial Form Section === */
.trial-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  position: relative;
  overflow: hidden;
}

.trial-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.trial-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.trial-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.trial-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 16px;
}

.trial-section > .container > .trial-content > p {
  font-size: 1.125rem;
  color: var(--gray-400);
  margin-bottom: 40px;
}

.trial-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.trial-form .form-vertical {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trial-form input {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.trial-form input::placeholder {
  color: var(--gray-400);
}

.trial-form input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.15);
}

.trial-form .btn {
  margin-top: 8px;
}

.trial-form small {
  display: block;
  margin-top: 16px;
  font-size: 0.813rem;
  color: var(--gray-500);
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  color: var(--accent-light);
  font-size: 0.875rem;
}

/* === Footer === */
.footer {
  background: var(--dark);
  padding: 40px 0;
  text-align: center;
}

.footer p {
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* === WhatsApp Float === */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* === Modals === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  color: var(--gray-500);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--gray-200);
  color: var(--dark);
}

.modal-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.modal-card > p {
  color: var(--gray-500);
  margin-bottom: 24px;
}

.modal-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-card input {
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.modal-card input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

body.modal-open {
  overflow: hidden;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-stats {
    margin-top: 40px;
    justify-content: center;
  }

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

  .why-resell-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-resell-visual img {
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .price-card--popular {
    transform: none;
  }

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

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

  .result-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item--large {
    grid-column: span 2;
  }

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

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .header-inner {
    height: 72px;
  }

  .logo {
    height: 40px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-visual {
    display: none;
  }

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

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

  .features-bento {
    grid-template-columns: 1fr;
  }

  .feature-item--large {
    grid-column: span 1;
  }

  .result-cards {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.938rem;
  }

  .btn-large {
    padding: 14px 28px;
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

/* ============================================
   CHECKOUT SECTION
   ============================================ */

.checkout-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.checkout-container {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  animation: checkoutSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Plan summary */
.checkout-plan-summary {
  text-align: center;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}

.checkout-plan-summary::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -36px;
  right: -36px;
  height: 4px;
  background: linear-gradient(90deg, #0369A1, #0284C7, #2563eb, #06b6d4);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.checkout-plan-summary h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.checkout-billing-toggle {
  display: inline-flex;
  gap: 0;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-bottom: 20px;
}

.billing-toggle-btn {
  padding: 10px 24px;
  border: none;
  background: transparent;
  border-radius: var(--radius-full);
  font-size: 0.938rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.3s ease;
}

.billing-toggle-btn.active {
  background: linear-gradient(135deg, #0369A1 0%, #0284C7 100%);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(3, 105, 161, 0.4);
}

.billing-toggle-btn:hover:not(.active) {
  color: var(--dark);
}

.checkout-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.checkout-price-value {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.checkout-price-period {
  font-size: 1.125rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Checkout form */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-form .form-row {
  display: flex;
  gap: 20px;
  flex-direction: row;
}

.checkout-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-form .form-group--full {
  flex: 1 1 100%;
}

.checkout-form label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.checkout-form input {
  padding: 14px 16px;
  border: 1px solid rgba(209, 213, 219, 0.6);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--dark);
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.checkout-form input::placeholder {
  color: var(--gray-400);
}

.checkout-form input:focus {
  outline: none;
  border-color: #0369A1;
  box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.12), 0 0 16px rgba(3, 105, 161, 0.06);
  background: rgba(255, 255, 255, 0.9);
}

.btn-checkout-submit {
  width: 100%;
  padding: 20px 36px;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 12px;
  background: linear-gradient(135deg, #0369A1 0%, #0284C7 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(3, 105, 161, 0.4);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
}

.btn-checkout-submit:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(3, 105, 161, 0.5);
}

.btn-checkout-submit:active:not(:disabled) {
  transform: translateY(0) scale(0.99);
}

.btn-checkout-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.checkout-secure-note {
  text-align: center;
  font-size: 0.813rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Placeholder when no plan selected */
.checkout-placeholder {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-xl);
}

.checkout-placeholder p {
  font-size: 1.125rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .checkout-section {
    padding: 60px 0;
  }

  .checkout-container {
    padding: 28px 20px;
  }

  .checkout-form .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .checkout-price-value {
    font-size: 2.25rem;
  }

  .billing-toggle-btn {
    padding: 8px 18px;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .checkout-container {
    padding: 24px 16px;
  }

  .checkout-plan-summary::before {
    left: -16px;
    right: -16px;
  }
}


/* ============================================
   GLASSMORPHISM UI/UX ENHANCEMENTS
   ============================================ */

/* --- Checkout Entrance Animation --- */
@keyframes checkoutSlideIn {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Checkout Placeholder Glass Effect --- */
.checkout-placeholder {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px dashed rgba(3, 105, 161, 0.2);
  animation: checkoutSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* --- Checkout Price Emphasis --- */
.checkout-price-value {
  background: linear-gradient(135deg, #0369A1, #0284C7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Benefit Cards Glassmorphism Enhancement --- */
.benefit-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(3, 105, 161, 0.2);
}

/* --- Feature Items Glass Enhancement --- */
.feature-item {
  background: rgba(249, 250, 251, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(3, 105, 161, 0.2);
}

/* --- Testimonial Cards Enhancement --- */
.testimonial-card {
  background: rgba(249, 250, 251, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(3, 105, 161, 0.15);
}

/* --- General Smooth Transitions --- */
a, button, input, select, textarea,
.btn, .price-card, .benefit-card,
.feature-item, .testimonial-card,
.billing-toggle-btn, .checkout-form input {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Cursor Pointer on All Clickable Elements --- */
.btn, .billing-toggle-btn, .popular-badge,
.modal-close, a[href], button,
[role="button"], .price-card .btn {
  cursor: pointer;
}

/* --- Modal Glass Enhancement --- */
.modal-overlay {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.modal-card input:focus {
  border-color: #0369A1;
  box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.12);
}

/* --- Pricing Section Background Enhancement --- */
.pricing {
  background: linear-gradient(180deg, #F8FAFC 0%, rgba(255, 255, 255, 0.9) 100%);
  position: relative;
}

/* --- Header Glass Enhancement --- */
.header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- Stat Items Glass Polish --- */
.stat-item {
  transition: all 0.25s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* --- Result Cards Glass Polish --- */
.result-card {
  transition: all 0.25s ease;
}

.result-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* --- Checkout Section Background --- */
.checkout-section {
  background: linear-gradient(180deg, #F8FAFC 0%, rgba(248, 250, 252, 0.5) 50%, #ffffff 100%);
  position: relative;
}

/* --- Billing Toggle Enhancement --- */
.checkout-billing-toggle {
  background: rgba(243, 244, 246, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.billing-toggle-btn.active {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Checkout Form Group Labels --- */
.checkout-form label {
  color: var(--ds-secondary);
}

/* --- Checkout Secure Note Enhancement --- */
.checkout-secure-note {
  padding: 8px 0;
  opacity: 0.8;
}

/* --- Popular Badge Glass Enhancement --- */
.popular-badge {
  background: linear-gradient(135deg, #0369A1 0%, #0284C7 100%);
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.35);
}

/* --- Price Card Head Divider --- */
.price-card__head {
  border-bottom: 1px solid rgba(209, 213, 219, 0.5);
}

/* --- Price Card Popular Value Color --- */
.price-card--popular .price-card__price .value {
  background: linear-gradient(135deg, #0369A1, #0284C7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Responsive Adjustments for Glass Effects --- */
@media (max-width: 768px) {
  .checkout-plan-summary::before {
    left: -20px;
    right: -20px;
  }

  .checkout-container {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

/* --- Print Optimization: Disable Glass for Print --- */
@media print {
  .checkout-container,
  .price-card,
  .benefit-card,
  .feature-item,
  .testimonial-card,
  .modal-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #fff;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ========================================
   CHECKOUT INLINE PLAN CARDS & STEPS
   ======================================== */

.checkout-step {
  margin-bottom: 2rem;
}

.checkout-step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.checkout-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ds-cta, #0369A1), var(--ds-cta-hover, #0284C7));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.checkout-step-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ds-primary, #0F172A);
}

.checkout-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 1.25rem;
}

.checkout-plan-card {
  position: relative;
  padding: 1.25rem;
  border-radius: 14px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkout-plan-card:hover {
  border-color: rgba(3, 105, 161, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 105, 161, 0.1);
}

.checkout-plan-card.selected {
  border-color: var(--ds-cta, #0369A1);
  background: rgba(3, 105, 161, 0.04);
  box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.15), 0 6px 20px rgba(3, 105, 161, 0.1);
}

.checkout-plan-card--popular {
  border-color: rgba(3, 105, 161, 0.2);
}

.checkout-plan-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--ds-cta, #0369A1), #06b6d4);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.checkout-plan-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ds-primary, #0F172A);
  margin-bottom: 2px;
}

.checkout-plan-card__storage {
  font-size: 0.85rem;
  color: var(--ds-secondary, #334155);
  margin-bottom: 8px;
}

.checkout-plan-card__price {
  font-size: 0.85rem;
  color: var(--ds-secondary, #334155);
}

.checkout-plan-card__price span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ds-cta, #0369A1);
}

.checkout-plan-card.selected .checkout-plan-card__price span {
  background: linear-gradient(135deg, var(--ds-cta, #0369A1), #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Billing toggle centered below plan cards */
.checkout-step .checkout-billing-toggle {
  display: inline-flex;
  margin-top: 8px;
  margin-bottom: 4px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.checkout-step .checkout-billing-toggle .billing-toggle-btn {
  padding: 10px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.checkout-step .checkout-billing-toggle .billing-toggle-btn:not(.active) {
  color: var(--ds-cta, #0369A1);
  background: rgba(3, 105, 161, 0.06);
}

.checkout-step .checkout-billing-toggle .billing-toggle-btn:not(.active):hover {
  background: rgba(3, 105, 161, 0.12);
}

@media (max-width: 768px) {
  .checkout-plans-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .checkout-plan-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 1rem 1.25rem;
  }

  .checkout-plan-card__badge {
    position: static;
    transform: none;
    order: -1;
  }

  .checkout-plan-card__name {
    flex: 0 0 auto;
    margin-bottom: 0;
  }

  .checkout-plan-card__storage {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  .checkout-plan-card__price {
    margin-left: auto;
  }
}

/* Trial toggle in checkout */
.checkout-trial-option {
  margin: 1.5rem 0 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(3, 105, 161, 0.04), rgba(6, 182, 212, 0.04));
  border: 1px solid rgba(3, 105, 161, 0.12);
}

.checkout-trial-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.checkout-trial-toggle input {
  display: none;
}

.checkout-trial-slider {
  position: relative;
  width: 44px;
  height: 24px;
  background: #cbd5e1;
  border-radius: 12px;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.checkout-trial-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.checkout-trial-toggle input:checked + .checkout-trial-slider {
  background: linear-gradient(135deg, var(--ds-cta, #0369A1), #06b6d4);
}

.checkout-trial-toggle input:checked + .checkout-trial-slider::after {
  transform: translateX(20px);
}

.checkout-trial-label {
  font-size: 0.95rem;
  color: var(--ds-primary, #0F172A);
}

.checkout-trial-note {
  margin: 8px 0 0 56px;
  font-size: 0.8rem;
  color: var(--ds-secondary, #64748b);
  display: none;
}

.checkout-trial-note.visible {
  display: block;
}

/* Inline validation errors */
.form-group.has-error input {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.field-error {
  display: block;
  color: #ef4444;
  font-size: 0.78rem;
  margin-top: 4px;
  font-weight: 500;
}

.checkout-plans-grid.has-error {
  outline: 2px solid #ef4444;
  outline-offset: 6px;
  border-radius: 14px;
}

.checkout-submit-error {
  color: #ef4444;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 10px;
  font-weight: 500;
}
