/* ===================================
   NIKOJI TECHNOLOGIES — MAIN STYLES
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --green:      #006B4F;
  --green-dark: #004d38;
  --green-light:#008f69;
  --gold:       #FFD700;
  --gold-dark:  #e6c200;
  --white:      #FFFFFF;
  --bg:         #F8FAF9;
  --text:       #1a1a1a;
  --text-2:     #444444;
  --text-3:     #777777;
  --border:     #dde8e3;
  --card-bg:    #ffffff;
  --shadow:     0 4px 24px rgba(0,107,79,0.10);
  --shadow-lg:  0 16px 48px rgba(0,107,79,0.14);
  --radius:     12px;
  --radius-lg:  20px;
  --nav-h:      72px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

[data-theme="dark"] {
  --bg:       #0d1f18;
  --text:     #e8f0ec;
  --text-2:   #b0c4b8;
  --text-3:   #7a9a88;
  --border:   #1e3828;
  --card-bg:  #122a1f;
  --shadow:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:0 16px 48px rgba(0,0,0,0.5);
  --white:    #0d1f18;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Page Loader ── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.loader-logo {
  width: 70px; height: 70px;
  animation: loader-pulse 1.2s ease-in-out infinite;
}
.loader-bar {
  width: 160px; height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0;
  background: var(--gold);
  border-radius: 2px;
  animation: loader-fill 1.8s ease forwards;
}
@keyframes loader-pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
@keyframes loader-fill  { to { width: 100%; } }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
[data-theme="dark"] .navbar {
  background: rgba(13,31,24,0.95);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,107,79,0.12);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img {
  height: 42px; width: auto;
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo-text strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--green); letter-spacing: -0.02em;
}
.nav-logo-text span {
  font-size: 0.62rem; color: var(--text-3);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-2);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--green); background: rgba(0,107,79,0.07);
}
.nav-links .has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: all 0.25s ease;
  padding: 8px;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 10px 14px;
  border-radius: 8px; font-size: 0.85rem;
  color: var(--text-2);
}
.nav-dropdown a:hover { color: var(--green); background: rgba(0,107,79,0.07); }
.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px) !important; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-2);
  transition: all var(--transition);
  font-size: 1rem;
}
.theme-toggle:hover { background: var(--green); color: #fff; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 16px 24px 24px;
  flex-direction: column; gap: 4px;
  transform: translateY(-8px); opacity: 0;
  transition: all 0.3s ease;
}
.mobile-menu.open {
  display: flex; transform: translateY(0); opacity: 1;
}
.mobile-menu a {
  padding: 12px 16px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 500;
  color: var(--text-2);
  transition: all var(--transition);
}
.mobile-menu a:hover { color: var(--green); background: rgba(0,107,79,0.07); }
.mobile-menu .mobile-cta {
  margin-top: 8px; background: var(--green);
  color: #fff; text-align: center; border-radius: 8px;
}

/* ── Section Layout ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 32px; }

/* ── Section Headers ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--green);
  background: rgba(0,107,79,0.08);
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gold);
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal; color: var(--green);
}
.section-sub {
  font-size: 1.05rem; color: var(--text-3);
  max-width: 560px; line-height: 1.75;
}
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  font-size: 0.9rem; font-weight: 600;
  border-radius: 10px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: #fff;
}
.btn-primary:hover {
  background: var(--green-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,107,79,0.3);
}
.btn-gold {
  background: var(--gold); color: var(--green);
}
.btn-gold:hover {
  background: var(--gold-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,215,0,0.3);
}
.btn-outline {
  border: 2px solid var(--green); color: var(--green);
}
.btn-outline:hover {
  background: var(--green); color: #fff; transform: translateY(-2px);
}
.btn-white {
  background: #fff; color: var(--green);
}
.btn-white:hover {
  background: var(--gold); transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Cards ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.card:hover {
  border-color: rgba(0,107,79,0.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-icon {
  width: 54px; height: 54px;
  background: rgba(0,107,79,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--green);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; font-weight: 600;
  margin-bottom: 10px; color: var(--text);
}
.card p { font-size: 0.9rem; color: var(--text-3); line-height: 1.7; }

/* ── Grid Helpers ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Stats Bar ── */
.stats-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  background: var(--green);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  flex: 1; text-align: center; padding: 36px 24px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 20%; height: 60%;
  width: 1px; background: rgba(255,255,255,0.15);
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem; font-weight: 800;
  color: var(--gold); letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 6px; }

/* ── Footer ── */
footer {
  background: #061410;
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem; line-height: 1.75;
  color: rgba(255,255,255,0.55); max-width: 280px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  font-size: 0.85rem;
}
.footer-social:hover { background: var(--green); border-color: var(--green); color: #fff; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-newsletter label {
  display: block; font-size: 0.8rem;
  color: rgba(255,255,255,0.4); margin-bottom: 12px;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.newsletter-input-group {
  display: flex; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 6px 6px 6px 14px;
}
.newsletter-input-group input {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-family: inherit; font-size: 0.875rem;
  min-width: 0;
}
.newsletter-input-group input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input-group button {
  background: var(--gold); color: var(--green);
  padding: 9px 16px; border-radius: 7px;
  font-weight: 700; font-size: 0.8rem; font-family: inherit;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.newsletter-input-group button:hover { background: var(--gold-dark); }
.newsletter-msg { font-size: 0.8rem; margin-top: 10px; min-height: 18px; color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
#admin-trigger { cursor: default; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Tag / Badge ── */
.tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  background: rgba(0,107,79,0.1); color: var(--green);
}
.tag-gold { background: rgba(255,215,0,0.15); color: #9a7e00; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: linear-gradient(135deg, var(--green) 0%, #004d38 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; color: #fff; line-height: 1.15;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.page-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  max-width: 580px; line-height: 1.75;
}

/* ── Service Detail Cards ── */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(0,107,79,0.25);
}
.service-card-header {
  padding: 28px 28px 0;
  display: flex; align-items: flex-start; gap: 16px;
}
.service-card-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(0,107,79,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.service-card-icon svg { width: 24px; height: 24px; }
.service-card-body { padding: 20px 28px 28px; }
.service-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--text); margin-bottom: 10px;
}
.service-card-body p { font-size: 0.875rem; color: var(--text-3); line-height: 1.7; }
.service-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px;
}

/* ── Process Steps ── */
.process-step {
  display: flex; gap: 20px; align-items: flex-start;
}
.step-num {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--green); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 0.9rem;
  position: relative; z-index: 1;
}
.step-content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.step-content p { font-size: 0.875rem; color: var(--text-3); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, #004d38 100%);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -60%; right: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,215,0,0.07);
}
.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; color: #fff;
  margin-bottom: 16px; position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.72); font-size: 1.05rem;
  max-width: 500px; margin: 0 auto 32px;
  position: relative;
}
.cta-banner .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Accordion ── */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; margin-bottom: 10px;
  transition: border-color var(--transition);
}
.accordion-item.open { border-color: rgba(0,107,79,0.35); }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer;
  background: var(--card-bg);
  transition: background var(--transition);
}
.accordion-header:hover { background: rgba(0,107,79,0.04); }
.accordion-header h4 {
  font-size: 0.95rem; font-weight: 600; color: var(--text);
}
.accordion-arrow {
  width: 24px; height: 24px; flex-shrink: 0;
  background: rgba(0,107,79,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); transition: transform var(--transition);
}
.accordion-item.open .accordion-arrow { transform: rotate(180deg); }
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--card-bg);
}
.accordion-body-inner { padding: 0 22px 20px; }
.accordion-body-inner p { font-size: 0.875rem; color: var(--text-3); line-height: 1.75; }

/* ── Admin Login Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px; width: 100%; max-width: 420px;
  position: relative; transform: translateY(16px);
  transition: transform 0.3s ease;
  margin: 16px;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-3); cursor: pointer;
  transition: all var(--transition);
}
.modal-close:hover { background: #ff4444; color: #fff; }
.modal-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.modal-logo img { height: 36px; }
.modal-logo strong {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem; font-weight: 700; color: var(--green);
}
.modal-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem; font-weight: 700; color: var(--text);
  margin-bottom: 6px;
}
.modal-box p { font-size: 0.85rem; color: var(--text-3); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--text-2); margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit; font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,107,79,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-msg {
  font-size: 0.82rem; margin-top: 12px; padding: 10px 14px;
  border-radius: 8px; display: none;
}
.form-msg.success { display: block; background: rgba(0,107,79,0.1); color: var(--green); }
.form-msg.error   { display: block; background: rgba(220,50,50,0.1); color: #cc2222; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9500;
  background: var(--green); color: #fff;
  padding: 14px 20px; border-radius: 10px;
  font-size: 0.875rem; font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px); opacity: 0;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: #cc2222; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { padding: 24px; width: 100%; }
  .cta-banner { padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
}
@media (max-width: 480px) {
  .section-title { font-size: 1.7rem; }
  .cta-banner { padding: 36px 20px; }
}
