/* ── CSS Variables ── */
:root {
    --bg: #ffffff;
    --fg: hsl(150 10% 15%);
    --card: hsl(150 8% 97%);
    --border: hsl(150 8% 88%);
    --muted: hsl(150 5% 45%);
    --primary: hsl(0 72% 51%);
    --primary-fg: #fff;
    --accent: hsl(150 60% 28%);
    --dark-green: hsl(100 80% 22%);
    --dark-green-fg: #fff;
    --radius: 0.75rem;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Hind Siliguri', 'Inter', sans-serif; color: var(--fg); background: var(--bg); line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: 'Space Grotesk', 'Hind Siliguri', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ── Utilities ── */
.text-primary { color: var(--primary); }
.section-padding { padding: 4rem 1rem; }
.section-container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
.section-container-sm { max-width: 48rem; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; }
.section-header p { color: var(--muted); margin-top: 0.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.section-header-light { color: #fff; }
.section-header-light h2 { color: #fff; }
.section-badge, .section-badge-primary, .section-badge-accent { display: inline-block; padding: 0.25rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; margin-bottom: 1rem; }
.section-badge { background: rgba(46,125,50,0.1); color: var(--dark-green); border: 1px solid rgba(46,125,50,0.2); }
.section-badge-primary { background: rgba(220,38,38,0.1); color: var(--primary); border: 1px solid rgba(220,38,38,0.2); }
.section-badge-accent { background: rgba(46,125,50,0.1); color: var(--accent); border: 1px solid rgba(46,125,50,0.2); }
.badge-light { display: inline-block; padding: 0.25rem 1rem; border-radius: 9999px; font-size: 0.875rem; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.1); margin-bottom: 1rem; }

/* ── Notice Banner ── */
.notice-banner { position: fixed; top: 0; left: 0; right: 0; z-index: 60; background: #dc2626; height: 2rem; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.1); }
.notice-marquee { white-space: nowrap; display: flex; color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 500; animation: marquee 40s linear infinite; }
.notice-marquee span { margin: 0 4rem; }
.notice-close { position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: #000; border-radius: 50%; width: 1.5rem; height: 1.5rem; cursor: pointer; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; }

/* ── Navbar ── */
.navbar { position: fixed; left: 0; right: 0; z-index: 50; transition: all 0.5s; background: transparent; }
.navbar-with-banner { top: 2rem; }
.navbar-no-banner { top: 0; }
.navbar-scrolled { background: rgba(30,70,10,0.95); backdrop-filter: blur(16px); box-shadow: 0 4px 20px rgba(30,70,10,0.2); }
.nav-container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.nav-logo { display: flex; align-items: center; gap: 0.5rem; font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; }
.nav-logo-icon { width: 2rem; height: 2rem; border-radius: 0.5rem; background: #ff0505; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 900; color: #fff; }
.nav-logo-bd { opacity: 0.8; }
.nav-links { display: none; align-items: center; gap: 0.25rem; }
.nav-links a { padding: 0.5rem 1rem; font-size: 0.875rem; color: rgba(255,255,255,0.75); border-radius: 0.5rem; transition: all 0.2s; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-cta { margin-left: 0.75rem; padding: 0.625rem 1.25rem !important; border-radius: 0.75rem !important; background: var(--primary) !important; color: var(--primary-fg) !important; font-weight: 600 !important; }
.nav-toggle { display: block; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 0.5rem; border-radius: 0.5rem; }
.nav-toggle:hover { background: rgba(255,255,255,0.1); }
.nav-mobile { display: flex; flex-direction: column; background: rgba(30,70,10,0.98); backdrop-filter: blur(16px); border-top: 1px solid rgba(255,255,255,0.1); padding: 0.5rem 1rem 1.25rem; }
.nav-mobile a { display: block; padding: 0.625rem 1rem; color: rgba(255,255,255,0.75); border-radius: 0.5rem; font-size: 0.875rem; }
.nav-mobile a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-mobile .nav-cta { text-align: center; margin-top: 0.5rem; }

@media (min-width: 768px) {
    .nav-links { display: flex; }
    .nav-toggle { display: none; }
}

/* ── Hero ── */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(160deg, hsl(100 80% 22%) 0%, hsl(120 60% 15%) 40%, hsl(150 40% 12%) 100%); }
.hero-blobs { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(48px); animation: blob 8s ease-in-out infinite; }
.blob-1 { top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; background: rgba(220,38,38,0.2); }
.blob-2 { bottom: 5rem; right: 2.5rem; width: 24rem; height: 24rem; background: rgba(46,125,50,0.15); animation-delay: 2s; }
.blob-3 { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 31rem; height: 31rem; background: rgba(255,255,255,0.05); }
.hero-grid-overlay { position: absolute; inset: 0; opacity: 0.03; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 60px 60px; }
.hero-container { position: relative; z-index: 10; max-width: 80rem; margin: 0 auto; padding: 8rem 1rem 4rem; width: 100%; }
.hero-content { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 500; margin-bottom: 2rem; backdrop-filter: blur(4px); }
.pulse-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
.hero-title { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-gradient-text { background: linear-gradient(135deg, hsl(0 72% 60%), hsl(30 90% 60%)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { color: rgba(255,255,255,0.7); font-size: 1.125rem; max-width: 28rem; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-primary-red { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; border-radius: 0.75rem; background: #f70808; color: #fff; font-weight: 600; font-size: 1.125rem; box-shadow: 0 0 20px rgba(220,38,38,0.3); transition: all 0.3s; }
.btn-primary-red:hover { filter: brightness(1.1); box-shadow: 0 0 30px rgba(220,38,38,0.5); }
.btn-glass { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2rem; border-radius: 0.75rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-weight: 600; font-size: 1.125rem; backdrop-filter: blur(4px); transition: all 0.3s; }
.btn-glass:hover { background: rgba(255,255,255,0.2); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat-card { backdrop-filter: blur(12px); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 1rem; padding: 1rem; text-align: center; }
.stat-icon { font-size: 1.25rem; display: block; margin-bottom: 0.5rem; }
.stat-number { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; }
.stat-number::after { content: '+'; }
.stat-card p { color: rgba(255,255,255,0.6); font-size: 0.75rem; margin-top: 0.25rem; }
.glass-card { backdrop-filter: blur(12px); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 1rem; padding: 1rem; }
.brand-label { color: rgba(255,255,255,0.5); font-size: 0.7rem; font-weight: 500; text-align: center; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.brand-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.brand-pill { padding: 0.375rem 0.75rem; border-radius: 0.5rem; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); font-size: 0.875rem; font-weight: 500; border: 1px solid rgba(255,255,255,0.1); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.trust-strip span { display: flex; align-items: center; gap: 0.375rem; color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { width: 100%; height: auto; fill: var(--bg); display: block; }

@media (min-width: 1024px) {
    .hero-content { grid-template-columns: 1fr 1fr; }
    .hero-right { display: flex; flex-direction: column; gap: 1.5rem; }
}

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; position: relative; }
.step-connector { display: none; }
.step-card { text-align: center; }
.step-icon-wrap { position: relative; width: 5rem; height: 5rem; border-radius: 50%; background: rgba(220,38,38,0.15); border: 2px solid rgba(220,38,38,0.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.step-emoji { font-size: 2rem; }
.step-number { position: absolute; top: -0.5rem; right: -0.5rem; width: 1.75rem; height: 1.75rem; border-radius: 50%; background: var(--primary); color: #fff; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(220,38,38,0.3); }
.step-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.6; }
@media (min-width: 768px) {
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .step-connector { display: block; position: absolute; top: 4rem; left: 20%; right: 20%; height: 2px; background: linear-gradient(90deg, rgba(220,38,38,0.5), var(--primary), rgba(220,38,38,0.5)); }
}

/* ── Plans ── */
.plans-section { position: relative; }
.plans-filter { display: flex; flex-direction: column; gap: 0.75rem; max-width: 40rem; margin: 0 auto 2rem; align-items: center; }
.search-wrap { width: 100%; position: relative; }
.search-wrap input { width: 100%; padding: 0.75rem 1rem 0.75rem 2.5rem; border-radius: 0.75rem; border: 1px solid var(--border); background: var(--card); font-size: 0.875rem; outline: none; transition: all 0.3s; }
.search-wrap input:focus { border-color: var(--dark-green); box-shadow: 0 0 0 3px rgba(46,125,50,0.15); }
.search-wrap::before { content: '🔍'; position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); font-size: 0.875rem; }
.filter-buttons { display: flex; gap: 0.375rem; }
.filter-btn { padding: 0.625rem 1rem; border-radius: 0.75rem; border: none; font-size: 0.75rem; font-weight: 600; cursor: pointer; transition: all 0.2s; background: var(--card); color: var(--muted); }
.filter-btn.active { background: var(--dark-green); color: var(--dark-green-fg); box-shadow: 0 4px 12px rgba(46,125,50,0.2); }
@media (min-width: 640px) { .plans-filter { flex-direction: row; } }

.plans-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .plans-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .plans-grid { grid-template-columns: repeat(4, 1fr); } }

.plan-card { position: relative; border-radius: 1rem; border: 1px solid var(--border); background: var(--card); padding: 1.5rem; display: flex; flex-direction: column; overflow: hidden; transition: all 0.5s; }
.plan-card:hover { border-color: rgba(46,125,50,0.4); box-shadow: 0 8px 30px -8px rgba(46,125,50,0.12); }
.plan-popular { border-color: rgba(220,38,38,0.6); box-shadow: 0 0 30px -5px rgba(220,38,38,0.15); }
.plan-accent-line { position: absolute; top: 0; left: 0; right: 0; height: 4px; opacity: 0.8; transition: opacity 0.5s; }
.plan-card:hover .plan-accent-line { opacity: 1; }
.accent-primary { background: linear-gradient(90deg, var(--primary), rgba(220,38,38,0.8), var(--primary)); }
.accent-green { background: linear-gradient(90deg, rgba(46,125,50,0.6), var(--dark-green), rgba(46,125,50,0.6)); }
.popular-badge { position: absolute; top: 0; left: 50%; transform: translateX(-50%) translateY(0.5rem); background: var(--primary); color: #fff; font-size: 0.625rem; font-weight: 700; padding: 0.25rem 1rem; border-radius: 0 0 0.5rem 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; box-shadow: 0 4px 12px rgba(220,38,38,0.3); z-index: 10; }
.discount-badge { position: absolute; top: 0.75rem; right: 0.75rem; background: var(--dark-green); color: #fff; font-size: 0.625rem; font-weight: 700; padding: 0.25rem 0.625rem; border-radius: 9999px; box-shadow: 0 2px 8px rgba(46,125,50,0.2); }
.plan-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; margin-top: 0.5rem; }
.plan-logo { width: 3rem; height: 3rem; border-radius: 0.75rem; background: rgba(46,125,50,0.1); border: 1px solid rgba(46,125,50,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: transform 0.3s; }
.plan-card:hover .plan-logo { transform: scale(1.1); }
.plan-header h3 { font-size: 1.125rem; font-weight: 700; line-height: 1.2; }
.plan-type { font-size: 0.75rem; color: var(--muted); font-weight: 500; }
.plan-options { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 1rem; }
.opt-btn { font-size: 0.6875rem; padding: 0.375rem 0.75rem; border-radius: 0.5rem; border: none; font-weight: 600; cursor: pointer; transition: all 0.2s; background: rgba(150,150,150,0.15); color: var(--muted); }
.opt-btn.active { background: var(--dark-green); color: var(--dark-green-fg); box-shadow: 0 2px 8px rgba(46,125,50,0.2); }
.opt-btn:hover:not(.active) { background: rgba(46,125,50,0.1); color: var(--dark-green); }
.plan-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; font-size: 0.75rem; }
.stars { color: #facc15; }
.rating-num { font-weight: 600; }
.review-count { color: var(--muted); }
.sold-count { margin-left: auto; color: var(--muted); font-size: 0.625rem; }
.plan-price { margin-bottom: 1rem; display: flex; align-items: baseline; gap: 0.25rem; }
.price-amount { font-family: 'Space Grotesk', sans-serif; font-size: 2.25rem; font-weight: 800; color: var(--primary); }
.price-currency { font-size: 0.75rem; color: var(--muted); }

.screen-plans-toggle, .plan-features-toggle { margin-bottom: 0.75rem; }
.toggle-screens-btn, .toggle-features-btn { background: none; border: none; cursor: pointer; font-size: 0.75rem; color: var(--muted); font-weight: 600; padding: 0; transition: color 0.2s; }
.toggle-screens-btn:hover, .toggle-features-btn:hover { color: var(--fg); }
.toggle-screens-btn { color: var(--dark-green); }
.screen-plans-list { margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.375rem; }
.screen-plan-item { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; background: rgba(46,125,50,0.05); border: 1px solid rgba(46,125,50,0.1); border-radius: 0.5rem; padding: 0.625rem 0.75rem; transition: background 0.2s; }
.screen-plan-item:hover { background: rgba(46,125,50,0.1); }
.sp-price { font-weight: 700; color: var(--primary); }
.features-list { list-style: none; margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.features-list li { font-size: 0.75rem; color: rgba(0,0,0,0.6); display: flex; align-items: center; gap: 0.5rem; }
.plan-buy-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 0.875rem; border-radius: 0.75rem; background: var(--primary); color: #fff; font-weight: 700; font-size: 0.875rem; margin-top: auto; transition: all 0.3s; }
.plan-buy-btn:hover { box-shadow: 0 0 25px -3px rgba(220,38,38,0.4); transform: scale(1.02); }
.no-results { text-align: center; color: var(--muted); padding: 4rem 0; font-size: 1.125rem; }

/* ── Why Choose Us ── */
.why-section { position: relative; padding: 5rem 0; overflow: hidden; background: var(--dark-green); }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card { position: relative; padding: 1.5rem; border-radius: 1rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); transition: all 0.5s; cursor: default; overflow: hidden; }
.feature-card:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.1); }
.feature-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.feature-card h3 { color: #fff; font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature-card p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-left h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 1.5rem; }
.about-left p { color: var(--muted); font-size: 1.125rem; line-height: 1.7; }
.about-highlights { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .about-highlights { grid-template-columns: repeat(2, 1fr); } }
.highlight-item { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; border-radius: 0.75rem; background: rgba(46,125,50,0.05); border: 1px solid rgba(46,125,50,0.15); font-size: 0.875rem; font-weight: 500; transition: border-color 0.3s; }
.highlight-item:hover { border-color: rgba(46,125,50,0.3); }

/* ── Testimonials ── */
.testimonials-section { background: rgba(150,150,150,0.06); }
.testimonial-slider { max-width: 42rem; margin: 0 auto 1.5rem; position: relative; min-height: 14rem; }
.testimonial-card { display: none; background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 2rem; text-align: center; animation: fadeIn 0.4s; }
.testimonial-card.active { display: block; }
.quote-icon { font-size: 2rem; color: rgba(220,38,38,0.2); margin-bottom: 1rem; }
.testimonial-card p { color: rgba(0,0,0,0.7); font-size: 1.125rem; font-style: italic; margin-bottom: 1.5rem; line-height: 1.6; }
.testimonial-stars { color: var(--primary); margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.testimonial-card strong { font-family: 'Space Grotesk', sans-serif; }
.testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 3rem; }
.dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; border: none; background: var(--border); cursor: pointer; transition: all 0.3s; padding: 0; }
.dot.active { width: 1.5rem; background: var(--primary); }
.trust-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 640px) { .trust-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-stat { text-align: center; padding: 1rem; border-radius: 0.75rem; background: var(--card); border: 1px solid var(--border); }
.trust-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.trust-stat p { color: var(--muted); font-size: 0.75rem; margin-top: 0.25rem; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; transition: all 0.3s; }
.faq-item.open { border-color: rgba(220,38,38,0.3); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 1.25rem 1.5rem; background: none; border: none; font-family: 'Space Grotesk', 'Hind Siliguri', sans-serif; font-weight: 600; text-align: left; cursor: pointer; font-size: 0.9375rem; color: var(--fg); transition: color 0.2s; }
.faq-question:hover { color: var(--primary); }
.faq-arrow { transition: transform 0.3s; font-size: 0.75rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 1.5rem; }
.faq-item.open .faq-answer { max-height: 20rem; padding: 0 1.5rem 1.25rem; }
.faq-answer p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

/* ── Contact ── */
.contact-section { background: rgba(150,150,150,0.06); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { display: flex; align-items: center; gap: 1rem; padding: 1rem; border-radius: 0.75rem; background: var(--card); border: 1px solid var(--border); transition: border-color 0.3s; }
.contact-card:hover { border-color: rgba(46,125,50,0.3); }
.contact-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: rgba(46,125,50,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.contact-label { font-size: 0.75rem; color: var(--muted); }
.contact-value { font-size: 0.875rem; font-weight: 500; }
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; }
@media (min-width: 768px) { .contact-form { padding: 2rem; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border-radius: 0.75rem; border: 1px solid var(--border); background: var(--bg); font-size: 0.875rem; font-family: inherit; outline: none; transition: all 0.3s; resize: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(220,38,38,0.1); }
.btn-submit { width: 100%; padding: 0.875rem; border-radius: 0.75rem; border: none; background: var(--primary); color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.125rem; cursor: pointer; box-shadow: 0 0 20px rgba(220,38,38,0.3); transition: all 0.3s; }
.btn-submit:hover { filter: brightness(1.1); box-shadow: 0 0 30px rgba(220,38,38,0.5); }

/* ── Footer ── */
.site-footer { position: relative; background: var(--dark-green); color: var(--dark-green-fg); overflow: hidden; }
.footer-wave { position: absolute; top: 0; left: 0; right: 0; transform: translateY(-99%); }
.footer-wave svg { width: 100%; height: auto; fill: var(--dark-green); display: block; }
.footer-container { max-width: 80rem; margin: 0 auto; padding: 4rem 1rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; }
.footer-about p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; max-width: 24rem; }
.footer-links h4, .footer-contact h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.footer-links ul, .footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.footer-links a::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--primary); }
.footer-links a:hover { color: #fff; }
.footer-contact li { font-size: 0.875rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; padding-top: 1.5rem; text-align: center; font-size: 0.875rem; color: rgba(255,255,255,0.4); }

/* ── Back to Top ── */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 50; width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--primary); color: #fff; border: none; font-size: 1.25rem; cursor: pointer; box-shadow: 0 4px 16px rgba(220,38,38,0.3); opacity: 0; visibility: hidden; transition: all 0.3s; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: scale(1.1); }

/* ── Live Order Popup ── */
.live-order-popup { position: fixed; bottom: 4rem; left: 1rem; z-index: 70; max-width: 17.5rem; background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 0.75rem; box-shadow: 0 8px 30px rgba(0,0,0,0.12); backdrop-filter: blur(4px); animation: slideUp 0.4s ease-out; }
.popup-close { position: absolute; top: -0.375rem; right: -0.375rem; width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.625rem; cursor: pointer; }
.popup-content { display: flex; align-items: flex-start; gap: 0.75rem; }
.popup-emoji { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.125rem; }
.popup-badge { display: inline-block; padding: 0.125rem 0.375rem; font-size: 0.625rem; font-weight: 700; border-radius: 0.25rem; background: rgba(16,185,129,0.2); color: #34d399; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.popup-text { font-size: 0.875rem; line-height: 1.4; }
.popup-text strong { font-weight: 600; }
.popup-text .popup-product { font-weight: 600; color: var(--primary); }
.popup-time { font-size: 0.6875rem; color: var(--muted); margin-top: 0.25rem; }

/* ── Animations ── */
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes blob { 0%,100% { transform: translate(0,0) scale(1); } 25% { transform: translate(20px,-30px) scale(1.1); } 50% { transform: translate(-10px,20px) scale(0.95); } 75% { transform: translate(15px,10px) scale(1.05); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(1rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(1.5rem); } to { opacity: 1; transform: translateY(0); } }

/* ── Admin CSS ── */
.plan-card[style*="display: none"] { display: none !important; }
