/* ==========================================================================
   Legal Leadz AI — Premium Legal Marketing Agency
   Design System: Editorial Luxury + Legal Authority
   Palette: Deep Navy, Warm Gold, Ivory, Charcoal
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* --- Design Tokens --- */
:root {
  --navy: #0B1B2E;
  --navy-deep: #060F1A;
  --navy-light: #132D4A;
  --gold: #C8A45C;
  --gold-light: #D4B876;
  --gold-muted: rgba(200, 164, 92, 0.15);
  --ivory: #F5F1EB;
  --ivory-warm: #FAF7F2;
  --charcoal: #2C3E50;
  --charcoal-light: #4A5568;
  --slate: #718096;
  --light-border: rgba(200, 164, 92, 0.2);
  --white: #FFFFFF;
  --success: #48BB78;
  --error: #E53E3E;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 3px rgba(11, 27, 46, 0.08);
  --shadow-md: 0 4px 20px rgba(11, 27, 46, 0.1);
  --shadow-lg: 0 10px 40px rgba(11, 27, 46, 0.15);
  --shadow-xl: 0 20px 60px rgba(11, 27, 46, 0.2);
  --shadow-gold: 0 4px 30px rgba(200, 164, 92, 0.2);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-dramatic: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1280px;
  --container-narrow: 960px;
  --container-wide: 1440px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory-warm);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }

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

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.15rem, 1.5vw, 1.4rem); }

p { font-size: 1.05rem; color: var(--charcoal-light); }
.lead { font-size: 1.25rem; line-height: 1.6; color: var(--charcoal); }

.gold-text { color: var(--gold); }
.navy-text { color: var(--navy); }
.italic { font-style: italic; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

.section {
  padding: 120px 0;
  position: relative;
}
.section--dark {
  background: var(--navy);
  color: var(--ivory);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--ivory); }
.section--dark p { color: rgba(245, 241, 235, 0.7); }
.section--dark .section-label { color: var(--gold-light); }

.section--ivory { background: var(--ivory); }
.section--white { background: var(--white); }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-smooth);
}
.nav.scrolled {
  background: rgba(11, 27, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__logo-accent {
  color: var(--gold);
  font-style: italic;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}
.nav__links a:hover { color: var(--white); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-smooth);
}
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--white); }
.nav__links a.active::after { width: 100%; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__phone {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-light) !important;
  letter-spacing: 0.02em;
}
.nav__phone:hover { color: var(--gold) !important; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--lg {
  padding: 18px 44px;
  font-size: 0.95rem;
}
.btn--sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 15, 26, 0.92) 0%,
    rgba(11, 27, 46, 0.8) 40%,
    rgba(11, 27, 46, 0.6) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 160px 40px 120px;
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 164, 92, 0.12);
  border: 1px solid rgba(200, 164, 92, 0.25);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 28px;
  font-weight: 700;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__subtitle {
  font-size: 1.3rem;
  color: rgba(245, 241, 235, 0.7);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Hero Stats Bar */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200, 164, 92, 0.15);
  border: 1px solid rgba(200, 164, 92, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 900px;
}
.hero__stat {
  background: rgba(11, 27, 46, 0.6);
  backdrop-filter: blur(10px);
  padding: 28px 24px;
  text-align: center;
}
.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: rgba(245, 241, 235, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Stats Counter Animation --- */
.counter { display: inline-block; }

/* --- Card Styles --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.card__body { padding: 32px; }
.card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.card__text {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}

/* --- Case Studies Grid --- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.result-card {
  background: rgba(200, 164, 92, 0.06);
  border: 1px solid rgba(200, 164, 92, 0.15);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--transition-smooth);
  transform-origin: top;
}
.result-card:hover::before { transform: scaleY(1); }
.result-card:hover {
  background: rgba(200, 164, 92, 0.1);
  transform: translateY(-2px);
}
.result-card__metric {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.result-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ivory);
  margin-bottom: 12px;
}
.result-card__client {
  font-size: 0.85rem;
  color: rgba(245, 241, 235, 0.5);
  font-weight: 500;
}

/* --- Services --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 48px 36px;
  transition: all var(--transition-smooth);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 164, 92, 0.3);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--gold-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 1.5rem;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.service-card__text {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* --- Partners / Trust Bar --- */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 48px 0;
  opacity: 0.5;
  filter: grayscale(1);
  transition: all var(--transition-smooth);
}
.trust-bar:hover {
  opacity: 0.8;
  filter: grayscale(0.3);
}
.trust-bar__item {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Testimonial --- */
.testimonial {
  position: relative;
  padding: 60px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.testimonial__quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold-muted);
  position: absolute;
  top: 20px;
  left: 40px;
  line-height: 1;
  pointer-events: none;
}
.testimonial__text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial__avatar {
  width: 48px;
  height: 48px;
  background: var(--gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
}
.testimonial__name {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}
.testimonial__role {
  font-size: 0.85rem;
  color: var(--slate);
}

/* --- About / Team --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(6, 15, 26, 0.8));
}
.about-content { padding: 20px 0; }

/* --- Process/Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 40px 32px;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold-muted);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.process-step__text {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* --- Contact Form --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 0;
}
.form-group--full {
  grid-column: 1 / -1;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 92, 0.15);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 164, 92, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--ivory); margin-bottom: 16px; }
.cta-banner p { color: rgba(245, 241, 235, 0.7); margin-bottom: 36px; }

/* --- Footer --- */
.footer {
  background: var(--navy-deep);
  color: rgba(245, 241, 235, 0.6);
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__brand {
  max-width: 320px;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__brand-name span { color: var(--gold); font-style: italic; }
.footer__brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer__links { display: flex; flex-direction: column; gap: 14px; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(245, 241, 235, 0.6);
  transition: color var(--transition-fast);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(200, 164, 92, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a:hover { color: var(--gold); }

/* --- Hamburger --- */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
}

/* --- Page Header (for inner pages) --- */
.page-header {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--navy-deep));
  pointer-events: none;
}
.page-header__content {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.page-header p {
  color: rgba(245, 241, 235, 0.7);
  font-size: 1.2rem;
  max-width: 600px;
}
.page-header .section-label { color: var(--gold-light); }

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --- Decorative Elements --- */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}
.gold-line--center { margin: 0 auto 24px; }

.divider {
  border: none;
  height: 1px;
  background: rgba(200, 164, 92, 0.15);
  margin: 40px 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .section { padding: 80px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }

  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 27, 46, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px 40px;
    gap: 20px;
  }

  .hero__content { padding: 140px 24px 80px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .results-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer__legal { justify-content: center; }

  .testimonial { padding: 40px 28px; }
  .testimonial__text { font-size: 1.2rem; }
  .cta-banner { padding: 48px 28px; }
}

@media (max-width: 480px) {
  .hero__stat-number { font-size: 1.6rem; }
  .hero__stat { padding: 20px 16px; }
  .nav__logo { font-size: 1.2rem; }
}
