@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');


:root {
  --gold: #dc2626;
  --gold-light: #dc2626;
  --gold-dark: #9A7B2F;
  --deep-plum: #2A0A2E;
  --plum: #4A1A52;
  --plum-mid: #6B2D78;
  --cream: #FFF8F0;
  --white: #FFFFFF;
  --charcoal: #1A1A2E;
  --rose: #D4607A;
  --rose-soft: #F2C4CE;
  --teal: #2A7B7B;
  --theme-black:#1d1d1d;

  --theme-red:#dc2626;
--themelight-red:#fef5f6;
--theme-black:#1d1d1b;
--white:#fff;
--gray:linear-gradient(135deg, #f8fafc, #f1f5f9);
--light-yellow:#fffdf9;
--yellow:#f9cc01;

}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

.equalPadding-T{padding-top:65px;}
.equalPadding-B{padding-bottom:65px;}
/*.common-form{
  background:var(--white);
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  width: 460px;
  margin: auto;

}*/
.bg-red{background-color: var(--theme-red);}
.bg-gray{background: var(--gray);}
.row input, .row select {
  height: 50px !important;
  border: 1px solid #dde1e6;
  width: 100%;
  border-radius: .5rem;
  padding-left: 15px;
  background: #fafbfc;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-red {
  background:var(--theme-red);
  color: #fff !important;
  box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.4);
}
.btn-border-black{border:1px solid var(--theme-black);color: var(--theme-black);}
/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /*background: linear-gradient(135deg, var(--deep-plum) 0%, var(--plum) 40%, var(--plum-mid) 100%);*/
  overflow: hidden;
  background: var(--white);
}

/*.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(200,162,78,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212,96,122,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(107,45,120,0.3) 0%, transparent 70%);
}*/

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px);
}

.hero-float-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,162,78,0.15);
  animation: floatSlow 12s ease-in-out infinite;
}
.hero-float-circle:nth-child(1) { width: 400px; height: 400px; top: -100px; right: -100px; }
.hero-float-circle:nth-child(2) { width: 250px; height: 250px; bottom: -50px; left: -80px; animation-delay: -4s; }
.hero-float-circle:nth-child(3) { width: 180px; height: 180px; top: 40%; left: 60%; animation-delay: -8s; border-color: rgba(212,96,122,0.1); }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}



.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
  backdrop-filter: blur(0px);
}

.nav.scrolled {
  background: rgba(42,10,46,0.95);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--deep-plum);
  font-size: 18px;
}

.nav-logo-text {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.nav-logo-text span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep-plum);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,162,78,0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 60px 80px;
  align-items: center;
}

.hero-left {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: var(--themelight-red);
  border: 1px solid var(--theme-red);

  padding: 8px 20px;
  border-radius: 50px;
  color: var(--theme-red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  /*opacity: 0.6;*/
}
.trusted-logos span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #374151;
}
.logo-slider {
    overflow: hidden;
    width: 100%;
   
}
.image-row {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scroll-left 35s linear infinite;
}

.image-row img {
    height: 60px;
    width: auto;
    flex-shrink: 0;
    
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.hero-badge::before {
  content: '✦';
  color: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--theme-black);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0.4;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--theme-black);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 300;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep-plum);
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200,162,78,0.4);
}

.btn-primary svg { width: 18px; height: 18px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  padding: 18px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
}

/* Hero Right - Image Mosaic */
.hero-right {
  position: relative;
  height: 560px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 100%;
  transform: rotate(2deg);
}

.mosaic-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: transform 0.5s;
}

.mosaic-item:hover { transform: scale(1.03); }

.mosaic-item:nth-child(1) { grid-row: span 2; }

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

.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,10,46,0.6) 0%, transparent 50%);
}

.mosaic-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background:var(--white);
  color: var(--theme-black);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === TRUSTED STRIP === */
.trust-strip {
  background: var(--white);
  padding: 48px 60px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--plum-mid);
  margin-bottom: 28px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.55;
}

.trust-logo {
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--charcoal);
  white-space: nowrap;
}

/* === STATS BAR === */
.stats-bar {
  background: var(--charcoal);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: -40px auto 0;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color:var(--white);
  font-weight: 400;
  line-height: 1.4;
}

/* === WHY NOMINATE === */
.why-section {
  padding: 120px 60px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--theme-red);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--theme-black);
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto;
}

.section-title em {
  font-style: italic;
  color: var(--theme-red);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid rgba(0,0,0,0.04);
  cursor: default;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(74,26,82,0.1);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.why-icon.purple { background: rgba(74,26,82,0.08); }
.why-icon.gold { background: rgba(200,162,78,0.12); }
.why-icon.rose { background: rgba(212,96,122,0.1); }
.why-icon.teal { background: rgba(42,123,123,0.1); }

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* === METHODOLOGY === */
.method-section {
  background:var(--white);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.method-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,1) 80px, rgba(255,255,255,1) 81px),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,1) 80px, rgba(255,255,255,1) 81px);
}

.method-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.method-section .section-tag { color: var(--theme-red); }

.method-section .section-title em { color: var(--gold); }

.method-steps {
 /* display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
  width: 25%;*/
  position: relative;
  margin-top: 72px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

/*.method-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rose), var(--gold));
  opacity: 0.3;
}*/

.method-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  width: 25%;
}

.step-num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:var(--theme-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(200,162,78,0.3);
}

.method-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--theme-black);
  margin-bottom: 12px;
}

.method-step p {
  font-size: 13px;
  color: var(--theme-black);
  line-height: 1.6;
}

/* === IMPACT IMAGE SECTION === */
.impact-section {
  padding: 120px 60px;
  max-width: 1280px;
  margin: 0 auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.impact-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

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

.impact-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background:var(--theme-black);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.impact-image-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.impact-image-badge-text {
  color: var(--white);
  font-size: 13px;
  line-height: 1.5;
}

.impact-image-badge-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.impact-content { }

.impact-content .section-tag { text-align: left; }

.impact-content .section-title {
  text-align: left;
  margin: 0 0 24px 0;
  font-size: 40px;
}

.impact-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}

.impact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}

.impact-list li::before {
  content: '✦';
  color: var(--theme-red);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* === TESTIMONIAL === */
.testimonial-section {
  background: var(--white);
  padding: 100px 60px;
}

.testimonial-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 32px;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -40px;
  left: -20px;
  line-height: 1;
}

.testimonial-author {
  font-weight: 600;
  font-size: 15px;
  color: var(--theme-red);
}

.testimonial-author span {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

/* === WHO SECTION === */
.who-section {
  padding: 120px 60px;
  max-width: 1280px;
  margin: 0 auto;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 72px;
}

.who-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s;
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(74,26,82,0.08);
  border-color: var(--gold);
}

.who-emoji {
  font-size: 40px;
  margin-bottom: 20px;
}

.who-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.who-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

/* === CTA SECTION === */
.cta-section {
  /*background: var(--theme-black);*/
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,162,78,0.08) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section .section-title {
  color: var(--theme-black);
  margin-bottom: 20px;
  font-size: 48px;
}

.cta-section .section-title em { color: var(--gold); }

.cta-subtitle {
  color:var(--theme-black);
  font-size: 17px;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.cta-deadline {
  margin-top: 28px;
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 500;
}

.cta-deadline strong {
  color: var(--gold);
}

/* === COUNTDOWN === */
.countdown-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

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

.countdown-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--theme-black);
  line-height: 1;
  display: block;
}

.countdown-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color:var(--theme-black);
  margin-top: 6px;
}

/* === FOOTER === */
.footer {
  background: var(--theme-black);
  padding: 48px 60px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--deep-plum);
  font-size: 16px;
}

.footer-logo-name {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}

.footer p {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  line-height: 1.6;
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* === STICKY CTA MOBILE === */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(42,10,46,0.97);
  backdrop-filter: blur(20px);
  padding: 16px 24px;
  z-index: 99;
  justify-content: center;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; padding: 140px 40px 80px; }
  .hero-right { display: none; }
  .hero-title { font-size: 44px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); margin: -30px 20px 0; }
  .stat-item:nth-child(2)::after { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .method-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .method-steps::before { display: none; }
  .impact-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
}

@media (max-width: 640px) {
  .hero-content { padding: 130px 24px 60px; }
  .hero-title { font-size: 34px; }
  .hero-subtitle { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 36px 24px; gap: 28px; }
  .stat-number { font-size: 36px; }
  .stat-item::after { display: none !important; }
  .why-grid, .who-grid { grid-template-columns: 1fr; }
  .method-steps { flex-direction: column;}
  .method-step{ width: 100%;}
  .section-title { font-size: 32px; }
  .cta-section .section-title { font-size: 34px; }
  .sticky-cta { display: flex; }
  .testimonial-quote { font-size: 20px; }
  .impact-image { aspect-ratio: 3/4; }
  .why-section, .impact-section, .who-section { padding: 80px 24px; }
  .method-section, .testimonial-section, .cta-section { padding: 80px 24px; }
  .trust-strip { padding: 36px 24px; }
  .trust-logos { gap: 24px; }
  .footer { padding: 36px 24px; }
}