/* ============================================================
   Bunny Guru — Main Stylesheet
   Hercules Protection LLC
   Palette: Deep Teal #0D4F4F | Coral #F08080 | Warm White #FFF8F0 | Charcoal #2D2D2D
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2D2D2D;
  background: #FFF8F0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: #0D4F4F;
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover, a:focus-visible {
  color: #F08080;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* Focus */
:focus-visible {
  outline: 3px solid #F08080;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #F08080;
  color: #FFF8F0;
  padding: 8px 16px;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
}

.skip-link:focus {
  top: 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  color: #0D4F4F;
  line-height: 1.2;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  text-align: center;
  font-family: inherit;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: #F08080;
  color: #FFF8F0;
  border-color: #F08080;
}

.btn-primary:hover {
  background: #E55A5A;
  border-color: #E55A5A;
  color: #FFF8F0;
}

.btn-outline {
  background: transparent;
  color: #0D4F4F;
  border-color: #0D4F4F;
}

.btn-outline:hover {
  background: #0D4F4F;
  color: #FFF8F0;
}

.btn-light {
  background: #FFF8F0;
  color: #0D4F4F;
  border-color: #FFF8F0;
}

.btn-light:hover {
  background: #F08080;
  color: #FFF8F0;
  border-color: #F08080;
}

.btn-outline-light {
  background: transparent;
  color: #FFF8F0;
  border-color: #FFF8F0;
}

.btn-outline-light:hover {
  background: #FFF8F0;
  color: #0D4F4F;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFF8F0;
  border-bottom: 1px solid #E8DDD0;
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0D4F4F;
}

.logo-link:hover {
  color: #0D4F4F;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 4px;
}

.nav-list a {
  display: block;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #2D2D2D;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: #0D4F4F;
  color: #FFF8F0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 3px;
  background: #0D4F4F;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Section Shared --- */
section {
  padding: 100px 24px;
}

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

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #F08080;
  margin-bottom: 16px;
}

.section-tag-light {
  color: #FFF8F0;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0D4F4F;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 18px;
  color: #5A5A5A;
  max-width: 560px;
  margin: 0 auto;
}

.light-head .section-title,
.light-head .section-desc {
  color: #FFF8F0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0D4F4F;
  overflow: hidden;
  padding: 120px 24px 100px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-pattern svg {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #F08080;
  background: #0A3A3A;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(44px, 8vw, 80px);
  font-weight: 900;
  color: #FFF8F0;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-accent {
  color: #F08080;
}

.hero-subtitle {
  font-size: 20px;
  color: #C0D8D8;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.hero-angle {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #FFF8F0;
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  z-index: 3;
}

/* Floating cards */
.hero-float-cards {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.float-card {
  background: #0A3A3A;
  border: 1px solid #1A6B6B;
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #FFF8F0;
  font-weight: 600;
  font-size: 15px;
  backdrop-filter: blur(8px);
  animation: floatCard 6s ease-in-out infinite;
}

.float-card:nth-child(2) {
  animation-delay: 1.5s;
}

.float-card:nth-child(3) {
  animation-delay: 3s;
}

.float-card-icon {
  font-size: 24px;
}

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

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: #FFF8F0;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-auto-rows: auto;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid #E8DDD0;
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px #0D4F4F15;
}

.service-card.card-wide {
  grid-column: span 2;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.service-card.card-tall {
  grid-row: span 2;
}

.service-number {
  font-size: 64px;
  font-weight: 900;
  color: #E8DDD0;
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
  pointer-events: none;
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.service-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-size: 20px;
  font-weight: 800;
  color: #0D4F4F;
}

.service-desc {
  font-size: 15px;
  color: #5A5A5A;
  line-height: 1.7;
}

/* ============================================================
   VERTICALS (angled section)
   ============================================================ */
.verticals {
  position: relative;
  background: #0D4F4F;
  padding: 120px 24px;
}

.vertical-angle-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #FFF8F0;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.vertical-angle-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #FFF8F0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.verticals-scroll {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.vertical-item {
  background: #0A3A3A;
  border: 1px solid #1A6B6B;
  border-radius: 14px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 140px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.vertical-item:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: #F08080;
}

.vertical-icon {
  font-size: 36px;
}

.vertical-name {
  color: #FFF8F0;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: #FFF8F0;
  padding: 80px 24px;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid #E8DDD0;
  transition: transform 0.3s ease;
}

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

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #F08080;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: #5A5A5A;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: #FFF8F0;
}

.testimonial-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #E8DDD0;
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:nth-child(odd) {
  transform: rotate(-0.5deg);
}

.testimonial-card:nth-child(even) {
  transform: rotate(0.5deg);
}

.testimonial-card:hover {
  transform: rotate(0) translateY(-4px);
  box-shadow: 0 12px 40px #0D4F4F12;
}

.testimonial-stars {
  color: #F08080;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  color: #2D2D2D;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.testimonial-text::before {
  content: '\201C';
  position: absolute;
  left: -4px;
  top: -10px;
  font-size: 52px;
  color: #E8DDD0;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #E8DDD0;
  padding-top: 20px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0D4F4F;
  color: #FFF8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: #0D4F4F;
}

.testimonial-author span {
  font-size: 13px;
  color: #5A5A5A;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  position: relative;
  background: #0D4F4F;
  padding: 100px 24px;
  text-align: center;
}

.cta-angle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #FFF8F0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #FFF8F0;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.cta-desc {
  font-size: 18px;
  color: #C0D8D8;
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: #FFF8F0;
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hex {
  width: 200px;
  height: 200px;
}

.about-hex svg {
  width: 100%;
  height: 100%;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-lede {
  font-size: 20px;
  font-weight: 700;
  color: #0D4F4F;
  line-height: 1.5;
}

.about-text p {
  font-size: 16px;
  color: #5A5A5A;
  line-height: 1.8;
}

.about-address {
  margin-top: 12px;
  padding: 20px 24px;
  border-left: 4px solid #F08080;
  background: #FFFFFF;
  border-radius: 0 12px 12px 0;
  font-size: 15px;
  color: #2D2D2D;
  line-height: 1.7;
}

.about-address strong {
  color: #0D4F4F;
  font-size: 16px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: #FFFFFF;
}

.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #2D2D2D;
  letter-spacing: 0.3px;
}

.required {
  color: #F08080;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 14px 18px;
  border: 2px solid #E8DDD0;
  border-radius: 10px;
  background: #FFF8F0;
  color: #2D2D2D;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #F08080;
  box-shadow: 0 0 0 4px #F0808020;
  outline: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #D32F2F;
}

.form-error {
  font-size: 13px;
  color: #D32F2F;
  min-height: 18px;
}

.form-success {
  background: #0D4F4F;
  color: #FFF8F0;
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
}

.btn-submit {
  align-self: flex-start;
  padding: 16px 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  background: #FFF8F0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #E8DDD0;
}

.contact-detail strong {
  display: block;
  font-size: 14px;
  color: #5A5A5A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-detail a,
.contact-detail address,
.contact-detail span {
  font-size: 16px;
  color: #2D2D2D;
  line-height: 1.6;
}

.contact-detail a:hover {
  color: #F08080;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0D4F4F;
  color: #C0D8D8;
  padding: 64px 24px 32px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #FFF8F0;
  font-size: 20px;
  font-weight: 800;
}

.footer-logo:hover {
  color: #F08080;
}

.footer-tagline {
  font-size: 14px;
  color: #A0C0C0;
  line-height: 1.7;
}

.footer-heading {
  font-size: 15px;
  font-weight: 800;
  color: #FFF8F0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 15px;
  color: #C0D8D8;
}

.footer-links a:hover {
  color: #F08080;
}

.footer-contact address {
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact a {
  color: #C0D8D8;
}

.footer-contact a:hover {
  color: #F08080;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid #1A6B6B;
  text-align: center;
  font-size: 13px;
  color: #80A0A0;
}

/* ============================================================
   ANIMATIONS (Intersection Observer trigger)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   PRIVACY / TERMS PAGES
   ============================================================ */
.legal-page {
  padding: 80px 24px 100px;
  background: #FFF8F0;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-container h1 {
  font-size: 40px;
  font-weight: 900;
  color: #0D4F4F;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.legal-meta {
  font-size: 14px;
  color: #5A5A5A;
  margin-bottom: 40px;
}

.legal-container h2 {
  font-size: 24px;
  font-weight: 800;
  color: #0D4F4F;
  margin-top: 40px;
  margin-bottom: 14px;
  padding-top: 8px;
}

.legal-container h3 {
  font-size: 18px;
  font-weight: 700;
  color: #F08080;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-container p {
  font-size: 16px;
  color: #2D2D2D;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-container ul,
.legal-container ol {
  margin-bottom: 20px;
  padding-left: 28px;
}

.legal-container li {
  font-size: 16px;
  color: #2D2D2D;
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-container address {
  font-size: 16px;
  color: #2D2D2D;
  line-height: 1.8;
  margin-bottom: 16px;
  padding: 16px 20px;
  border-left: 4px solid #F08080;
  background: #FFFFFF;
  border-radius: 0 8px 8px 0;
}

.legal-container a {
  color: #F08080;
  font-weight: 600;
}

.legal-container a:hover {
  text-decoration: underline;
}

.legal-container strong {
  color: #0D4F4F;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-float-cards {
    display: none;
  }

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

  .service-card.card-wide {
    grid-column: span 1;
    flex-direction: column;
  }

  .service-card.card-tall {
    grid-row: auto;
  }

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

  .about-visual {
    order: -1;
  }

  .about-hex {
    width: 140px;
    height: 140px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  section {
    padding: 64px 16px;
  }

  .section-title {
    font-size: 30px;
  }

  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0D4F4F;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }

  .nav-list.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-list a {
    color: #FFF8F0;
    font-size: 20px;
    padding: 14px 28px;
  }

  .nav-list a:hover {
    background: #F08080;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 100px 16px 80px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .stat-number {
    font-size: 40px;
  }

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

  .testimonial-card:nth-child(odd),
  .testimonial-card:nth-child(even) {
    transform: none;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-container h1 {
    font-size: 30px;
  }

  .legal-container h2 {
    font-size: 20px;
  }
}

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

  .stat-card {
    padding: 24px 12px;
  }

  .stat-number {
    font-size: 34px;
  }

  .stat-label {
    font-size: 12px;
  }

  .cta-title {
    font-size: 26px;
  }

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