@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  /* Brand Accents */
  --color-indigo: #4f46e5;
  --color-cyan: #06b6d4;
  --color-emerald: #10b981;
  --color-amber: #f59e0b;
  --color-rose: #f43f5e;
  
  /* Gradient combinations */
  --grad-accent: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-cyan) 100%);
  --grad-glow: radial-gradient(circle at 50% -20%, rgba(79, 70, 229, 0.05) 0%, rgba(248, 250, 252, 0) 70%);
  --grad-emerald: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-cyan) 100%);
  
  /* Borders and Shadows */
  --border-glow: rgba(79, 70, 229, 0.1);
  --border-muted: #e2e8f0;
  --border-hover: #cbd5e1;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 0 25px rgba(79, 70, 229, 0.12);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  background-image: var(--grad-glow);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

   /* NAVIGATION */
header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-muted);
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.logo svg {
  width: 2rem;
  height: 2rem;
  stroke: url(#brand-grad);
  fill: none;
}

/* Checkbox Toggle Hack for Mobile Nav */
.nav-checkbox {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  margin-left: auto; /* Push label to the right in flex layouts */
}

.nav-toggle-label svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: var(--text-primary);
  stroke-width: 2;
  transition: var(--transition-smooth);
}

.nav-toggle-label .close-icon {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  justify-content: center;
  text-align: center;
}

.nav-links a.nav-item {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a.nav-item:hover,
.nav-links a.nav-item.active {
  color: var(--text-primary);
}

.nav-links a.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-accent);
  transition: var(--transition-smooth);
}

.nav-links a.nav-item:hover::after,
.nav-links a.nav-item.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--grad-accent);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  filter: brightness(1.05);
}

.btn-secondary {
  background: rgba(79, 70, 229, 0.05);
  color: var(--color-indigo);
  border-color: rgba(79, 70, 229, 0.15);
}

.btn-secondary:hover {
  background: rgba(79, 70, 229, 0.1);
  border-color: rgba(79, 70, 229, 0.25);
  transform: translateY(-2px);
}

   /* HERO SECTION */
.hero {
  padding: 6rem 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  background: linear-gradient(to right, #0f172a 30%, #4f46e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

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

.hero-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(6, 182, 212, 0.05) 50%, transparent 70%);
  z-index: -1;
  filter: blur(30px);
  animation: float-glow 10s ease-in-out infinite alternate;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 2rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 
    0 20px 40px -15px rgba(15, 23, 42, 0.1),
    0 0 50px 0 rgba(79, 70, 229, 0.05),
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.8);
  max-width: 100%;
  width: 460px;
  animation: float-hero-image 6s ease-in-out infinite;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  transition: var(--transition-smooth);
}

.hero-image:hover {
  transform: scale(1.02);
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.85rem 1.35rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 
    0 10px 20px -5px rgba(15, 23, 42, 0.08),
    0 4px 6px -2px rgba(15, 23, 42, 0.03);
  z-index: 10;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  white-space: nowrap;
}

.badge-top {
  top: 2rem;
  left: -2.5rem;
  animation: float-badge-1 6s ease-in-out infinite;
}

.badge-bottom {
  bottom: 2rem;
  right: -2.5rem;
  animation: float-badge-2 6s ease-in-out infinite;
}

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

@keyframes float-badge-1 {
  0%, 100% {
    transform: translate(0, 0) rotate(-1deg);
  }
  50% {
    transform: translate(-6px, -10px) rotate(1deg);
  }
}

@keyframes float-badge-2 {
  0%, 100% {
    transform: translate(0, 0) rotate(1deg);
  }
  50% {
    transform: translate(6px, 10px) rotate(-1deg);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(79, 70, 229, 0.06);
  border: 1px solid rgba(79, 70, 229, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-indigo);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

   /* SECTIONS & GRIDS */
.section {
  padding: 6rem 0;
  border-top: 1px solid var(--border-muted);
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: 1.25rem;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.02) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), 0 10px 20px rgba(79, 70, 229, 0.03);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 4.5rem;
  height: 4.5rem;
  background: rgba(79, 70, 229, 0.04);
  border: 1px solid rgba(79, 70, 229, 0.08);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition-smooth);
}

.card:hover .card-icon {
  background: var(--grad-accent);
  border-color: transparent;
  box-shadow: 0 0 15px rgba(79, 70, 229, 0.2);
}

.card-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  stroke: var(--color-indigo);
  stroke-width: 2;
  fill: none;
  transition: var(--transition-smooth);
}

.card:hover .card-icon svg {
  stroke: #ffffff;
}

.card-icon i {
  font-size: 2.25rem;
  color: var(--color-indigo);
  transition: var(--transition-smooth);
}

.card:hover .card-icon i {
  color: #ffffff !important;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.card p {
  font-size: 0.95rem;
}

   /* PLANS & PRICING */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card.featured {
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.06);
  transform: scale(1.03);
}

.plan-card.featured:hover {
  border-color: var(--color-cyan);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.12);
  transform: scale(1.05) translateY(-4px);
}

.plan-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--grad-accent);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.plan-header {
  margin-bottom: 2rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.plan-price {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  margin-top: 1rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.plan-features {
  margin: 2rem 0;
  border-top: 1px solid var(--border-muted);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.plan-features li svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--color-emerald);
  stroke-width: 2.5;
  fill: none;
}


   /* FORMS & INPUTS */
.form-section {
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-muted);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

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

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: 0.75rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-muted);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-indigo);
  background-color: var(--bg-secondary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.form-checkbox input {
  margin-top: 0.25rem;
}

/* Newsletter form layout styling */
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 0; /* allows input to shrink on narrow viewport */
}

/* Info Banner layout styling */
.info-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.info-banner-benefits {
  background: var(--bg-primary);
  border: 1px solid var(--border-muted);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

   /* ABOUT TIMELINE & VALUES */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
  text-align: center;
}

.stat-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-muted);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--border-muted);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 4rem;
  position: relative;
  width: 50%;
  padding-right: 3rem;
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  margin-left: 50%;
  padding-right: 0;
  padding-left: 3rem;
}

.timeline-marker {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--grad-accent);
  position: absolute;
  top: 0.25rem;
  right: -0.625rem;
  z-index: 10;
  border: 3px solid var(--bg-primary);
}

.timeline-item:nth-child(even) .timeline-marker {
  right: auto;
  left: -0.625rem;
}

.timeline-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-muted);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
}

.timeline-year {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-indigo);
  margin-bottom: 0.5rem;
}

   /* INTERACTIVE FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

details.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-muted);
  border-radius: 1rem;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

details.faq-item[open] {
  border-color: var(--color-indigo);
  box-shadow: var(--shadow-md);
}

summary.faq-question {
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  outline: none;
}

summary.faq-question::-webkit-details-marker {
  display: none;
}

summary.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-indigo);
  transition: var(--transition-smooth);
  font-weight: 500;
}

details.faq-item[open] summary.faq-question::after {
  content: '\2212'; /* Minus sign */
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

   /* REVIEWS & STAR RATING */
.rating-stars {
  display: inline-flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.rating-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--color-amber);
  stroke: none;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-muted);
  padding-top: 1rem;
}

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Outfit';
}

.review-meta h5 {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.review-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Interactive Star Rating radio stars */
.rating-select {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.rating-select input {
  display: none;
}

.rating-select label {
  font-size: 2rem;
  color: #e2e8f0;
  cursor: pointer;
  transition: var(--transition-fast);
  margin-bottom: 0;
}

.rating-select input:checked ~ label,
.rating-select label:hover,
.rating-select label:hover ~ label {
  color: var(--color-amber);
}

/* SUCCESS MODAL */
.success-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}

/* Triggered when targeted */
.success-modal:target {
  display: flex;
}

.modal-content {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-muted);
  border-radius: 1.5rem;
  max-width: 450px;
  width: 100%;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg), 0 10px 40px rgba(16, 185, 129, 0.08);
  animation: modal-zoom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-icon {
  width: 4.5rem;
  height: 4.5rem;
  background-color: rgba(16, 185, 129, 0.08);
  border: 2px solid rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
}

.modal-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  stroke: var(--color-emerald);
  stroke-width: 3;
  fill: none;
}

.modal-content h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
}

.modal-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--text-primary);
}

   /* FOOTER */
footer {
  margin-top: auto;
  background-color: #ffffff;
  border-top: 1px solid var(--border-muted);
  padding: 5rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-col a:hover {
  color: var(--text-primary);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-muted);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* Page Header Title */
.page-title {
  font-size: 3rem;
}

/* Contact Page Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}

   /* KEYFRAME ANIMATIONS */
@keyframes float-glow {
  0% {
    transform: translate(-10px, -10px) scale(0.95);
  }
  100% {
    transform: translate(10px, 10px) scale(1.05);
  }
}

@keyframes modal-zoom {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

   /* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 2rem;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .grid-3, .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-banner-grid {
    gap: 2rem;
  }
  .contact-grid {
    gap: 2rem;
  }
}

/* Tablets and Mobile Devices */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .info-banner-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .info-banner-benefits {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .page-title {
    font-size: 2.25rem;
  }

  /* Hamburger Menu Hack Styling */
  .nav-toggle-label {
    display: block;
    margin-left: auto; /* Pushes the label to the rightmost edge */
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    height: 0; /* starts collapsed */
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-muted);
    overflow: hidden;
    transition: var(--transition-smooth);
    padding: 0 1.5rem;
    gap: 0;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.05);
  }

  .nav-links a.nav-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-muted);
    font-size: 1.1rem;
    width: 100%;
  }

  .nav-links a.nav-item::after {
    display: none; /* remove hover line slider on mobile */
  }

  .nav-links .btn {
    margin: 1.5rem 0;
    width: 100%;
  }

  /* When checkbox is checked, expand menu and adjust icons */
  .nav-checkbox:checked ~ .nav-links {
    height: calc(100vh - 5rem); /* fill screen below navbar */
    padding-top: 1rem;
    padding-bottom: 2rem;
    overflow-y: auto;
  }

  .nav-checkbox:checked ~ .nav-toggle-label .hamburger-icon {
    display: none;
  }

  .nav-checkbox:checked ~ .nav-toggle-label .close-icon {
    display: block;
  }

  /* Page content responsive */
  .hero {
    padding: 4rem 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-image-wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 380px;
  }
  .badge-top {
    left: -1rem;
    top: 1rem;
  }
  .badge-bottom {
    right: -1rem;
    bottom: 1rem;
  }

  .grid-3, .plans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .plan-card.featured {
    transform: none;
  }
  .plan-card.featured:hover {
    transform: translateY(-4px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .timeline::before {
    left: 1rem;
  }
  .timeline-item {
    width: 100%;
    padding-right: 0;
    padding-left: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .timeline-item:nth-child(even) {
    margin-left: 0;
    padding-left: 2.5rem;
  }
  .timeline-marker {
    left: 0.625rem;
    right: auto;
  }
  .timeline-item:nth-child(even) .timeline-marker {
    left: 0.625rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .form-section {
    padding: 2rem 1.25rem;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .card {
    padding: 1.5rem;
  }
}

/* Extreme Mobile Optimization (< 480px) */
@media (max-width: 480px) {
  .floating-badge {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }
  .badge-top {
    left: -0.5rem;
  }
  .badge-bottom {
    right: -0.5rem;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 0.5rem;
  }
  .newsletter-form button {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .stat-item {
    padding: 1.5rem 1.25rem;
  }
  .stat-number {
    font-size: 2.15rem;
  }
  
  .hero-content h1 {
    font-size: 2.15rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .page-title {
    font-size: 2rem;
  }
}
