/* ============================================
   WOE DOGGIE SOCIETY — Design System & Styles
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Primary palette */
  --sage: #6B8F71;
  --sage-light: #E8F0E9;
  --sage-dark: #4A6B4F;
  --sage-muted: #8BAA8F;

  --rose: #C4908C;
  --rose-light: #F5ECEA;
  --rose-dark: #A67470;
  --rose-muted: #D4ABA8;

  /* Neutrals */
  --charcoal: #2A2A2A;
  --dark-gray: #4A4A4A;
  --medium-gray: #6B6B6B;
  --light-gray: #D4D0CC;
  --pale-gray: #E8E5E2;

  /* Backgrounds */
  --cream: #FAF7F4;
  --white: #FFFFFF;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 80px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(42, 42, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(42, 42, 42, 0.08);
  --shadow-lg: 0 8px 30px rgba(42, 42, 42, 0.1);
  --shadow-card: 0 2px 8px rgba(42, 42, 42, 0.06), 0 8px 24px rgba(42, 42, 42, 0.06);

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

ul, ol {
  list-style: none;
}


/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: -0.005em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  font-size: 1.05rem;
  color: var(--dark-gray);
  max-width: 70ch;
}

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }


/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--space-2xl) 0;
}

.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--sage-light { background: var(--sage-light); }
.section--rose-light { background: var(--rose-light); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}


/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 165px;
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42, 42, 42, 0.06);
  z-index: 1000;
  transition: box-shadow 0.3s var(--ease-out);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav__logo img {
  height: 150px;
  width: auto;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.5rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark-gray);
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease-out);
  position: relative;
}

.nav__link:hover {
  color: var(--sage-dark);
  background: var(--sage-light);
}

.nav__link--active {
  color: var(--sage-dark);
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}

.nav__cta {
  margin-left: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: var(--sage);
  color: var(--white) !important;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s var(--ease-out);
}

.nav__cta:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 143, 113, 0.3);
}

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

.nav__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.nav__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* --- Hero Sections --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  margin-top: var(--nav-height);
  overflow: hidden;
}

.hero--page {
  min-height: 45vh;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 42, 42, 0.65) 0%,
    rgba(42, 42, 42, 0.35) 50%,
    rgba(107, 143, 113, 0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: var(--space-xl) 0;
}

.hero__tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rose-muted);
  margin-bottom: var(--space-sm);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-align: center;
  justify-content: center;
  line-height: 1.2;
}

.btn--primary {
  background: var(--sage);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 143, 113, 0.35);
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--sage-dark);
  border: 2px solid var(--sage);
}

.btn--outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--rose {
  background: var(--rose);
  color: var(--white);
}

.btn--rose:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 144, 140, 0.35);
  color: var(--white);
}

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

.btn--small {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}


/* --- Section Header --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: var(--space-xs);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin: 0 auto;
}

.section-header__line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--rose));
  border-radius: 3px;
  margin: var(--space-sm) auto 0;
}


/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.35s var(--ease-out);
  border: 1px solid rgba(42, 42, 42, 0.04);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-md);
}

.card__icon--sage {
  background: var(--sage-light);
  color: var(--sage-dark);
}

.card__icon--rose {
  background: var(--rose-light);
  color: var(--rose-dark);
}

.card h3 {
  margin-bottom: 0.75rem;
}

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


/* --- Image Cards (for services) --- */
.image-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.35s var(--ease-out);
  border: 1px solid rgba(42, 42, 42, 0.04);
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.image-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.image-card__body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.image-card__body h3 {
  margin-bottom: 0.6rem;
}

.image-card__body p {
  font-size: 0.95rem;
}


/* --- Stats / Highlights Bar --- */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.highlight {
  padding: var(--space-lg);
}

.highlight__icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.highlight__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.highlight__text {
  font-size: 0.9rem;
  color: var(--medium-gray);
}


/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(42, 42, 42, 0.04);
  position: relative;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.testimonial-card__quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--sage-muted);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-card__author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.testimonial-card__role {
  font-size: 0.85rem;
  color: var(--medium-gray);
}

.testimonials-placeholder {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--light-gray);
}

.testimonials-placeholder p {
  margin: 0 auto;
  color: var(--medium-gray);
  font-style: italic;
}


/* --- Forms --- */
.form {
  max-width: 640px;
}

.form--centered {
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group label .required {
  color: var(--rose);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--pale-gray);
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-out);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107, 143, 113, 0.12);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--light-gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-note {
  font-size: 0.82rem;
  color: var(--medium-gray);
  margin-top: 0.3rem;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}


/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 144, 140, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin: 0 auto var(--space-lg);
  position: relative;
}

.cta-banner .btn {
  position: relative;
}


/* --- Location / Map Section --- */
.location-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.location-block__text h2 {
  margin-bottom: var(--space-sm);
}

.location-block__text p {
  margin-bottom: var(--space-md);
}

.location-block__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location-block__image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}


/* --- How It Works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  counter-reset: step-counter;
}

.step {
  text-align: center;
  padding: var(--space-md);
  counter-increment: step-counter;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.92rem;
  margin: 0 auto;
}


/* --- Donate Info --- */
.donate-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.donate-method {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(42, 42, 42, 0.04);
}

.donate-method__icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.donate-method h3 {
  margin-bottom: 0.75rem;
}

.donate-method p {
  font-size: 0.95rem;
}

.donate-method .detail {
  background: var(--sage-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-top: var(--space-sm);
  font-weight: 600;
  color: var(--sage-dark);
  font-size: 0.95rem;
}


/* --- Footer --- */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-top: var(--space-sm);
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.footer__logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s var(--ease-out);
}

.footer__links a:hover {
  color: var(--rose-muted);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.footer__contact-icon {
  color: var(--sage-muted);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: all 0.25s var(--ease-out);
}

.footer__social a:hover {
  background: var(--sage);
  color: var(--white);
}


/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.visible {
  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; }


/* --- About Page Specific --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-content__text h2 {
  margin-bottom: var(--space-md);
}

.about-content__text p {
  margin-bottom: var(--space-sm);
}

.about-content__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-content__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}


/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .location-block { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .donate-methods { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }

  .container { padding: 0 1.25rem; }
  .section { padding: var(--space-xl) 0; }

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

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
    gap: 0.25rem;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.35s var(--ease-out);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__link {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
  }

  /* Mobile overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(42, 42, 42, 0.3);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }

  /* Layout adjustments */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero { min-height: 70vh; }
  .hero--page { min-height: 35vh; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

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

  .footer__inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer__bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }

  .cta-banner { padding: var(--space-lg); }
}

@media (max-width: 480px) {
  .hero { min-height: 60vh; }
  .nav__logo-text { font-size: 1.2rem; }
}
