/* =====================================================
   SNEP WELLNESS — Stylesheet Feminin & Benessere
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* === CSS VARIABLES === */
:root {
  --pink:           #E8387E;
  --pink-light:     #FFB8D4;
  --pink-lighter:   #FFE3EE;
  --pink-dark:      #A72B57;
  --plum:           #A82E73;
  --plum-dark:      #5D1F42;
  --lavender:       #D67EC3;
  --lavender-light: #F6D9F3;
  --gold:           #FFC48E;
  --cream:          #FFF2EC;
  --white:          #FFFFFF;
  --text:           #361C32;
  --text-muted:     #8F5F78;
  --shadow-sm:  0 2px 12px rgba(232, 56, 126, 0.10);
  --shadow:     0 8px 32px rgba(232, 56, 126, 0.15);
  --shadow-lg:  0 16px 56px rgba(232, 56, 126, 0.20);
  --radius-sm:  12px;
  --radius:     20px;
  --radius-lg:  32px;
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--plum);
  line-height: 1.3;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--pink-light); border-radius: 50px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(253, 245, 243, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 84, 124, 0.15);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.navbar-logo {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--pink), var(--plum));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  overflow: hidden;
}
.navbar-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
/* Uniform profile image framing: show more above the head */
.navbar-logo img,
.about-logo-circle img {
  object-position: center 38%;
  transform: scale(0.94);
  transition: transform 0.18s ease, object-position 0.18s ease;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.brand-sub {
  font-size: 0.7rem;
  color: var(--pink);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-back {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--pink);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  transition: var(--transition);
  border: 1.5px solid var(--pink-light);
}
.nav-back:hover {
  background: var(--pink-light);
  border-color: var(--pink);
}

/* === LANGUAGE SWITCHER === */
.lang-switcher {
  display: flex;
  gap: 0.2rem;
  background: var(--pink-lighter);
  border-radius: 50px;
  padding: 0.3rem;
  border: 1px solid var(--pink-light);
}
.lang-btn {
  border: none;
  background: transparent;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-muted);
  font-family: 'Nunito', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', 'Apple Color Emoji', sans-serif;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--white);
  color: var(--plum);
  box-shadow: 0 2px 8px rgba(226, 84, 124, 0.2);
}

/* =====================================================
   HERO SECTIONS
   ===================================================== */
.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-landing  { background: linear-gradient(140deg, #FFF1F7 0%, #FFD7EE 45%, #FFF0EA 100%); }
.hero-products { background: linear-gradient(140deg, #FFF6F2 0%, #FFD1E0 50%, #FFECE2 100%); }
.hero-join     { background: linear-gradient(140deg, #FFE8F1 0%, #FFD2E8 50%, #FFF2EF 100%); }

.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}
.hero-deco-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(226, 84, 124, 0.15), transparent 70%);
  top: -120px; right: -80px;
  animation: floatDeco 8s ease-in-out infinite;
}
.hero-deco-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(176, 159, 200, 0.18), transparent 70%);
  bottom: -60px; left: 5%;
  animation: floatDeco 10s ease-in-out infinite reverse;
}
.hero-deco-3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201, 149, 122, 0.15), transparent 70%);
  top: 30%; left: -60px;
  animation: floatDeco 12s ease-in-out infinite 2s;
}
@keyframes floatDeco {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.05); }
}

.hero-content { position: relative; z-index: 1; max-width: 820px; }


.hero-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--plum), var(--pink-dark), var(--plum-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2.25rem;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--plum));
  color: white;
  box-shadow: 0 4px 20px rgba(226, 84, 124, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(226, 84, 124, 0.45); }
.btn-secondary {
  background: linear-gradient(135deg, var(--lavender), var(--plum));
  color: white;
  box-shadow: 0 4px 20px rgba(123, 63, 110, 0.3);
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(123, 63, 110, 0.4); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--pink);
  color: var(--pink);
}
.btn-outline:hover { background: var(--pink-light); transform: translateY(-2px); }
.btn-white {
  background: white;
  color: var(--plum);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22); }
.btn-lg { padding: 1.1rem 2.75rem; font-size: 1.1rem; }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.85rem; }

/* =====================================================
   LAYOUT
   ===================================================== */
.section         { padding: 5rem 2rem; }
.section-alt     { background: linear-gradient(180deg, white 0%, var(--lavender-light) 50%, white 100%); }
.section-pink    { background: linear-gradient(180deg, white 0%, var(--pink-lighter) 60%, white 100%); }
.container       { max-width: 1120px; margin: 0 auto; }
.section-header  { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title   { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 0.75rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

/* =====================================================
   URL CONFIG BANNER
   ===================================================== */
.url-config {
  background: rgba(255, 236, 241, 0.75);
  border: 2px dashed rgba(226, 84, 124, 0.4);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.url-config label {
  font-size: 0.82rem; font-weight: 700; color: var(--plum); white-space: nowrap;
}
.url-config input {
  flex: 1; min-width: 200px;
  border: 1.5px solid var(--pink-light);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  font-family: 'Nunito', sans-serif; font-size: 0.9rem; color: var(--text);
  background: white; outline: none; transition: var(--transition);
}
.url-config input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(226, 84, 124, 0.15);
}

/* =====================================================
   FEATURE CARDS (Landing page)
   ===================================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}
.feature-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(226, 84, 124, 0.1);
}
.feature-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.feature-card-header { padding: 2.5rem 2rem 1.75rem; text-align: center; }
.feature-icon {
  width: 90px; height: 90px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem;
}
.feature-icon-products { background: linear-gradient(135deg, #FFD7E1, #F2D3EE); }
.feature-icon-join     { background: linear-gradient(135deg, #F9E6F0, #F6D0E6); }
.feature-card-header h3 { font-size: 1.55rem; margin-bottom: 0.8rem; }
.feature-card-header p  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

.feature-card-body {
  padding: 1.5rem 2rem 2.25rem;
  border-top: 1px solid rgba(226, 84, 124, 0.08);
  background: linear-gradient(180deg, rgba(255, 230, 238, 0.25), transparent);
}
.feature-card-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* QR Code display inside cards */
.qr-display {
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem;
  margin-top: 1.75rem;
}
.qr-label {
  font-size: 0.75rem; font-weight: 700; color: var(--text-muted);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.qr-wrapper {
  background: white;
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  border: 2px solid var(--pink-light);
  display: inline-flex;
}

/* =====================================================
   PRODUCT CARDS
   ===================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(226, 84, 124, 0.1);
  position: relative;
  overflow: hidden;
}
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--lavender), var(--gold));
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
}
.product-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.product-card p  { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 1.25rem; }
.product-tags {
  display: flex; flex-wrap: wrap; gap: 0.45rem; justify-content: center;
}
.product-tag {
  background: var(--pink-light); color: var(--pink-dark);
  padding: 0.22rem 0.75rem;
  border-radius: 50px; font-size: 0.77rem; font-weight: 700;
}

/* =====================================================
   BENEFIT / FEATURE CARDS
   ===================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(226, 84, 124, 0.1);
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.benefit-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.benefit-card p  { font-size: 0.88rem; color: var(--text-muted); }

/* =====================================================
   STEPS
   ===================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.step {
  background: white;
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--pink), var(--plum));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 16px rgba(226, 84, 124, 0.35);
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.step p  { font-size: 0.9rem; color: var(--text-muted); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 84, 124, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 6rem; line-height: 1;
  color: var(--pink-light);
  z-index: 0;
}
.stars { display: flex; gap: 0.15rem; margin-bottom: 0.85rem; position: relative; z-index: 1; }
.stars span { font-size: 0.88rem; color: #FFC56B; }
.testimonial-text {
  position: relative; z-index: 1;
  color: var(--text); font-size: 0.93rem; font-style: italic;
  line-height: 1.8; margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.avatar {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; font-weight: 800; color: white;
  flex-shrink: 0; font-family: 'Nunito', sans-serif;
}
.av1 { background: linear-gradient(135deg, var(--pink), var(--pink-dark)); }
.av2 { background: linear-gradient(135deg, var(--lavender), var(--plum)); }
.av3 { background: linear-gradient(135deg, var(--gold), #E8877D); }
.av4 { background: linear-gradient(135deg, #E8ABCF, #A8427F); }
.av5 { background: linear-gradient(135deg, #FFCCA5, #E36C7F); }
.author-name {
  font-size: 0.95rem; font-weight: 700;
  font-family: 'Nunito', sans-serif; color: var(--plum);
  margin-bottom: 0.1rem;
}
.author-info { font-size: 0.8rem; color: var(--text-muted); }

/* =====================================================
   ABOUT SNEP SECTION
   ===================================================== */
.about-snep {
  background: white;
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid rgba(226, 84, 124, 0.1);
}
.about-logo-box {
  display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center;
}
.about-logo-circle {
  width: 120px; height: 120px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700;
  box-shadow: 0 8px 32px rgba(226, 84, 124, 0.3);
  overflow: hidden;
  border: 3px solid var(--pink-light);
}
.about-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--plum);
}
.about-logo-sub { font-size: 0.75rem; color: var(--text-muted); }
.about-text h3 { font-size: 1.7rem; margin-bottom: 0.8rem; }
.about-text p  { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.75rem; line-height: 1.8; }
.about-badges  { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.badge {
  background: var(--lavender-light); color: var(--plum);
  padding: 0.3rem 0.9rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 40%, var(--pink-dark) 80%, var(--lavender) 100%);
  padding: 5.5rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-section h2 {
  color: white; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 1.1rem;
}
.cta-section p  { font-size: 1.1rem; color: rgba(255,255,255,0.82); margin-bottom: 2.25rem; }

/* =====================================================
   PAGE QR CODE SECTION
   ===================================================== */
.page-qr-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 2.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 420px;
  margin: 3rem auto 0;
  border: 2px solid var(--pink-light);
}
.page-qr-wrap h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.page-qr-wrap p  { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.qr-inner { display: inline-flex; background: white; padding: 0.6rem; border-radius: 8px; border: 2px solid var(--pink-light); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,0.82);
  padding: 3.5rem 2rem 1.75rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: white; margin-bottom: 0.35rem;
}
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 1.75rem; }
.footer-links {
  display: flex; justify-content: center; gap: 1.75rem; flex-wrap: wrap; margin-bottom: 1.75rem;
}
.footer-links a {
  color: rgba(255,255,255,0.68); font-size: 0.9rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink-light); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.25rem 0 1rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.42); }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeInUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.25s; opacity: 0; }
.delay-3 { animation-delay: 0.4s; opacity: 0; }
.delay-4 { animation-delay: 0.55s; opacity: 0; }

/* IntersectionObserver animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .about-snep { grid-template-columns: 1fr; text-align: center; gap: 1.75rem; }
  .about-logo-box { flex-direction: row; justify-content: center; }
  .about-badges { justify-content: center; }
}
@media (max-width: 640px) {
  .navbar { padding: 0.65rem 1rem; flex-wrap: wrap; }
  .hero   { min-height: 55vh; padding: 3rem 1.25rem 2.5rem; }
  .section { padding: 3.5rem 1.25rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .about-snep { padding: 2rem 1.5rem; }
  .cta-section { padding: 4rem 1.25rem; }
}
