/* Features page - mobile grid fix */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
    }

    .feature-card {
        padding: 24px 16px !important;
    }

    .feature-icon {
        width: 48px !important;
        height: 48px !important;
        margin-bottom: 16px !important;
    }

    .feature-card h3 {
        font-size: 0.95rem !important;
    }

    .feature-card p {
        font-size: 0.82rem !important;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr !important;
    }
}/* ================================================
   LOAD AND LOCK — Main Stylesheet
   Brand: Smart. Secure. Sustainable.
   Colors: #FFFFFF | #A1D414 | #0F2D2D
   ================================================ */

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

:root {
  --white:   #FFFFFF;
  --green:   #A1D414;
  --dark:    #0F2D2D;
  --dark-80: rgba(15, 45, 45, 0.8);
  --dark-10: rgba(15, 45, 45, 0.1);
  --green-20: rgba(161, 212, 20, 0.2);
  --green-10: rgba(161, 212, 20, 0.1);
  --shadow:  0 4px 32px rgba(15,45,45,0.12);
  --shadow-lg: 0 12px 56px rgba(15,45,45,0.18);
  --radius:  12px;
  --radius-lg: 24px;
  --font-main: 'DM Sans', sans-serif;
  --font-head: 'Space Grotesk', sans-serif;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-main); background: var(--white); color: var(--dark); line-height: 1.7; overflow-x: hidden; }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { font-size: 1.05rem; color: rgba(15,45,45,0.75); }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.badge {
  display: inline-block;
  background: var(--green-10);
  color: var(--dark);
  border: 1px solid var(--green);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.text-green  { color: var(--green); }
.text-dark   { color: var(--dark); }
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.bg-dark     { background: var(--dark); }
.bg-light    { background: #F7FAF7; }
.bg-green    { background: var(--green); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15); opacity: 0; transition: opacity 0.25s; }
.btn:hover::before { opacity: 1; }
.btn-primary { background: var(--green); color: var(--dark); border-color: var(--green); }
.btn-primary:hover { background: #8fc212; border-color: #8fc212; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(161,212,20,0.35); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: var(--white); color: var(--dark); }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--green); transform: translateY(-2px); }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* --- HEADER / NAV --- */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 0; transition: all var(--transition); }
#header.scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(16px); padding: 12px 0; box-shadow: 0 2px 32px rgba(15,45,45,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--dark); flex-shrink: 0; }
.nav-logo img { height: 70px !important; width: auto !important; max-width: 200px; display: block; }
.nav-logo .logo-icon { width: 44px; height: 44px; background: var(--dark); border-radius: 10px; display: grid; place-items: center; }
.nav-logo .logo-icon svg { width: 26px; height: 26px; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a { padding: 8px 16px; border-radius: 8px; font-size: 0.92rem; font-weight: 500; color: var(--dark); transition: all 0.2s; }
.nav-links a:hover { background: var(--dark-10); }
.nav-links a.active { color: #5a8a00; font-weight: 600; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* --- HERO --- */
#hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; padding: 120px 0 80px; position: relative; overflow: hidden; }
.hero-bg-shape { position: absolute; top: -10%; right: -5%; width: 55%; height: 120%; background: linear-gradient(135deg, var(--dark) 0%, #1a4a4a 100%); border-radius: 60% 0 0 60% / 80% 0 0 80%; z-index: 0; }
.hero-dots { position: absolute; top: 10%; left: 5%; width: 200px; height: 200px; background-image: radial-gradient(var(--green) 1.5px, transparent 1.5px); background-size: 20px 20px; opacity: 0.25; z-index: 0; }
.hero-content { position: relative; z-index: 1; }
.hero-form-col { position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #5a8a00; }
.hero-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--green); border-radius: 2px; }
.hero-heading { margin-bottom: 24px; color: var(--dark); }
.hero-heading .highlight { color: var(--green); position: relative; }
.hero-desc { font-size: 1.1rem; color: rgba(15,45,45,0.7); max-width: 500px; margin-bottom: 36px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.trust-indicators { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.trust-item .trust-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--green-10); border: 1px solid var(--green); display: grid; place-items: center; font-size: 14px; }

/* --- LEAD FORM --- */
.lead-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid rgba(15,45,45,0.06); position: relative; }
.lead-form-card::before { content: ''; position: absolute; top: -2px; left: 24px; right: 24px; height: 4px; background: linear-gradient(90deg, var(--green), #c8f040); border-radius: 4px 4px 0 0; }
.form-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.form-subtitle { font-size: 0.88rem; color: rgba(15,45,45,0.55); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; position: relative; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: var(--dark); letter-spacing: 0.03em; }
.form-control { width: 100%; padding: 13px 16px; border: 1.5px solid rgba(15,45,45,0.15); border-radius: var(--radius); font-family: var(--font-main); font-size: 0.95rem; color: var(--dark); background: var(--white); transition: all 0.2s; outline: none; }
.form-control:focus { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-10); }
.form-control::placeholder { color: rgba(15,45,45,0.35); }
textarea.form-control { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* --- SECTION HEADERS --- */
.section-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section-header p { margin-top: 16px; font-size: 1.05rem; }

/* --- FEATURES --- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; border: 1.5px solid rgba(15,45,45,0.08); transition: all var(--transition); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--green); transform: scaleX(0); transition: transform var(--transition); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-20); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 60px; height: 60px; background: var(--dark); border-radius: 16px; display: grid; place-items: center; margin-bottom: 24px; transition: all var(--transition); }
.feature-card:hover .feature-icon { background: var(--green); transform: rotate(-5deg); }
.feature-icon svg { width: 28px; height: 28px; color: var(--white); }
.feature-card:hover .feature-icon svg { color: var(--dark); }
.feature-card h3 { margin-bottom: 10px; font-size: 1.15rem; }

/* --- WHY CHOOSE US --- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-visual { position: relative; height: 480px; }
.why-visual-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--dark) 0%, #1a4a4a 100%); border-radius: 32px; overflow: hidden; }
.why-visual-pattern { position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(161,212,20,0.06) 40px, rgba(161,212,20,0.06) 41px), repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(161,212,20,0.06) 40px, rgba(161,212,20,0.06) 41px); }
.why-stat-cards { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 40px; }
.stat-card { width: 100%; background: rgba(255,255,255,0.07); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 20px 28px; display: flex; align-items: center; gap: 20px; color: var(--white); }
.stat-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--green); line-height: 1; flex-shrink: 0; }
.stat-label { font-size: 0.9rem; opacity: 0.8; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: var(--radius); transition: background 0.2s; }
.why-item:hover { background: var(--green-10); }
.why-check { width: 36px; height: 36px; border-radius: 50%; background: var(--green); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.why-check svg { width: 16px; height: 16px; color: var(--dark); stroke-width: 2.5; }
.why-item h4 { font-size: 1rem; margin-bottom: 4px; }
.why-item p { font-size: 0.9rem; }

/* --- NFC SECTION --- */
.nfc-section { background: var(--dark); color: var(--white); position: relative; overflow: hidden; }
.nfc-bg-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(161,212,20,0.12) 0%, transparent 70%); }
.nfc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.nfc-animation { position: relative; height: 360px; display: flex; align-items: center; justify-content: center; }
.nfc-rings { position: absolute; width: 260px; height: 260px; }
.nfc-ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(161,212,20,0.25); animation: pulse-ring 3s ease-out infinite; }
.nfc-ring:nth-child(1) { inset: 0; animation-delay: 0s; }
.nfc-ring:nth-child(2) { inset: -30px; animation-delay: 0.8s; }
.nfc-ring:nth-child(3) { inset: -60px; animation-delay: 1.6s; }
@keyframes pulse-ring { 0% { opacity: 0.6; transform: scale(0.9); } 100% { opacity: 0; transform: scale(1.1); } }
.nfc-center { width: 100px; height: 100px; border-radius: 50%; background: var(--green); display: grid; place-items: center; z-index: 1; box-shadow: 0 0 60px rgba(161,212,20,0.4); }
.nfc-center svg { width: 44px; height: 44px; color: var(--dark); }
.nfc-features { display: flex; flex-direction: column; gap: 24px; }
.nfc-feature { display: flex; gap: 16px; align-items: flex-start; padding: 20px 24px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); transition: border-color 0.2s, background 0.2s; }
.nfc-feature:hover { border-color: var(--green); background: rgba(161,212,20,0.05); }
.nfc-feature-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(161,212,20,0.15); display: grid; place-items: center; flex-shrink: 0; }
.nfc-feature-icon svg { width: 20px; height: 20px; color: var(--green); }
.nfc-feature h4 { color: var(--white); margin-bottom: 4px; font-size: 1rem; }
.nfc-feature p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }

/* --- ECO SECTION --- */
.eco-section { background: #F2F8E8; }
.eco-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.eco-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.eco-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px; border: 1.5px solid transparent; transition: all var(--transition); }
.eco-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow); }
.eco-icon { font-size: 2rem; margin-bottom: 12px; }
.eco-card h4 { font-size: 1rem; margin-bottom: 6px; }
.eco-card p { font-size: 0.85rem; }

/* --- TESTIMONIALS --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; border: 1.5px solid rgba(15,45,45,0.08); transition: all var(--transition); position: relative; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-20); }
.testimonial-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 0.98rem; color: rgba(15,45,45,0.75); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--dark); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--green); flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 0.95rem; }
.author-role { font-size: 0.82rem; color: rgba(15,45,45,0.5); }
.quote-mark { position: absolute; top: 20px; right: 24px; font-size: 5rem; line-height: 1; color: var(--green-10); font-family: serif; font-weight: 700; }

/* --- BLOG --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid rgba(15,45,45,0.08); background: var(--white); transition: all var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img { height: 200px; background: linear-gradient(135deg, var(--dark) 0%, #1a4a4a 100%); position: relative; overflow: hidden; }
.blog-img-inner { position: absolute; inset: 0; background: var(--green-10); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-cat { position: absolute; top: 16px; left: 16px; background: var(--green); color: var(--dark); padding: 4px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-body { padding: 28px; }
.blog-meta { font-size: 0.8rem; color: rgba(15,45,45,0.45); margin-bottom: 10px; }
.blog-title { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { font-size: 0.88rem; margin-bottom: 16px; }
.blog-link { font-size: 0.88rem; font-weight: 600; color: var(--dark); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s, color 0.2s; }
.blog-link:hover { gap: 10px; color: #5a8a00; }

/* --- QUICK CONTACT --- */
.quick-contact { background: var(--dark); position: relative; overflow: hidden; }
.quick-contact::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; border-radius: 50%; border: 80px solid rgba(161,212,20,0.06); }
.quick-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(161,212,20,0.12); border: 1px solid rgba(161,212,20,0.25); display: grid; place-items: center; flex-shrink: 0; }
.info-icon svg { width: 20px; height: 20px; color: var(--green); }
.info-label { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-bottom: 2px; letter-spacing: 0.06em; text-transform: uppercase; }
.info-value { color: var(--white); font-weight: 500; }

/* --- FOOTER --- */
footer { background: #071a1a; color: var(--white); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-heading { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); font-weight: 700; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-contact-list li svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* --- POPUP --- */
.popup-overlay { position: fixed; inset: 0; background: rgba(15,45,45,0.7); backdrop-filter: blur(6px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-box { background: var(--white); border-radius: var(--radius-lg); padding: 48px 44px; max-width: 440px; width: 90%; position: relative; transform: translateY(20px) scale(0.96); transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.popup-overlay.active .popup-box { transform: translateY(0) scale(1); }
.popup-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; border: none; background: rgba(15,45,45,0.08); cursor: pointer; display: grid; place-items: center; font-size: 18px; transition: background 0.2s; }
.popup-close:hover { background: rgba(15,45,45,0.15); }
.popup-icon { width: 64px; height: 64px; border-radius: 18px; background: var(--dark); display: grid; place-items: center; margin: 0 auto 20px; }
.popup-icon svg { width: 30px; height: 30px; color: var(--green); }
.popup-box h3 { text-align: center; margin-bottom: 6px; }
.popup-box .popup-sub { text-align: center; font-size: 0.88rem; color: rgba(15,45,45,0.55); margin-bottom: 28px; }

/* --- WHATSAPP FLOAT --- */
.whatsapp-float { position: fixed; left: 24px; bottom: 24px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.25s; animation: float-bounce 3s ease-in-out infinite; }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; }
@keyframes float-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* --- ANIMATIONS --- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.65s ease; }
.fade-in.visible { opacity: 1; }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }

/* --- INNER PAGES --- */
.page-hero { background: linear-gradient(135deg, var(--dark) 0%, #1a4a4a 100%); color: var(--white); padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--green); }

/* --- PRICING --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card { border-radius: var(--radius-lg); padding: 40px 36px; border: 1.5px solid rgba(15,45,45,0.1); background: var(--white); transition: all var(--transition); position: relative; }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { background: var(--dark); border-color: var(--dark); color: var(--white); }
.pricing-card.featured p { color: rgba(255,255,255,0.6); }
.pricing-popular-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--green); color: var(--dark); padding: 4px 20px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.pricing-name { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(15,45,45,0.45); margin-bottom: 8px; }
.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.45); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-amount { font-family: var(--font-head); font-size: 3rem; font-weight: 700; line-height: 1; }
.price-currency { font-weight: 600; font-size: 1.1rem; margin-top: 6px; }
.price-period { font-size: 0.9rem; color: rgba(15,45,45,0.45); }
.pricing-card.featured .price-period { color: rgba(255,255,255,0.45); }
.pricing-desc { font-size: 0.9rem; margin-bottom: 28px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.pricing-features .check { color: var(--green); font-weight: 700; flex-shrink: 0; }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { border: 1.5px solid rgba(15,45,45,0.1); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--green); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 24px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--dark); transition: background 0.2s; }
.faq-question:hover { background: var(--dark-10); }
.faq-arrow { width: 28px; height: 28px; border-radius: 50%; background: var(--dark-10); display: grid; place-items: center; flex-shrink: 0; transition: all 0.3s; }
.faq-item.open .faq-arrow { background: var(--green); transform: rotate(180deg); }
.faq-arrow svg { width: 14px; height: 14px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 24px 22px; color: rgba(15,45,45,0.7); font-size: 0.95rem; line-height: 1.75; }

/* --- CONTACT PAGE --- */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* --- ABOUT PAGE --- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; border: 1.5px solid rgba(15,45,45,0.08); text-align: center; transition: all var(--transition); }
.value-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }

/* --- THANK YOU PAGE --- */
.thankyou-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; }
.thankyou-icon { width: 100px; height: 100px; border-radius: 50%; background: var(--green); display: grid; place-items: center; margin: 0 auto 28px; animation: pop-in 0.6s cubic-bezier(0.34,1.56,0.64,1); }
.thankyou-icon svg { width: 48px; height: 48px; color: var(--dark); }
@keyframes pop-in { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* --- ADMIN PANEL --- */
.admin-wrapper { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; background: #f0f2f5; }
.admin-sidebar { background: var(--dark); color: var(--white); padding: 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column; }
.sidebar-logo { padding: 24px 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.sidebar-logo .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.admin-nav { padding: 16px 0; flex: 1; }
.admin-nav-section { padding: 8px 20px 4px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 8px; }
.admin-nav-link { display: flex; align-items: center; gap: 12px; padding: 11px 20px; color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 500; transition: all 0.2s; margin: 2px 10px; border-radius: 10px; }
.admin-nav-link:hover { background: rgba(255,255,255,0.07); color: var(--white); }
.admin-nav-link.active { background: var(--green); color: var(--dark); font-weight: 600; }
.admin-nav-link svg { width: 18px; height: 18px; }
.admin-main { padding: 32px; overflow-y: auto; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.admin-page-title { font-size: 1.6rem; font-weight: 700; }
.admin-page-sub { font-size: 0.88rem; color: rgba(15,45,45,0.45); margin-top: 2px; }
.admin-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: 0 1px 8px rgba(15,45,45,0.06); border: 1px solid rgba(15,45,45,0.06); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.stat-box { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: 0 1px 8px rgba(15,45,45,0.06); border: 1px solid rgba(15,45,45,0.06); display: flex; align-items: flex-start; gap: 16px; }
.stat-box-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.stat-box-icon svg { width: 22px; height: 22px; }
.stat-box-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; line-height: 1; margin-bottom: 4px; }
.stat-box-label { font-size: 0.82rem; color: rgba(15,45,45,0.5); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 12px 16px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(15,45,45,0.4); border-bottom: 1px solid rgba(15,45,45,0.08); }
.admin-table td { padding: 14px 16px; font-size: 0.88rem; border-bottom: 1px solid rgba(15,45,45,0.05); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(15,45,45,0.02); }
.badge-status { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
.badge-new { background: rgba(161,212,20,0.15); color: #5a8a00; }
.badge-read { background: rgba(15,45,45,0.08); color: rgba(15,45,45,0.5); }
.admin-action-btn { padding: 6px 14px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; }
.btn-edit { background: rgba(15,45,45,0.08); color: var(--dark); }
.btn-edit:hover { background: var(--dark); color: var(--white); }
.btn-delete { background: rgba(220,38,38,0.08); color: #dc2626; }
.btn-delete:hover { background: #dc2626; color: var(--white); }

/* --- MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .nfc-grid, .eco-grid, .contact-split { gap: 40px; }
}
@media (max-width: 768px) {
  #hero { grid-template-columns: 1fr; padding: 100px 0 60px; gap: 40px; }
  .hero-bg-shape { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; inset: 0; top: 72px; background: var(--white); padding: 24px; gap: 8px; z-index: 999; }
  .nav-cta.open { display: flex; margin-top: 16px; }
  .why-grid, .nfc-grid, .eco-grid, .quick-contact-grid, .contact-split, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid, .blog-grid, .features-grid, .pricing-grid, .values-grid { grid-template-columns: 1fr; }
  .eco-cards { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .admin-wrapper { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; height: auto; }
}
@media (max-width: 480px) {
  .eco-cards { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .trust-indicators { gap: 12px; }
  .stats-row { grid-template-columns: 1fr; }
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(15,45,45,0.15); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: rgba(15,45,45,0.3); }
::selection { background: var(--green); color: var(--dark); }

/* Admin extended styles */
.admin-filters { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.admin-form-group { margin-bottom: 18px; }
.admin-form-group label { display: block; font-size: .85rem; font-weight: 600; color: #374151; margin-bottom: 6px; }
.admin-input { width: 100%; padding: 10px 14px; border: 1.5px solid #e5e7eb; border-radius: 8px; font-size: .9rem; font-family: inherit; outline: none; transition: border-color .2s; box-sizing: border-box; background: #fff; color: var(--dark); }
.admin-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(161,212,20,.12); }
textarea.admin-input { resize: vertical; min-height: 80px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-actions { display: flex; gap: 12px; align-items: center; margin-top: 28px; padding-top: 20px; border-top: 1px solid #f1f5f9; }
.btn-admin { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; background: var(--green); color: var(--dark); font-weight: 700; font-size: .875rem; border: none; border-radius: 8px; cursor: pointer; text-decoration: none; transition: .2s; }
.btn-admin:hover { background: #8fba10; }
.btn-admin-sm { display: inline-flex; align-items: center; padding: 6px 14px; background: var(--dark); color: #fff; font-size: .8rem; font-weight: 600; border: none; border-radius: 6px; cursor: pointer; text-decoration: none; transition: .2s; }
.btn-admin-sm:hover { background: #1a4040; }
.btn-admin-sm.btn-danger { background: #dc2626; }
.btn-admin-sm.btn-danger:hover { background: #b91c1c; }
.actions-cell { display: flex; gap: 6px; align-items: center; white-space: nowrap; }
.badge-published { padding: 3px 10px; background: #dcfce7; color: #16a34a; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.badge-draft { padding: 3px 10px; background: #fef9c3; color: #b45309; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.card-header-actions { display: flex; justify-content: flex-end; margin-bottom: 20px; }
.alert-success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; padding: 12px 16px; border-radius: 8px; margin: 12px 0; font-size: .875rem; }

body:not(.page-home) #header:not(.scrolled) .nav-links a {
    color: rgba(255,255,255,0.85);
}

body:not(.page-home) #header:not(.scrolled) .nav-links a:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

body:not(.page-home) #header:not(.scrolled) .nav-links a.active {
    color: var(--green);
}
.nav-logo img {
    height: 120px !important;
    width: auto !important;
    max-width: 300px !important;
    display: block !important;
}

#header {
    padding: 8px 0 !important;
}

#header.scrolled {
    padding: 6px 0 !important;
}
.whatsapp-float {
    left: auto !important;
    right: 24px;
}
.hero-bg-shape {
    display: none;
}

/* Mobile menu white color on dark pages */
@media (max-width: 768px) {
    body:not(.page-home) #header:not(.scrolled) .nav-toggle span {
        background: var(--white);
    }

    body:not(.page-home) #header:not(.scrolled) .nav-links.open {
        background: var(--dark);
    }

    body:not(.page-home) #header:not(.scrolled) .nav-links.open a {
        color: rgba(255,255,255,0.85);
    }

    body:not(.page-home) #header:not(.scrolled) .nav-links.open a:hover {
        background: rgba(255,255,255,0.1);
        color: var(--white);
    }
}
/* Mobile nav open - dark background for all pages */
@media (max-width: 768px) {
    .nav-links.open {
        background: var(--dark) !important;
    }
    .nav-links.open a {
        color: rgba(255,255,255,0.85) !important;
    }
    .nav-links.open a:hover {
        background: rgba(255,255,255,0.1) !important;
        color: var(--white) !important;
    }
    .nav-links.open a.active {
        color: var(--green) !important;
    }
    #header:not(.scrolled) .nav-toggle span {
        background: var(--white);
    }
    #header.scrolled .nav-toggle span {
        background: var(--dark);
    }
}
/* Mobile Full Screen Menu */
@media (max-width: 768px) {
    .nav-links.open {
        position: fixed !important;
        inset: 0 !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: var(--dark) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        z-index: 999 !important;
        padding: 40px 24px !important;
    }

    .nav-links.open a {
        color: var(--white) !important;
        font-size: 1.4rem !important;
        font-weight: 600 !important;
        padding: 14px 32px !important;
        width: 100% !important;
        text-align: center !important;
        border-radius: 12px !important;
    }

    .nav-links.open a:hover {
        background: rgba(255,255,255,0.1) !important;
        color: var(--green) !important;
    }

    .nav-links.open a.active {
        color: var(--green) !important;
    }

    /* Nav toggle always visible on top of menu */
    .nav-toggle {
        z-index: 1000 !important;
        position: relative !important;
    }

    /* Toggle color when menu is open */
    .nav-toggle.open span {
        background: var(--white) !important;
    }

    /* Toggle color when scrolled and menu closed */
    #header.scrolled .nav-toggle span {
        background: var(--dark) !important;
    }

    /* Toggle color on dark pages */
    body:not(.page-home) #header:not(.scrolled) .nav-toggle span {
        background: var(--white) !important;
    }
}
/* Why visual box and stat cards - mobile fix */
@media (max-width: 768px) {
    .why-visual {
        height: auto !important;
    }

    .why-visual-bg {
        position: relative !important;
        height: auto !important;
    }

    .why-stat-cards {
        position: relative !important;
        padding: 20px !important;
        gap: 10px !important;
    }

    .stat-card {
        padding: 12px 16px !important;
        gap: 12px !important;
    }

    .stat-num {
        font-size: 1.4rem !important;
    }

    .stat-label {
        font-size: 0.78rem !important;
    }
}
/* Hero section mobile fix */
@media (max-width: 768px) {
    #hero {
        padding: 100px 0 60px !important;
    }

    .hero-content {
        padding: 0 16px !important;
    }

    .hero-heading {
        font-size: 2rem !important;
        word-break: break-word !important;
    }

    .hero-desc {
        font-size: 0.95rem !important;
    }

    .hero-ctas {
        flex-direction: column !important;
    }

    .hero-ctas .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}
/* Trust indicators floating animation */
.trust-item {
    animation: float-trust 3s ease-in-out infinite;
}

.trust-item:nth-child(1) { animation-delay: 0s; }
.trust-item:nth-child(2) { animation-delay: 0.5s; }
.trust-item:nth-child(3) { animation-delay: 1s; }
.trust-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes float-trust {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}