/* ==========================================================================
   NIJA HEALTHCARE & HERBALS - MASTER STYLESHEET
   ========================================================================== */

:root {
  --forest-primary: #1b4332;
  --forest-light: #2d6a4f;
  --forest-accent: #40916c;
  --cream-white: #f8fcf9;
  --mint-badge: #98f2b1;
  --shadow-green: rgba(27, 67, 50, 0.12);
  --text-dark: #1a1a1a;
  --text-light: #666;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
  font-family: var(--font-body); 
  background-color: var(--cream-white); 
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.hidden { display: none !important; }

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0; background: var(--cream-white);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999; transition: opacity 0.6s ease;
}
.loader.done { opacity: 0; pointer-events: none; }
.loader-inner { text-align: center; color: var(--forest-primary); }
.loader-logo { font-size: 3rem; margin-bottom: 20px; animation: pulse 1.5s infinite; }
.loader-bar { width: 200px; height: 4px; background: rgba(27,67,50,0.1); border-radius: 4px; margin: 0 auto 10px; overflow: hidden; }
.loader-fill { height: 100%; background: var(--forest-primary); width: 0%; animation: loadFill 1.5s ease-in-out forwards; }
.loader-text { font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.9rem; }

@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes loadFill { to { width: 100%; } }

/* ── CANVAS & CURSOR ── */
#leafCanvas { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 1; }
.cursor { position: fixed; width: 8px; height: 8px; background: var(--forest-primary); border-radius: 50%; pointer-events: none; z-index: 9999; transition: transform 0.2s ease; transform: translate(-50%, -50%);}
.cursor-trail { position: fixed; width: 30px; height: 30px; border: 1px solid var(--forest-primary); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%);}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 20px 0; transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 20px var(--shadow-green);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; display: flex;
  justify-content: space-between; align-items: center; padding: 0 20px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { max-height: 69px; width: auto; object-fit: contain; }
.nav-logo-fallback { font-size: 1.4rem; font-weight: 700; color: var(--forest-primary); font-family: var(--font-heading); }
.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--forest-accent); }
.nav-actions { display: flex; gap: 15px; align-items: center; }
.nav-cart { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--forest-primary); position: relative; }
.cart-dot { position: absolute; top: 0; right: -5px; width: 8px; height: 8px; background: #ff4757; border-radius: 50%; }

.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 25px; height: 3px; background: var(--forest-primary); transition: 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: absolute; top: 100%; left: 0; width: 100%; background: white;
  display: flex; flex-direction: column; padding: 20px; gap: 15px;
  box-shadow: 0 10px 20px var(--shadow-green);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease;
}
.mobile-nav.open { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
.mobile-nav a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 1.1rem; }

/* ── BUTTONS ── */
.btn-primary-main {
  background: var(--forest-primary); color: white; border: none;
  padding: 14px 28px; border-radius: 50px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px; font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary-main:hover { background: var(--forest-light); transform: translateY(-2px); box-shadow: 0 5px 15px var(--shadow-green); }
.btn-ghost-main {
  background: transparent; color: var(--forest-primary); border: 2px solid var(--forest-primary);
  padding: 12px 28px; border-radius: 50px; cursor: pointer; font-weight: 600;
}
.btn-cta { background: var(--forest-primary); color: white; border: none; padding: 10px 20px; border-radius: 30px; cursor: pointer; font-weight: 600; }

/* ── HERO SECTION ── */
.hero { position: relative; min-height: 100vh; padding: 150px 20px 80px; display: flex; align-items: center; justify-content: center; z-index: 2;}
.hero-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; }
.hero-orb-1 { width: 400px; height: 400px; background: var(--mint-badge); top: -100px; left: -100px; }
.hero-orb-2 { width: 300px; height: 300px; background: #c084fc; bottom: -50px; right: 10%; }

.hero-eyebrow { font-weight: 600; color: var(--forest-accent); text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; display: flex; align-items: center; gap: 10px; margin-bottom: 20px;}
.eyebrow-dot { width: 8px; height: 8px; background: var(--forest-accent); border-radius: 50%; }
.hero-title { font-size: clamp(3rem, 5vw, 4.5rem); font-family: var(--font-heading); color: var(--text-dark); line-height: 1.1; margin-bottom: 20px; }
.hero-accent { color: var(--forest-accent); }
.hero-sub { font-size: 1.1rem; color: var(--text-light); margin-bottom: 30px; max-width: 90%; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.tag { padding: 6px 16px; background: white; border-radius: 20px; font-size: 0.85rem; font-weight: 500; color: var(--forest-primary); text-decoration: none; box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: 0.3s; }
.tag:hover { background: var(--forest-primary); color: white; }
.hero-btns { display: flex; gap: 20px; align-items: center; }

/* Stat Cards */
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card { background: white; padding: 25px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; }
.stat-card-lg { grid-column: span 2; display: flex; align-items: center; justify-content: center; gap: 20px; text-align: left; }
.stat-num { font-size: 2.5rem; font-family: var(--font-heading); font-weight: 700; color: var(--forest-primary); line-height: 1; }
.stat-num span { color: var(--forest-accent); font-size: 1.5rem; }
.stat-label { font-size: 0.9rem; color: var(--text-light); font-weight: 500; margin-top: 5px; }
.stat-icon { font-size: 2.5rem; color: #f1c40f; }
.stat-card-accent { background: var(--forest-primary); color: white; }
.stat-card-accent .stat-label { color: rgba(255,255,255,0.8); }
.stat-big-icon { font-size: 3rem; margin-bottom: 10px; }

/* ── UTILITIES & REVEALS ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { color: var(--forest-accent); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 10px; }
.section-title { font-size: 2.8rem; font-family: var(--font-heading); color: var(--text-dark); line-height: 1.2; }
.section-title em { color: var(--forest-primary); font-style: italic; }
.section-sub { max-width: 600px; margin: 15px auto 0; color: var(--text-light); }

.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.revealed { opacity: 1; transform: translate(0); }

/* ── PACKAGES SECTION ── */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.pkg-card { background: white; border-radius: 20px; padding: 30px; box-shadow: 0 10px 30px var(--shadow-green); position: relative; transition: transform 0.3s; z-index: 2; overflow: hidden; }
.pkg-card:hover { transform: translateY(-10px); }
.pkg-badge { position: absolute; top: 20px; right: 20px; background: #ff4757; color: white; padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.pkg-badge-gold { background: #f1c40f; color: #000; }
.pkg-color-bar { position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: var(--bar); }
.pkg-params { font-weight: 700; font-size: 0.9rem; margin-bottom: 10px; }
.pkg-name { font-size: 1.5rem; font-family: var(--font-heading); line-height: 1.2; margin-bottom: 15px; }
.pkg-price { font-size: 2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
.pkg-includes { font-size: 0.9rem; font-weight: 600; color: var(--text-light); border-bottom: 1px solid #eee; padding-bottom: 10px; margin-bottom: 15px; }
.pkg-list { list-style: none; margin-bottom: 25px; }
.pkg-list li { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.pkg-list i { font-size: 0.8rem; }
.pkg-btn { width: 100%; background: transparent; border: 2px solid var(--accent); color: var(--accent); padding: 12px; border-radius: 10px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.pkg-btn:hover { background: var(--accent); color: white; }
.pkg-featured { transform: scale(1.05); border: 2px solid #c084fc; box-shadow: 0 20px 40px rgba(192, 132, 252, 0.2); }
.pkg-featured:hover { transform: scale(1.05) translateY(-10px); }
.pkg-featured-label { position: absolute; top: 20px; left: 20px; font-size: 0.75rem; font-weight: 700; color: #c084fc; text-transform: uppercase; }

/* ── MARQUEE ── */
.marquee-strip { background: var(--forest-primary); color: white; padding: 15px 0; overflow: hidden; display: flex; white-space: nowrap; }
.marquee-track { display: flex; gap: 30px; animation: scroll 20s linear infinite; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.marquee-track .dot { color: var(--mint-badge); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── ABOUT SECTION ── */
.about-split, .why-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.about-images { position: relative; }
.about-img-main img { width: 100%; border-radius: 20px; object-fit: cover; }
.about-img-thumb { position: absolute; bottom: -30px; right: -30px; width: 50%; border: 10px solid var(--cream-white); border-radius: 20px; overflow: hidden; }
.about-img-thumb img { width: 100%; display: block; }
.about-years-badge { position: absolute; top: -20px; left: -20px; background: var(--forest-primary); color: white; width: 120px; height: 120px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 8px solid var(--cream-white); }
.years-num { font-size: 2rem; font-family: var(--font-heading); font-weight: 700; line-height: 1; }
.years-text { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; }
.about-body { color: var(--text-light); margin-bottom: 20px; font-size: 1.05rem; }
.about-actions { display: flex; gap: 20px; margin: 30px 0; }
.select-wrap { position: relative; }
.partner-select { appearance: none; background: white; border: 1px solid #ddd; padding: 14px 40px 14px 20px; border-radius: 50px; font-weight: 500; color: var(--text-dark); cursor: pointer; }
.select-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--forest-primary); }
.about-mini-stats { display: flex; gap: 30px; margin-top: 40px; border-top: 1px solid #ddd; padding-top: 30px; }
.mini-num { font-size: 1.8rem; font-weight: 700; color: var(--forest-primary); font-family: var(--font-heading); }
.mini-label { font-size: 0.85rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; }

/* ── GUARANTEE ── */
.guarantee-section { background: var(--forest-primary); padding: 80px 0; color: white; text-align: center; }
.guarantee-head .section-title { color: white; }
.highlight-word { color: var(--mint-badge); font-style: italic; }
.guarantee-head .section-sub { color: rgba(255,255,255,0.8); margin-bottom: 50px; }
.guarantee-row { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.g-pill { background: rgba(255,255,255,0.1); padding: 15px 30px; border-radius: 50px; display: flex; align-items: center; gap: 15px; border: 1px solid rgba(255,255,255,0.2); text-align: left; }
.g-icon { background: var(--mint-badge); color: var(--forest-primary); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.g-pill strong { font-size: 1.1rem; }
.g-pill span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ── WHY US ── */
.feature-list { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon { width: 50px; height: 50px; background: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--forest-primary); font-size: 1.5rem; box-shadow: 0 5px 15px var(--shadow-green); flex-shrink: 0; }
.feature-item strong { font-size: 1.1rem; color: var(--text-dark); display: block; margin-bottom: 5px; }
.feature-item p { color: var(--text-light); font-size: 0.95rem; }
.why-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-img-item img { width: 100%; border-radius: 20px; object-fit: cover; height: 250px; }
.why-shift-down { transform: translateY(30px); }
.why-shift-up { transform: translateY(-30px); }
.mt-8 { margin-top: 40px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; }
.contact-form-col { position: relative; z-index: 2; }
.contact-form { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 10px 30px var(--shadow-green); margin-top: 30px; }
.form-row { display: flex; gap: 20px; }
.form-group { margin-bottom: 20px; width: 100%; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.form-group input { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font-body); font-size: 1rem; }
.file-input-wrap { position: relative; }
.file-icon { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--text-light); }
.contact-info-col { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.contact-info-card { background: white; padding: 25px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
.contact-info-card h4 { font-size: 1.1rem; color: var(--forest-primary); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.contact-info-card p { color: var(--text-light); font-size: 0.95rem; }
.social-row { display: flex; gap: 15px; }
.social-chip { width: 40px; height: 40px; border-radius: 50%; background: var(--cream-white); display: flex; align-items: center; justify-content: center; color: var(--forest-primary); text-decoration: none; transition: 0.3s; }
.social-chip:hover { background: var(--forest-primary); color: white; }

/* ── FOOTER & NEWSLETTER ── */
.newsletter-card { background: var(--forest-light); color: white; padding: 50px; border-radius: 20px; display: flex; justify-content: space-between; align-items: center; margin-bottom: -50px; position: relative; z-index: 10; }
.newsletter-text h2 { font-size: 2.5rem; font-family: var(--font-heading); line-height: 1.1; margin-bottom: 10px; }
.newsletter-form-wrap { display: flex; background: white; padding: 5px; border-radius: 50px; width: 450px; }
.nl-input { border: none; padding: 15px 20px; width: 100%; border-radius: 50px; outline: none; font-family: var(--font-body); }
.nl-btn { border-radius: 50px; white-space: nowrap; }

.footer-social {display: flex;gap: 12px;align-items: center;}

.site-footer { background: #111; color: #fff; padding: 120px 20px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; margin-bottom: 30px; }
.footer-brand p { color: #aaa; margin: 20px 0; font-size: 0.95rem; max-width: 300px; }
.footer-logo { max-height: 69px; filter: brightness(0) invert(1); }
.footer-logo-fallback { font-size: 1.8rem; font-family: var(--font-heading); font-weight: 700; color: white; }
.footer-links-col h5 { font-size: 1.2rem; margin-bottom: 20px; color: white; font-family: var(--font-heading); }
.footer-links-col ul { list-style: none; }
.footer-links-col a { color: #aaa; text-decoration: none; display: block; margin-bottom: 12px; transition: 0.3s; }
.footer-links-col a:hover { color: var(--mint-badge); transform: translateX(5px); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; color: #777; font-size: 0.9rem; }
.footer-bottom-links a { color: #777; text-decoration: none; margin-left: 20px; }

/* ── MODALS & TOASTS ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; z-index: 2000; backdrop-filter: blur(5px); }
.modal-panel { background: white; padding: 40px; border-radius: 20px; width: 90%; max-width: 500px; position: relative; }
.modal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-light); }
.modal-header { text-align: center; margin-bottom: 30px; }
.modal-icon { font-size: 2.5rem; color: var(--forest-primary); margin-bottom: 10px; }
.modal-header h3 { font-size: 1.8rem; font-family: var(--font-heading); color: var(--text-dark); }
.modal-header p { color: var(--text-light); font-size: 0.9rem; }
.mf-group { margin-bottom: 15px; }
.mf-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 5px; color: var(--text-dark); }
.mf-group input, .mf-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font-body); }
.mf-row { display: flex; gap: 15px; }
.modal-submit { width: 100%; justify-content: center; margin-top: 10px; }

.toast { position: fixed; bottom: 30px; right: 30px; background: white; padding: 15px 25px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 15px; z-index: 3000; transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); border-left: 5px solid var(--forest-accent); }
.toast.hidden { transform: translateX(120%); opacity: 0; pointer-events: none; }
.toast-icon { color: var(--forest-accent); font-size: 1.5rem; }
.toast p { color: var(--text-light); font-size: 0.9rem; }

/* ── CORPORATE CAMPS SPECIFIC STYLES ── */
.camp-hero { padding: 180px 20px 100px; background: var(--forest-primary); color: white; text-align: center; position: relative; overflow: hidden; }
.camp-title { font-size: clamp(3rem, 5vw, 4.5rem); font-family: var(--font-heading); margin-bottom: 20px; line-height: 1.1; }
.camp-title em { color: var(--mint-badge); font-style: italic; }
.camp-sub { max-width: 700px; margin: 0 auto 30px; font-size: 1.1rem; color: rgba(255,255,255,0.8); }
.camp-gallery-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; margin: 50px 0; }
.camp-img-card { position: relative; z-index: 2; border-radius: 20px; overflow: hidden; }
.camp-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.camp-img-large { height: 500px; }
.camp-img-stack { display: flex; flex-direction: column; gap: 20px; height: 500px; }
.camp-img-stack .camp-img-card { flex: 1; }
.camp-img-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: white; font-weight: 600; font-family: var(--font-heading); font-size: 1.2rem; }
.camp-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin: 60px 0; border-top: 1px solid #ddd; padding-top: 60px; }
.camp-feat { text-align: center; }
.camp-feat-icon { width: 60px; height: 60px; background: var(--cream-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--forest-primary); font-size: 1.5rem; margin: 0 auto 20px; }
.camp-feat h4 { color: var(--text-dark); margin-bottom: 10px; font-size: 1.1rem; }
.camp-feat p { color: var(--text-light); font-size: 0.95rem; }
.camp-cta-banner { background: var(--mint-badge); border-radius: 20px; padding: 50px; display: flex; justify-content: space-between; align-items: center; }
.camp-cta-text h3 { font-size: 2rem; font-family: var(--font-heading); color: var(--forest-primary); line-height: 1.2; }
.camp-cta-text p { color: var(--forest-light); margin-top: 10px; font-weight: 500; }

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 992px) {
  .hero-grid, .about-split, .why-split, .contact-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-left, .about-content, .why-content { order: -1; }
  .hero-btns, .about-actions { justify-content: center; }
  .hero-tags { justify-content: center; }
  .about-img-thumb { width: 40%; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .footer-brand p { margin: 20px auto; }
  .camp-gallery-grid { grid-template-columns: 1fr; }
  .camp-img-large, .camp-img-stack { height: 350px; }
  .camp-cta-banner { flex-direction: column; text-align: center; gap: 30px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-stat-grid { grid-template-columns: 1fr; }
  .stat-card-lg { grid-column: span 1; flex-direction: column; text-align: center; }
  .newsletter-card { flex-direction: column; text-align: center; gap: 20px; padding: 40px 20px; }
  .newsletter-form-wrap { width: 100%; flex-direction: column; background: transparent; padding: 0; gap: 10px; }
  .nl-input { padding: 15px; }
  .nl-btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
  .footer-bottom-links a { margin: 0 10px; }
}