/* =====================================================================
   Smart Lockers Azerbaijan — v3.0
   Modern, accessible, dark-mode capable stylesheet
   ===================================================================== */

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

/* ----- 1. Design tokens (light + dark) -------------------------------- */
:root {
  --primary:        #0a2a66;
  --primary-dark:   #071c44;
  --primary-light:  #1b6fff;
  --accent:         #ff8a00;
  --accent-hover:   #ff9d26;
  --accent-soft:    #fff1df;
  --secondary:      #00bcd4;
  --success:        #16a34a;
  --danger:         #dc2626;
  --warning:        #f59e0b;

  --bg:             #ffffff;
  --bg-soft:        #f3f8ff;
  --bg-elevated:    #ffffff;
  --text:           #122033;
  --text-muted:     #64748b;
  --text-strong:    #07182f;
  --border:         #e5eaf2;
  --shadow-sm:      0 6px 14px rgba(7,24,47,.06);
  --shadow:         0 18px 50px rgba(7,24,47,.12);
  --shadow-lg:      0 28px 70px rgba(7,24,47,.18);

  --radius-sm:      12px;
  --radius:         20px;
  --radius-lg:      28px;
  --radius-pill:    999px;

  --header-h:       78px;
  --transition:     .25s cubic-bezier(.4,0,.2,1);

  --gradient-hero:  linear-gradient(135deg,#071c44 0%,#0a2a66 55%,#00a6c7 140%);
  --gradient-accent:linear-gradient(135deg,var(--accent),#ffa340);
  --gradient-dark:  linear-gradient(135deg,#061326,#0b2547);
}

[data-theme="dark"] {
  --bg:             #0b1320;
  --bg-soft:        #111c2f;
  --bg-elevated:    #162338;
  --text:           #e5edf7;
  --text-muted:     #94a3b8;
  --text-strong:    #ffffff;
  --border:         #1f2d44;
  --shadow-sm:      0 6px 14px rgba(0,0,0,.4);
  --shadow:         0 18px 50px rgba(0,0,0,.5);
  --shadow-lg:      0 28px 70px rgba(0,0,0,.6);
  --accent-soft:    #2a1f10;
}

/* ----- 2. Base reset -------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  padding-top: var(--header-h);
  transition: background-color var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; }
.container { max-width: 1180px; }

::selection { background: var(--accent); color: #fff; }

/* ----- 3. Scroll progress bar ---------------------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  width: 0%;
  background: var(--gradient-accent);
  z-index: 1100;
  transition: width .08s linear;
}

/* ----- 4. Navigation -------------------------------------------------- */
.smart-nav {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7,24,47,.08);
  transition: box-shadow var(--transition), background-color var(--transition);
}
[data-theme="dark"] .smart-nav {
  background: rgba(11,19,32,.92);
  border-bottom-color: rgba(255,255,255,.08);
}
.smart-nav.scrolled { box-shadow: 0 8px 24px rgba(7,24,47,.1); }

.brand-logo { height: 48px; max-width: 130px; object-fit: contain; }
.brand-text { font-weight: 800; color: var(--text-strong); letter-spacing: -.04em; }

.navbar .nav-link {
  color: var(--text) !important;
  font-weight: 600;
  font-size: .94rem;
  position: relative;
  padding: .5rem .9rem !important;
}
.navbar .nav-link::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width var(--transition), left var(--transition);
}
.navbar .nav-link:hover { color: var(--accent) !important; }
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { width: 60%; left: 20%; }

.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: all var(--transition);
}
.theme-toggle:hover { background: var(--accent-soft); color: var(--accent); border-color: var(--accent); }

/* ----- 5. Buttons ----------------------------------------------------- */
.btn-accent, .btn-primary {
  background: var(--gradient-accent);
  color: #fff !important;
  border: 0;
  border-radius: var(--radius-pill);
  padding: .75rem 1.35rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(255,122,26,.24);
  transition: all var(--transition);
}
.btn-accent:hover, .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255,122,26,.4);
  background: var(--gradient-accent);
}
.btn-soft {
  background: var(--bg-elevated);
  color: var(--text-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: .75rem 1.35rem;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-soft:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: .65rem 1.2rem;
}
.btn-outline-light:hover { background: #fff; color: var(--primary); }

/* ----- 6. Hero -------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  min-height: 720px;
  color: #fff;
  padding: 70px 0 120px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 78% 22%, rgba(255,209,102,.34), transparent 28%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: auto -10% -35% -10%;
  height: 320px;
  background: var(--bg);
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  transition: background-color var(--transition);
}
.hero .container { position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex; gap: 8px; align-items: center;
  padding: .45rem .9rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  font-weight: 700;
  color: #ffe4b8;
  font-size: .85rem;
}
.eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.05em;
  margin-bottom: 1.5rem;
}
.hero p.lead-text { color: #dbeafe; font-size: 1.15rem; max-width: 600px; }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.2);
}
.floating-card {
  position: absolute;
  left: -24px; bottom: 30px;
  background: rgba(255,255,255,.95);
  color: var(--text-strong);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  max-width: 260px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.stat {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 18px;
  backdrop-filter: blur(8px);
}
.stat b { font-size: 1.7rem; display: block; font-weight: 800; }
.stat span { font-size: .85rem; color: #cfd8e6; }

/* ----- 7. Sections ---------------------------------------------------- */
.section { padding: 92px 0; }
.section-light { background: var(--bg-soft); transition: background-color var(--transition); }
.section-title {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -.04em;
  margin-bottom: 1rem;
}
.section-kicker {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .14em;
  margin-bottom: .75rem;
  display: inline-block;
}
.lead-muted { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

/* ----- 8. Cards ------------------------------------------------------- */
.feature-card, .step-card, .pricing-card, .location-card,
.review-card, .metric-card, .usecase, .image-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover, .step-card:hover, .metric-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.feature-card { padding: 30px; height: 100%; }
.feature-card h5, .step-card h5 { font-weight: 800; color: var(--text-strong); margin-bottom: .75rem; }
.feature-card p, .step-card p, .location-card p { color: var(--text-muted); margin-bottom: 0; }

.icon-pill {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #fff1df, #ffe2bd);
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 20px;
}
[data-theme="dark"] .icon-pill { background: linear-gradient(135deg,#3a2510,#4a3014); }

.image-card { border-radius: var(--radius-lg); overflow: hidden; }
.image-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ----- 9. Process steps ---------------------------------------------- */
.process-grid { counter-reset: step; }
.step-card { position: relative; padding: 30px; overflow: hidden; height: 100%; }
.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute; right: 20px; top: 10px;
  font-size: 5rem; font-weight: 800;
  color: var(--bg-soft);
  z-index: 0;
}
.step-card > * { position: relative; z-index: 1; }

/* ----- 10. Use-cases ------------------------------------------------- */
.usecase {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.usecase img { height: 220px; width: 100%; object-fit: cover; transition: transform .5s; }
.usecase:hover img { transform: scale(1.05); }
.usecase .p-4 { min-height: 180px; }
.usecase h5 { color: var(--text-strong); }
.usecase p { color: var(--text-muted); }

/* ----- 11. Pricing --------------------------------------------------- */
.pricing-card { padding: 0; overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.pricing-head { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: 28px; }
.pricing-head h4 { font-weight: 800; margin-bottom: .25rem; }
.pricing-head p { color: rgba(255,255,255,.7); margin: 0; }
.price { font-size: 2.7rem; font-weight: 800; color: var(--accent); }
.pricing-card ul { padding: 28px; list-style: none; margin: 0; flex: 1; }
.pricing-card li { padding: 10px 0; color: var(--text); display: flex; align-items: center; gap: 10px; }
.pricing-card li i.bi-check-circle-fill { color: var(--success); }
.pricing-card.featured { border: 2px solid var(--accent); transform: scale(1.04); }
.pricing-card.featured .pricing-head { background: linear-gradient(135deg, var(--accent), #ff9d26); }

/* Tariff calculator */
.tariff-calc {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.tariff-calc .form-range { accent-color: var(--accent); }
.tariff-calc .calc-result {
  background: var(--gradient-accent);
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--radius);
  margin-top: 18px;
  text-align: center;
}
.tariff-calc .calc-result b { font-size: 2rem; display: block; }

/* ----- 12. CTA band -------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary), #0b4782);
  color: #fff;
  border-radius: 34px;
  padding: 48px;
  overflow: hidden;
  position: relative;
}
.cta-band::after {
  content: "";
  position: absolute; right: -80px; top: -80px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,122,26,.22);
}
.cta-band h2 { font-weight: 800; }

/* ----- 13. Map & locations ------------------------------------------- */
#map {
  height: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  z-index: 1;
}
.location-card { padding: 22px; margin-bottom: 14px; cursor: pointer; }
.location-card:hover { border-color: var(--accent); }
.location-card h5 { color: var(--text-strong); }
.badge-live {
  background: rgba(34,197,94,.12);
  color: #16a34a;
  border-radius: var(--radius-pill);
  padding: 5px 11px;
  font-weight: 700;
  font-size: .78rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.badge-live::before {
  content:""; width: 7px; height: 7px; border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: pulse 2s infinite;
}
.badge-soon {
  background: rgba(245,158,11,.12); color: #b45309;
  border-radius: var(--radius-pill);
  padding: 5px 11px; font-weight: 700; font-size: .78rem;
}

/* ----- 14. Forms ----------------------------------------------------- */
.form-control, .form-select {
  border-radius: var(--radius-sm);
  padding: .9rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  transition: all var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,138,0,.15);
  background: var(--bg-elevated);
  color: var(--text);
}
.form-label { font-weight: 600; color: var(--text); margin-bottom: .35rem; }
.contact-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px;
}

/* ----- 15. Accordion (FAQ) ------------------------------------------- */
.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--bg-elevated);
}
.accordion-button {
  font-weight: 700;
  color: var(--text-strong);
  background: var(--bg-elevated);
  padding: 1.1rem 1.25rem;
}
.accordion-button:not(.collapsed) {
  background: var(--accent-soft);
  color: var(--accent);
}
.accordion-button:focus { box-shadow: none; }
.accordion-body { color: var(--text-muted); line-height: 1.75; }
[data-theme="dark"] .accordion-button { background: var(--bg-elevated); color: var(--text-strong); }
[data-theme="dark"] .accordion-button:not(.collapsed) { background: var(--bg-soft); }

/* FAQ search */
.faq-search {
  position: relative;
  max-width: 580px;
  margin: 0 auto 40px;
}
.faq-search input {
  padding-left: 3rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.faq-search i {
  position: absolute; left: 1.2rem; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}
.faq-no-results {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
  display: none;
}

/* ----- 16. Page hero & breadcrumb ------------------------------------ */
.page-hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,209,102,.2), transparent 40%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: .75rem;
}
.page-hero .lead { color: rgba(255,255,255,.75); margin: 0; }

.breadcrumb-nav {
  margin-bottom: 1.25rem;
  font-size: .9rem;
}
.breadcrumb-nav a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
}
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav .separator {
  margin: 0 .5rem;
  color: rgba(255,255,255,.4);
}
.breadcrumb-nav .current { color: #fff; font-weight: 600; }

/* ----- 17. Trust, reviews, mini-faq ---------------------------------- */
.metric-card {
  padding: 26px;
  text-align: center;
  height: 100%;
}
.metric-card b { display: block; font-size: 2.2rem; line-height: 1; color: var(--text-strong); letter-spacing: -.05em; font-weight: 800; }
.metric-card span { display: block; margin-top: 10px; color: var(--text-muted); font-weight: 600; font-size: .9rem; }

.review-card { padding: 30px; height: 100%; position: relative; }
.review-card::after {
  content: "\201D";
  position: absolute; right: 24px; top: 8px;
  font-size: 5rem; color: var(--bg-soft); font-weight: 800;
  line-height: 1;
}
.stars { color: var(--accent); letter-spacing: .12em; font-weight: 800; margin-bottom: 16px; }
.review-card p { color: var(--text); font-size: 1rem; line-height: 1.75; font-style: italic; margin-bottom: 1rem; }
.reviewer { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.reviewer span {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}
.reviewer b { display: block; color: var(--text-strong); }
.reviewer small { display: block; color: var(--text-muted); }

.mini-faq {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.mini-faq b { display: block; color: var(--text-strong); font-size: 1.05rem; margin-bottom: 6px; }
.mini-faq span { color: var(--text-muted); }

/* ----- 18. Tables ---------------------------------------------------- */
.table-soft {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-elevated);
}
.table-soft th {
  background: var(--bg-soft);
  color: var(--text-strong);
  border: 0;
  padding: 1rem;
}
.table-soft td { border-color: var(--border); color: var(--text); padding: 1rem; }
[data-theme="dark"] .table { color: var(--text); }

/* ----- 19. Footer ---------------------------------------------------- */
.site-footer {
  background: var(--gradient-dark);
  color: #fff;
}
.site-footer a {
  display: block;
  color: #cbd5e1;
  margin: .45rem 0;
  transition: color var(--transition), transform var(--transition);
}
.site-footer a:hover { color: var(--accent); transform: translateX(4px); }
.site-footer h6 { font-weight: 800; color: #fff; margin-bottom: 1rem; }
.footer-logo { height: 54px; max-width: 160px; object-fit: contain; }
.footer-muted { color: #b8c5d6; }
.footer-line { border-color: rgba(255,255,255,.15); }

.social-links { display: flex; gap: 10px; margin-top: 1rem; }
.social-links a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  margin: 0;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ----- 20. Scroll to top -------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  border: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(255,122,26,.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 999;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px); }

/* WhatsApp floating button */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  z-index: 998;
  transition: transform var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); color: #fff; }
.whatsapp-fab::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  animation: ripple 2s infinite;
}
@keyframes ripple {
  0% { transform: scale(.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ----- 21. Toast notifications --------------------------------------- */
.toast-stack {
  position: fixed;
  top: calc(var(--header-h) + 12px);
  right: 16px;
  z-index: 1200;
  display: flex; flex-direction: column; gap: 10px;
  max-width: 360px;
}
.toast-item {
  background: var(--bg-elevated);
  color: var(--text);
  border-left: 4px solid var(--success);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; gap: 10px; align-items: flex-start;
  animation: toastIn .3s ease-out;
}
.toast-item.error   { border-left-color: var(--danger); }
.toast-item.warning { border-left-color: var(--warning); }
.toast-item.info    { border-left-color: var(--primary-light); }
@keyframes toastIn {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ----- 22. Cookie consent ------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  display: none;
}
.cookie-banner.show { display: block; animation: toastIn .3s ease-out; }
.cookie-banner p { margin: 0 0 12px; color: var(--text-muted); font-size: .9rem; }

/* ----- 23. AOS-style animations ------------------------------------- */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
[data-aos="fade-up"].aos-visible   { opacity: 1; transform: translateY(0); }
[data-aos="fade-left"]              { transform: translateX(30px); }
[data-aos="fade-left"].aos-visible  { opacity: 1; transform: translateX(0); }
[data-aos="fade-right"]             { transform: translateX(-30px); }
[data-aos="fade-right"].aos-visible { opacity: 1; transform: translateX(0); }
[data-aos="zoom-in"]                { transform: scale(.9); }
[data-aos="zoom-in"].aos-visible    { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  [data-aos] { opacity: 1; transform: none; transition: none; }
  .floating-card, .whatsapp-fab::after, .eyebrow .pulse, .badge-live::before {
    animation: none;
  }
}

/* ----- 24. Responsive ----------------------------------------------- */
@media (max-width: 991px) {
  :root { --header-h: 72px; }
  .hero { min-height: auto; padding: 60px 0 110px; }
  .floating-card { position: static; margin-top: 18px; max-width: 100%; }
  .stat-strip { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .cta-band { padding: 32px; }
  .brand-text { display: none; }
  .pricing-card.featured { transform: scale(1); }
}
@media (max-width: 575px) {
  .hero h1 { font-size: 2.2rem; }
  .btn-accent, .btn-soft { width: 100%; margin-bottom: 10px; }
  .navbar-collapse { padding: 18px 0; }
  .usecase img { height: 180px; }
  .contact-panel { padding: 24px; }
  .whatsapp-fab, .scroll-top { right: 16px; }
  .scroll-top { bottom: 80px; }
}
