@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --bg: hsl(120, 20%, 98%);
  --fg: hsl(210, 25%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-fg: hsl(210, 25%, 15%);
  --primary: hsl(152, 60%, 38%);
  --primary-fg: hsl(0, 0%, 100%);
  --secondary: hsl(210, 70%, 50%);
  --secondary-fg: hsl(0, 0%, 100%);
  --muted: hsl(120, 15%, 95%);
  --muted-fg: hsl(210, 10%, 45%);
  --accent: hsl(38, 90%, 55%);
  --accent-fg: hsl(210, 25%, 15%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(120, 15%, 90%);
  --warm: hsl(38, 90%, 55%);
  --warm-light: hsl(38, 90%, 95%);
  --success-light: hsl(152, 60%, 95%);
  --trust-light: hsl(210, 70%, 95%);
  --hero-gradient: linear-gradient(135deg, hsl(152, 60%, 38%), hsl(180, 50%, 40%), hsl(210, 70%, 50%));
  --card-shadow: 0 4px 24px -4px hsla(152, 60%, 38%, 0.12);
  --card-shadow-hover: 0 8px 32px -4px hsla(152, 60%, 38%, 0.2);
  --radius: 0.75rem;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.gradient-primary { background: var(--hero-gradient); }
.shadow-card { box-shadow: var(--card-shadow); }
.text-gradient {
  background: var(--hero-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulseSoft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.animate-fade-up { animation: fadeUp 0.6s ease-out forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse-soft { animation: pulseSoft 2s ease-in-out infinite; }
.animate-spin { animation: spin 1s linear infinite; }

/* Scroll-triggered animation */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: hsla(0, 0%, 100%, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
}
.navbar-brand .highlight { color: var(--primary); }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; gap: 0.75rem; align-items: center; }
.mobile-toggle { display: none; background: none; cursor: pointer; padding: 0.5rem; }
.mobile-toggle svg { width: 24px; height: 24px; stroke: var(--fg); }
.mobile-menu {
  display: none;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .mobile-cta { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.mobile-menu .mobile-cta .btn { flex: 1; text-align: center; }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.02); }
.btn:active { transform: scale(0.95); }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { background: hsl(152, 60%, 34%); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--fg);
}
.btn-outline:hover { background: var(--muted); }
.btn-warm { background: var(--warm); color: var(--accent-fg); }
.btn-warm:hover { background: hsl(38, 90%, 50%); }
.btn-secondary { background: var(--secondary); color: var(--secondary-fg); }
.btn-secondary:hover { background: hsl(210, 70%, 45%); }
.btn-lg { padding: 0.75rem 2rem; font-size: 1rem; border-radius: calc(var(--radius) + 4px); }
.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.8125rem; }
.btn-hero-outline {
  background: hsla(0, 0%, 100%, 0.1);
  border: 2px solid var(--primary-fg);
  color: var(--primary-fg);
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover { background: hsla(0, 0%, 100%, 0.2); }
.btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* SVG icons inside buttons */
.btn svg { width: 1.25rem; height: 1.25rem; }
.btn-sm svg { width: 1rem; height: 1rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
  opacity: 0.95;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTM2IDM0djItSDI0di0yaDEyek0zNiAyNHYySDI0di0yaDEyeiIvPjwvZz48L2c+PC9zdmc+");
  opacity: 0.3;
}
.hero .container {
  position: relative;
  z-index: 10;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(0, 0%, 100%, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--primary-fg);
  backdrop-filter: blur(4px);
}
.hero-badge .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm);
  animation: pulseSoft 2s ease-in-out infinite;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-fg);
  line-height: 1.15;
  margin-top: 1.5rem;
}
.hero h1 .warm { color: var(--warm); }
.hero-desc {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.9);
  max-width: 36rem;
  margin-top: 1.5rem;
  line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.hero-trust span {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
  background: hsla(0, 0%, 100%, 0.1);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero-image-wrap { position: relative; }
.hero-image-wrap img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: linear-gradient(to top, hsla(152, 60%, 38%, 0.3), transparent);
}
.hero-float-card {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
}
.hero-float-card .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--success-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.hero-float-card .fc-title { font-weight: 600; font-size: 0.875rem; color: var(--card-fg); }
.hero-float-card .fc-sub { font-size: 0.75rem; color: var(--muted-fg); }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero h1 { font-size: 2rem; }
}
@media (min-width: 1024px) {
  .hero .container { padding-top: 6rem; padding-bottom: 8rem; }
  .hero h1 { font-size: 3.5rem; }
}

/* ===== SECTIONS COMMON ===== */
section { padding: 4rem 0; }
@media (min-width: 768px) { section { padding: 6rem 0; } }
.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--fg);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
.section-desc {
  font-size: 1.125rem;
  color: var(--muted-fg);
  max-width: 42rem;
  margin: 0 auto 3rem;
}
.section-header { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.bg-muted-half { background: hsl(120, 15%, 96.5%); }

/* ===== CARD GRID ===== */
.card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}
.card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}
.card:hover .card-icon { transform: scale(1.1); }
.card h3 { font-weight: 700; font-size: 1.125rem; color: var(--card-fg); margin-bottom: 0.5rem; }
.card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

.grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.grid-2 { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* ===== WHY FSSAI ===== */
.icon-green { background: var(--success-light); color: var(--primary); }
.icon-blue { background: var(--trust-light); color: var(--secondary); }
.icon-orange { background: var(--warm-light); color: var(--warm); }
.icon-red { background: hsla(0, 84%, 60%, 0.1); color: var(--destructive); }

/* ===== LICENSE TYPES ===== */
.license-card {
  position: relative;
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  border: 2px solid transparent;
}
@media (min-width: 1024px) { .license-card { padding: 2rem; } }
.license-card:hover {
  box-shadow: var(--card-shadow-hover);
}
.license-card.popular {
  border-color: hsla(210, 70%, 50%, 0.3);
  box-shadow: 0 0 0 2px hsla(210, 70%, 50%, 0.2), var(--card-shadow);
}
@media (min-width: 768px) { .license-card.popular { transform: translateY(-8px); } }
.license-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--secondary-fg);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.license-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.license-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--card-fg); margin-bottom: 0.25rem; }
.license-price { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 0.25rem; }
.license-for { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1.5rem; }
.license-features { margin-bottom: 2rem; }
.license-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--card-fg);
  margin-bottom: 0.75rem;
}
.license-features li svg { flex-shrink: 0; margin-top: 2px; }
.license-card .btn { width: 100%; }

/* ===== PROCESS STEPS ===== */
.process-grid { position: relative; }
.process-line {
  display: none;
  position: absolute;
  top: 64px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(to right, hsla(152, 60%, 38%, 0.3), hsla(210, 70%, 50%, 0.3), hsla(38, 90%, 55%, 0.3));
}
@media (min-width: 768px) { .process-line { display: block; } }
.process-step { text-align: center; position: relative; }
.process-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  background: var(--hero-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  box-shadow: 0 8px 24px -4px hsla(152, 60%, 38%, 0.3);
  transition: transform 0.3s;
  position: relative;
  z-index: 10;
}
.process-step:hover .process-icon { transform: scale(1.1); }
.process-step-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--success-light);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.process-step h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-step p { color: var(--muted-fg); max-width: 20rem; margin: 0 auto; line-height: 1.6; }

/* ===== DOCUMENTS ===== */
.docs-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .docs-grid { grid-template-columns: 1fr 1fr; } }
.docs-left .section-title { text-align: left; }
.tip-box {
  background: var(--warm-light);
  border: 1px solid hsla(38, 90%, 55%, 0.2);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 2rem;
}
.tip-box .tip-emoji { font-size: 1.5rem; }
.tip-box p { font-size: 0.875rem; color: var(--muted-fg); }
.tip-box strong { color: var(--fg); display: block; margin-bottom: 0.25rem; }
.doc-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: all 0.3s;
}
.doc-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-2px); }
.doc-card svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.doc-card .doc-name { font-weight: 600; font-size: 0.875rem; color: var(--card-fg); }
.doc-card .doc-hindi { font-size: 0.75rem; color: var(--muted-fg); font-family: 'Noto Sans Devanagari', sans-serif; }
.doc-card .doc-desc { font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.25rem; }

/* ===== WHY CHOOSE US ===== */
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}
.feature-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-card h3 { font-weight: 700; color: var(--card-fg); margin-bottom: 0.25rem; }
.feature-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

.grid-3-features { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-3-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3-features { grid-template-columns: repeat(3, 1fr); } }

/* ===== RENEWAL ===== */
.renewal-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}
.renewal-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }
.renewal-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.renewal-card:hover .renewal-icon { transform: scale(1.1); }
.renewal-card h3 { font-weight: 700; font-size: 1.125rem; color: var(--card-fg); margin-bottom: 0.25rem; }
.renewal-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--card-shadow-hover); }
.stars { display: flex; gap: 2px; margin-bottom: 1rem; }
.stars svg { width: 16px; height: 16px; fill: var(--warm); color: var(--warm); }
.testimonial-card .quote { font-size: 0.875rem; color: var(--card-fg); line-height: 1.6; margin-bottom: 1rem; }
.testimonial-card .divider { border-top: 1px solid var(--border); padding-top: 1rem; }
.testimonial-card .t-name { font-weight: 600; font-size: 0.875rem; color: var(--card-fg); }
.testimonial-card .t-role { font-size: 0.75rem; color: var(--muted-fg); }

/* ===== FAQ ===== */
.faq-wrapper { max-width: 48rem; margin: 0 auto; }
.faq-item {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px hsla(0,0%,0%,0.04);
  transition: box-shadow 0.3s;
}
.faq-item.open { box-shadow: var(--card-shadow); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--card-fg);
  text-align: left;
  font-size: 0.9375rem;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--muted-fg);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--muted-fg);
  line-height: 1.7;
  font-size: 0.9375rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* ===== CONTACT FORM ===== */
.contact-section { max-width: 56rem; margin: 0 auto; }
.contact-box {
  background: var(--hero-gradient);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .contact-box { padding: 3rem; } }
.contact-box .pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTM2IDM0djItSDI0di0yaDEyek0zNiAyNHYySDI0di0yaDEyeiIvPjwvZz48L2c+PC9zdmc+");
  opacity: 0.3;
}
.contact-grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-left .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(0, 0%, 100%, 0.15);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--primary-fg);
  margin-bottom: 1rem;
}
.contact-left h2 { font-size: 1.875rem; font-weight: 700; color: var(--primary-fg); margin-bottom: 1rem; }
@media (min-width: 768px) { .contact-left h2 { font-size: 2.25rem; } }
.contact-left p { color: hsla(0, 0%, 100%, 0.9); line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form select {
  width: 100%;
  height: 48px;
  border-radius: var(--radius);
  background: hsla(0, 0%, 100%, 0.95);
  border: none;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  color: var(--fg);
  outline: none;
}
.contact-form input::placeholder { color: var(--muted-fg); }
.contact-form input:focus, .contact-form select:focus {
  box-shadow: 0 0 0 2px var(--primary);
}
.success-msg {
  text-align: center;
  padding: 2rem 0;
  animation: fadeUp 0.6s ease-out;
}
.success-msg svg { width: 64px; height: 64px; color: var(--primary-fg); margin: 0 auto 1rem; }
.success-msg h3 { font-size: 1.25rem; font-weight: 700; color: var(--primary-fg); margin-bottom: 0.5rem; }
.success-msg p { color: hsla(0, 0%, 100%, 0.9); margin-bottom: 1rem; }

/* ===== FOOTER ===== */
.site-footer { background: var(--fg); color: hsla(0, 0%, 100%, 0.8); }
.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0 2rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand .brand-name { font-weight: 700; font-size: 1.125rem; color: white; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.footer-brand .brand-name .highlight { color: var(--primary); }
.footer-brand p { font-size: 0.875rem; color: hsla(0, 0%, 100%, 0.6); line-height: 1.6; margin-bottom: 1rem; }
.footer-brand .footer-btns { display: flex; gap: 0.5rem; }
.site-footer h4 { font-weight: 600; color: white; margin-bottom: 1rem; }
.site-footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer ul li { font-size: 0.875rem; color: hsla(0, 0%, 100%, 0.6); }
.site-footer ul li a:hover { color: var(--primary); }
.site-footer .footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.6);
}
.site-footer .footer-contact li svg { color: var(--primary); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.4);
}
.footer-bottom p { margin-bottom: 0.5rem; }
.footer-links { display: flex; justify-content: center; gap: 1rem; margin-top: 0.75rem; }
.footer-links a { color: hsla(0, 0%, 100%, 0.5); font-size: 0.75rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }

/* ===== WHATSAPP FLOATING BTN ===== */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(142, 70%, 45%);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px hsla(142, 70%, 45%, 0.35);
  transition: all 0.3s;
  font-weight: 600;
  font-size: 0.875rem;
}
.wa-float:hover { background: hsl(142, 70%, 40%); transform: scale(1.05); box-shadow: 0 12px 32px hsla(142, 70%, 45%, 0.45); }
.wa-float svg { width: 20px; height: 20px; }
@media (max-width: 640px) { .wa-float span { display: none; } }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 2rem 0 4rem; }
.legal-page h1 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.legal-page .last-updated { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.25rem; font-weight: 600; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--fg); }
.legal-page p, .legal-page li { font-size: 0.9375rem; color: var(--muted-fg); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-page ul { padding-left: 1.25rem; list-style: disc; }
.legal-page a { color: var(--primary); }
.legal-page a:hover { text-decoration: underline; }
