:root {
  /* Re-balanced Core Colors */
  --primary-color: #e91e63;
  --primary-light: #fce4ec;
  /* Softer light pink */
  --primary-dark: #c2185b;
  --secondary-color: #0f172a;
  /* Slate 900 for modern deep contrast */

  /* Text & Backgrounds */
  --text-dark: #334155;
  /* Slate 700 for softer body text */
  --text-light: #ffffff;
  --bg-light: #f8fafc;
  /* Slate 50 ultra-light background */
  --bg-white: #ffffff;
  --section-alt: #f1f5f9;
  /* Slate 100 for clean alternating sections */

  /* Grays */
  --gray-light: #f1f5f9;
  --gray-medium: #cbd5e1;
  --gray-dark: #64748b;

  /* Modern UI Elements */
  --radius: 16px;
  /* Larger, softer radius for cards */
  --btn-radius: 50px;
  /* Pill-shaped buttons */

  /* Elevated Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 4px 14px 0 rgba(233, 30, 99, 0.39);

  --transition: all 0.3sease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.7;
  /* Increased for readability */
  font-size: 1.05rem;
  /* Slightly larger base text */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  text-decoration: none;
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-weight: 800;
  /* Bolder headings */
  color: var(--secondary-color);
  letter-spacing: -0.02em;
  /* Tighter heading tracking */
}

h1 {
  font-size: 2.75rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

p {
  margin-bottom: 1.25rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: var(--btn-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.02em;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: none;
  transform: translateY(-2px);
}

/* Header & Nav */
header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 800;
}

.logo-main {
  color: var(--primary-color);
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  display: block;
}

.logo-sub {
  color: #000000;
  font-size: 0.65rem;
  letter-spacing: 3.8px;
  /* Stretched to cover "Free Tablet" width approximately */
  display: block;
  margin-top: 2px;
  font-weight: 700;
}

.logo-icon {
  stroke: var(--primary-color);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Dropdowns */
.nav-links .dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.nav-links .dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--bg-white);
  min-width: 220px;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  z-index: 1000;
  top: 100%;
  left: 0;
  border: 1px solid var(--gray-light);
  overflow: hidden;
  padding: 10px 0;
}

.nav-links .dropdown-content a {
  color: var(--secondary-color);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links .dropdown-content a:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
  padding-left: 24px;
}

.nav-links .dropdown:hover .dropdown-content {
  display: block;
  animation: navFadeIn 0.2s ease-in-out;
}

@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-cta {
  display: flex;
  gap: 15px;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--secondary-color);
}

.hero-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.hero-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--text-light);
  min-height: 650px;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 3.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 35px;
  color: #f8fafc;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
}

/* Section Styles */
.section {
  padding: 100px 0;
  /* Increased spacing */
}

.section-bg {
  background-color: var(--bg-white);
}

.section-alt {
  background-color: var(--section-alt);
}

/* Cards Grid */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .grid-2x2,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gray-medium);
}

.card-img {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-body p {
  color: var(--gray-dark);
  flex-grow: 1;
}

.card-actions {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Providers Section */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.provider-card {
  background: var(--bg-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 35px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.provider-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-hover);
}

.provider-logo-container {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  background: #f8fafc;
  border-radius: 12px;
  padding: 10px;
}

.provider-logo {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.provider-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.provider-card p {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.provider-features {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  text-align: left;
  list-style: none;
  padding: 0;
}

.provider-features li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.provider-features li::before {
  content: '✓';
  color: #10b981;
  position: absolute;
  left: 0;
  font-weight: 800;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--text-light);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #cccccc;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.8rem;
  color: #999999;
  text-align: justify;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #999999;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}

/* Accordion FAQs */
.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gray-medium);
}

.faq-question {
  padding: 25px;
  font-weight: 700;
  color: var(--secondary-color);
  cursor: pointer;
  position: relative;
  padding-right: 50px;
  font-size: 1.1rem;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: var(--gray-dark);
  background-color: var(--bg-white);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  /* Safe upper bound for text */
  padding: 0 25px 25px;
  opacity: 1;
}

/* General Layout Utilities */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gray-medium);
}

.trust-icon {
  font-size: 2.5rem;
  line-height: 1;
  background: var(--primary-light);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card .stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.client-info h4 {
  margin-bottom: 2px;
}

.client-info p {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-bottom: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gray-medium);
}

.pricing-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  min-width: 600px;
}

.pricing-table th,
.pricing-table td {
  padding: 20px 25px;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
}

.pricing-table th {
  background-color: var(--bg-light);
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.pricing-table tbody tr:hover {
  background-color: var(--bg-light);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* State Selection Section Modernization */
.state-selector-container {
  padding: 60px 0;
  background-color: var(--bg-white);
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.state-card {
  background: var(--bg-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.state-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.state-card .state-abbr {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: block;
}

.state-card h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: var(--secondary-color);
}

.state-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  margin-bottom: 0;
}

.state-selector-search {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
  background: var(--bg-light);
  padding: 25px;
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-light);
}

.state-selector-search label {
  font-weight: 700;
  color: var(--secondary-color);
  white-space: nowrap;
}

.state-selector-search select {
  flex-grow: 1;
  padding: 12px 20px;
  border-radius: 50px;
  border: 2px solid var(--gray-light);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  background-color: white;
}

.state-selector-search select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

@media (max-width: 768px) {
  .state-selector-search {
    flex-direction: column;
    padding: 20px;
  }

  .state-selector-search select,
  .state-selector-search .btn {
    width: 100%;
  }
}

/* How to Apply Modern Timeline */
.modern-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.modern-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--primary-light);
  border-radius: 4px;
}

.timeline-step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  position: relative;
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.timeline-step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.timeline-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 0 0 10px var(--section-alt);
  position: relative;
  z-index: 2;
}

.timeline-content {
  flex-grow: 1;
}

.timeline-content h3 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.timeline-content p {
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .modern-timeline::before {
    left: 30px;
  }

  .timeline-step {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .timeline-step:hover {
    transform: translateY(-5px);
  }
}

/* Premium Program Cards */
.program-card-premium {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
}

.program-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-light);
}

.premium-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.premium-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.program-card-premium:hover .premium-img-wrapper img {
  transform: scale(1.08);
}

.premium-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.premium-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.premium-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.premium-content h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.premium-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.qualify-section {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed #e2e8f0;
}

.qualify-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.qualify-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.qualify-tag {
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}

.premium-footer {
  padding: 0 30px 30px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-premium {
  flex: 1;
  padding: 12px 20px;
  background: var(--primary-color);
  color: white !important;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

.btn-premium:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
}

.btn-link-premium {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}

.btn-link-premium:hover {
  color: var(--primary-color);
  gap: 8px;
}