/* ============================================
   Lexington Nutrition — Styles
   Palette: Burgundy (#9B1B30) + Blush (#F5D5D0)
   Fonts: Playfair Display + Nunito
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #3D1F2B;
  background-color: #FDF6F0;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: #9B1B30;
  color: #FDF6F0;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-weight: 700;
}
.skip-link:focus {
  top: 0;
}

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: #F7EAE4;
}

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

/* --- TYPOGRAPHY --- */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9B1B30;
  background: rgba(245, 213, 208, 0.7);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.25;
  color: #3D1F2B;
  margin-bottom: 1.25rem;
}

.title-accent {
  font-style: italic;
  color: #9B1B30;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #5C3A47;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: #9B1B30;
  color: #FDF6F0;
  border-color: #9B1B30;
  box-shadow: 0 4px 16px rgba(155, 27, 48, 0.3);
}
.btn-primary:hover {
  background: #7A1525;
  border-color: #7A1525;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(155, 27, 48, 0.4);
}

.btn-outline-light {
  background: transparent;
  color: #FDF6F0;
  border-color: rgba(253, 246, 240, 0.6);
}
.btn-outline-light:hover {
  background: rgba(253, 246, 240, 0.15);
  border-color: #FDF6F0;
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
}

.btn-large {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- HEADER --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(155, 27, 48, 0.1);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(155, 27, 48, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #3D1F2B;
}

.logo-text {
  letter-spacing: -0.01em;
}

.logo-accent {
  color: #9B1B30;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.9rem;
  color: #3D1F2B;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all 0.25s ease;
}
.main-nav a:not(.btn):hover {
  background: rgba(155, 27, 48, 0.08);
  color: #9B1B30;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  transition: background 0.25s ease;
}
.nav-toggle:hover {
  background: rgba(155, 27, 48, 0.08);
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #3D1F2B;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger {
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -6px; }
.hamburger::after  { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #9B1B30 0%, #B82D4A 30%, #D4546E 60%, #E8848C 85%, #F5D5D0 100%);
  padding: 7rem 0 0;
}

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

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #F5D5D0 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #C44D63 0%, transparent 70%);
  bottom: 5%;
  left: -5%;
  animation-delay: -3s;
}
.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #FDF6F0 0%, transparent 70%);
  top: 40%;
  left: 40%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -20px) scale(1.1); }
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(253, 246, 240, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem 4rem;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(253, 246, 240, 0.2);
  border: 1px solid rgba(253, 246, 240, 0.3);
  color: #FDF6F0;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #FDF6F0;
  margin-bottom: 1.25rem;
}

.hero-title-accent {
  font-style: italic;
  color: rgba(245, 213, 208, 0.85);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(253, 246, 240, 0.88);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(253, 246, 240, 0.12);
  border: 1px solid rgba(253, 246, 240, 0.2);
  border-radius: 60px;
  padding: 1rem 2rem;
  backdrop-filter: blur(8px);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #FDF6F0;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(253, 246, 240, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(253, 246, 240, 0.3);
  align-self: stretch;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* --- ABOUT --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(155, 27, 48, 0.15);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(155, 27, 48, 0.2);
  border: 4px solid #FDF6F0;
  max-width: 55%;
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-accent-card {
  position: absolute;
  top: -1rem;
  left: -1rem;
  background: #9B1B30;
  color: #FDF6F0;
  padding: 1.2rem 1.5rem;
  border-radius: 20px;
  max-width: 240px;
  box-shadow: 0 8px 24px rgba(155, 27, 48, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.about-accent-card svg {
  flex-shrink: 0;
}

.about-text .section-title {
  margin-top: 0.25rem;
}

.about-text p {
  color: #5C3A47;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 600;
  color: #3D1F2B;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- PRODUCTS --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: #FDF6F0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(155, 27, 48, 0.08);
  transition: all 0.35s ease;
  border: 1px solid rgba(155, 27, 48, 0.08);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(155, 27, 48, 0.15);
}

.product-img {
  overflow: hidden;
  height: 220px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img {
  transform: scale(1.06);
}

.product-body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-icon {
  width: 52px;
  height: 52px;
  background: #F5D5D0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #3D1F2B;
}

.product-body p {
  font-size: 0.95rem;
  color: #5C3A47;
  line-height: 1.7;
}

/* --- VISIT --- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.visit-desc {
  font-size: 1.05rem;
  color: #5C3A47;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-icon {
  width: 48px;
  height: 48px;
  background: #F5D5D0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit-detail dt {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9B1B30;
  margin-bottom: 0.2rem;
}

.visit-detail dd {
  color: #3D1F2B;
  font-weight: 600;
  line-height: 1.6;
}

.visit-detail a {
  color: #9B1B30;
  font-weight: 700;
  transition: color 0.2s ease;
}
.visit-detail a:hover {
  color: #7A1525;
  text-decoration: underline;
}

.visit-map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(155, 27, 48, 0.15);
}
.visit-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(155, 27, 48, 0.92);
  backdrop-filter: blur(8px);
  color: #FDF6F0;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #FDF6F0;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(155, 27, 48, 0.08);
  box-shadow: 0 4px 16px rgba(155, 27, 48, 0.06);
  transition: all 0.3s ease;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(155, 27, 48, 0.12);
}

.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: #F5D5D0;
  position: absolute;
  top: 0.8rem;
  right: 1.5rem;
}

.testimonial-text {
  font-size: 0.98rem;
  color: #5C3A47;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-weight: 700;
  color: #3D1F2B;
  font-size: 0.95rem;
}

.author-location {
  font-size: 0.8rem;
  color: #9B1B30;
  font-weight: 600;
}

/* --- CTA / CONTACT --- */
.cta {
  padding: 5rem 0;
}

.cta-card {
  background: linear-gradient(135deg, #9B1B30 0%, #B82D4A 50%, #D4546E 100%);
  border-radius: 32px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 20px 60px rgba(155, 27, 48, 0.3);
  overflow: hidden;
  position: relative;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 213, 208, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content .section-label {
  background: rgba(245, 213, 208, 0.25);
  color: #F5D5D0;
}

.cta-content .section-title {
  color: #FDF6F0;
}

.cta-content .title-accent {
  color: #F5D5D0;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(253, 246, 240, 0.85);
  line-height: 1.8;
}

.cta-form {
  position: relative;
  z-index: 1;
  background: rgba(253, 246, 240, 0.1);
  border: 1px solid rgba(253, 246, 240, 0.2);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(253, 246, 240, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(253, 246, 240, 0.12);
  border: 1.5px solid rgba(253, 246, 240, 0.25);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: #FDF6F0;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(253, 246, 240, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(253, 246, 240, 0.6);
  background: rgba(253, 246, 240, 0.18);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='rgba(253,246,240,0.7)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  color: rgba(253, 246, 240, 0.9);
}
.form-group select option {
  background: #9B1B30;
  color: #FDF6F0;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(74, 124, 89, 0.2);
  border: 1px solid rgba(74, 124, 89, 0.4);
  border-radius: 12px;
  color: #C8E6C9;
  font-weight: 700;
  font-size: 0.9rem;
}
.form-success.visible {
  display: flex;
}

/* --- FOOTER --- */
.site-footer {
  background: #3D1F2B;
  color: #F5D5D0;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 213, 208, 0.15);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: rgba(245, 213, 208, 0.7);
  line-height: 1.7;
  max-width: 280px;
}

.footer-nav h4,
.footer-contact h4,
.footer-hours h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #FDF6F0;
  margin-bottom: 1rem;
}

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

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(245, 213, 208, 0.7);
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: #F5D5D0;
}

.footer-contact address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(245, 213, 208, 0.7);
}
.footer-contact a {
  color: #F5D5D0;
  font-weight: 600;
  transition: color 0.2s ease;
}
.footer-contact a:hover {
  color: #FDF6F0;
  text-decoration: underline;
}

.footer-hours p {
  font-size: 0.9rem;
  color: rgba(245, 213, 208, 0.7);
  line-height: 1.7;
}
.footer-note {
  margin-top: 0.5rem;
  font-size: 0.82rem !important;
  color: rgba(245, 213, 208, 0.5) !important;
  font-style: italic;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(245, 213, 208, 0.5);
}
.footer-bottom p {
  margin: 0;
}

/* --- SCROLL REVEAL (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-images {
    max-width: 500px;
  }

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

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

  .cta-card {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 246, 240, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(155, 27, 48, 0.1);
    box-shadow: 0 8px 24px rgba(155, 27, 48, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
  }
  .main-nav li {
    width: 100%;
  }
  .main-nav a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    width: 100%;
  }
  .main-nav .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }
  .hero-stats {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 1rem;
  }
  .hero-stat-divider {
    display: none;
  }

  /* About */
  .about-images {
    max-width: 100%;
  }
  .about-img-secondary {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    margin-top: 1rem;
    border-width: 3px;
  }
  .about-accent-card {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    margin-top: 1rem;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-card {
    padding: 1.75rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.1rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
  }

  .cta-card {
    border-radius: 20px;
  }
  .cta-form {
    padding: 1.25rem;
  }
}
