/* ===== CSS Variables ===== */
:root {
  --primary: #e91e8c;
  --primary-rgb: 233, 30, 140;
  --primary-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --muted: #f5f5f5;
  --muted-foreground: #737373;
  --border: #e5e5e5;
  --secondary: #fdf2f8;
  --secondary-foreground: #1a1a1a;
  --accent: #fce7f3;
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ===== Utility Classes ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-primary {
  color: var(--primary);
}
.text-muted {
  color: var(--muted-foreground);
}
.text-foreground {
  color: var(--foreground);
}
.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-card {
  background-color: var(--card);
}

.text-center {
  text-align: center;
}
.text-balance {
  text-wrap: balance;
}

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

.uppercase {
  text-transform: uppercase;
}
.tracking-wider {
  letter-spacing: 0.05em;
}

/* ===== Animations ===== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

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

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

.animate-pulse-soft {
  animation: pulse-soft 2s ease-in-out infinite;
}

.opacity-0 {
  opacity: 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
  background-color: rgba(var(--primary-rgb), 0.9);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid rgba(var(--primary-rgb), 0.3);
}

.btn-outline:hover {
  background-color: rgba(var(--primary-rgb), 0.05);
  border-color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-heart {
  color: var(--primary);
  font-size: 1.25rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(26, 26, 26, 0.8);
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary);
}

.header-cta {
  display: none;
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.mobile-menu {
  display: none;
  background-color: white;
  border-top: 1px solid var(--border);
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.active {
  display: flex;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .header-cta {
    display: block;
  }
  .mobile-toggle {
    display: none;
  }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg-decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero-bg-circle-1 {
  top: 5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background-color: rgba(var(--primary-rgb), 0.05);
}

.hero-bg-circle-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background-color: rgba(252, 231, 243, 0.3);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 1.5rem 0;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-feature svg {
  color: var(--primary);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  filter: blur(60px);
  transform: scale(0.75);
}

.hero-image {
  position: relative;
  z-index: 10;
  max-width: 400px;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-image-container {
    justify-content: flex-end;
  }
}

/* ===== Benefits Section ===== */
.benefits {
  padding: 5rem 0;
  background-color: rgba(253, 242, 248, 0.3);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-label {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
}

.section-description {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

.benefit-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--primary-rgb), 0.2);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.benefit-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Specs Section ===== */
.specs {
  padding: 4rem 0;
  background-color: rgba(var(--primary-rgb), 0.05);
}

.specs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

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

.spec-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.spec-label {
  font-weight: 500;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .specs-container {
    gap: 2.5rem;
  }
}

/* ===== Ingredients Section ===== */
.ingredients {
  padding: 5rem 0;
  background-color: var(--background);
}

.ingredients-grid {
  display: grid;
  gap: 1.5rem;
}

.ingredient-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ingredient-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--primary-rgb), 0.3);
  transform: translateY(-4px);
}

.ingredient-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ingredient-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: white;
}

.ingredient-icon.amber {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}
.ingredient-icon.yellow {
  background: linear-gradient(135deg, #facc15, #f59e0b);
}
.ingredient-icon.pink {
  background: linear-gradient(135deg, #f472b6, #f43f5e);
}
.ingredient-icon.red {
  background: linear-gradient(135deg, #f87171, #ec4899);
}

.ingredient-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ingredient-benefit {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ingredients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Product Labels Section ===== */
.product-labels {
  padding: 5rem 0;
  background-color: rgba(253, 242, 248, 0.3);
}

.labels-grid {
  display: grid;
  gap: 2rem;
}

.label-card {
  position: relative;
}

.label-image-container {
  position: relative;
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: zoom-in;
  transition: box-shadow 0.3s ease;
}

.label-image-container:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.label-image-wrapper {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0.75rem;
}

.label-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.label-image-container:hover .label-image {
  transform: scale(1.5);
}

.label-zoom-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 26, 26, 0.05);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.label-image-container:hover .label-zoom-hint {
  opacity: 0;
}

.label-zoom-badge {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.label-title {
  text-align: center;
  margin-top: 1rem;
  font-weight: 500;
}

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

/* ===== How to Use Section ===== */
.how-to-use {
  padding: 5rem 0;
  background-color: var(--background);
}

.how-to-use-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.how-to-use-image-container {
  position: relative;
}

.how-to-use-image {
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  width: 100%;
}

.how-to-use-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.badge-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.badge-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: background-color 0.3s ease;
}

.step-item:hover {
  background-color: rgba(253, 242, 248, 0.5);
}

.step-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.step-description {
  color: var(--muted-foreground);
}

.warning-box {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 0.75rem;
  margin-top: 2rem;
}

.warning-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #d97706;
  flex-shrink: 0;
}

.warning-title {
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.25rem;
}

.warning-text {
  font-size: 0.875rem;
  color: #b45309;
}

@media (min-width: 1024px) {
  .how-to-use-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== Order Section ===== */
.order {
  padding: 5rem 0;
  background-color: rgba(var(--primary-rgb), 0.05);
}

.order-card {
  max-width: 56rem;
  margin: 0 auto;
  background-color: var(--card);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.order-grid {
  display: grid;
}

.order-info {
  padding: 2rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.order-info-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.order-info-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.price-box {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price-old {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  font-size: 1.125rem;
}

.price-current {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-discount {
  background-color: white;
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
}

.order-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.order-feature svg {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.order-feature span {
  color: rgba(255, 255, 255, 0.9);
}

.order-form-container {
  padding: 2rem;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 1rem;
  background-color: var(--background);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

.form-input.error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-error {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-submit {
  width: 100%;
  height: 3.5rem;
  margin-top: 1.5rem;
  font-size: 1.125rem;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

.form-disclaimer a {
  color: var(--primary);
}

.form-disclaimer a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .order-grid {
    grid-template-columns: 1fr 1fr;
  }
  .order-info {
    padding: 3rem;
  }
  .order-form-container {
    padding: 3rem;
  }
  .order-info-title {
    font-size: 2.5rem;
  }
}

/* Order Steps */
.order-steps {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.order-step {
  text-align: center;
}

.order-step-number {
  width: 3rem;
  height: 3rem;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
}

.order-step-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.order-step-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .order-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== FAQ Section ===== */
.faq {
  padding: 5rem 0;
  background-color: var(--background);
}

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

.faq-item {
  background-color: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  color: var(--foreground);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(253, 242, 248, 0.3);
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-foreground);
}

/* ===== Footer ===== */
.footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo span:first-child {
  color: var(--primary);
}

.footer-brand .logo span:nth-child(2) {
  color: var(--background);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-contact {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.footer-copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

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

/* ===== Thank You Page ===== */
.thank-you {
  min-height: 100vh;
  background: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.05), var(--background));
  padding: 3rem 0;
}

.thank-you-container {
  max-width: 48rem;
  margin: 0 auto;
}

.thank-you-header {
  text-align: center;
  margin-bottom: 3rem;
}

.success-icon {
  width: 6rem;
  height: 6rem;
  background-color: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon svg {
  width: 3rem;
  height: 3rem;
  color: #16a34a;
}

.thank-you-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.thank-you-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.timeline-card {
  background-color: var(--card);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  padding: 2rem;
  margin-bottom: 2rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.timeline {
  display: flex;
  flex-direction: column;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 1.5rem;
  top: 3rem;
  width: 2px;
  height: calc(100% - 1rem);
  background-color: var(--border);
  transform: translateX(-50%);
}

.timeline-item.completed .timeline-line {
  background-color: #22c55e;
}

.timeline-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.timeline-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.timeline-icon.completed {
  background-color: #22c55e;
  color: white;
}

.timeline-icon.current {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.2);
}

.timeline-icon.pending {
  background-color: var(--muted);
  color: var(--muted-foreground);
}

.timeline-content {
  padding-bottom: 2rem;
  flex: 1;
}

.timeline-content-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timeline-content-title.completed {
  color: #16a34a;
}
.timeline-content-title.current {
  color: var(--primary);
}
.timeline-content-title.pending {
  color: var(--muted-foreground);
}

.timeline-badge {
  font-size: 0.75rem;
  background-color: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-weight: 500;
}

.timeline-content-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.attention-box {
  background-color: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.attention-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.attention-icon {
  width: 3rem;
  height: 3rem;
  background-color: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.attention-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #d97706;
}

.attention-title {
  font-weight: 600;
  color: #92400e;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.attention-text {
  color: #b45309;
}

.back-button-container {
  text-align: center;
}

@media (min-width: 768px) {
  .thank-you {
    padding: 5rem 0;
  }
  .timeline-card {
    padding: 2.5rem;
  }
  .thank-you-title {
    font-size: 2.5rem;
  }
}

/* ===== Legal Pages ===== */
.legal-page {
  min-height: 100vh;
  background-color: var(--background);
  padding: 5rem 0;
}

.legal-container {
  max-width: 56rem;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  transition: opacity 0.3s ease;
}

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

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.legal-content {
  color: var(--muted-foreground);
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

.legal-content strong {
  color: var(--foreground);
}

.legal-date {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
