/*
Theme Name: Kampanja Shtator
Theme URI: https://probitacademy.com
Description: Landing page për Grupet e Shtatorit — Probit Academy
Author: Probit Academy
Version: 1.0.0
Text Domain: kampanja-shtator
*/

:root {
  /* Probit Academy Kids — paleta nga logoja zyrtare */
  --brand-navy: #1b2a5b;
  --brand-navy-dark: #121d42;
  --brand-navy-light: #eef1f8;
  --brand-green: #76c043;
  --brand-green-dark: #4f8f28;
  --brand-green-light: #eef8e6;
  --brand-cyan: #29abe2;
  --brand-cyan-dark: #1a7aa8;
  --brand-cyan-light: #e6f6fc;
  --brand-pink: #e4007c;
  --brand-pink-light: #fde8f4;
  --brand-orange: #f05a28;
  --brand-orange-light: #fff0ea;
  --brand-gray: #4a4a4a;

  --navy: var(--brand-navy);
  --text-muted: var(--brand-gray);
  --blue: var(--brand-cyan);
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --bg-warm: #fffbf8;
  --bg-soft: #f4f9fd;
  --shadow: 0 4px 24px rgba(27, 42, 91, 0.07);
  --shadow-brand: 0 4px 20px rgba(27, 42, 91, 0.22);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --transition: 0.25s ease;
  --layout-max: 1280px;
  --layout-gutter: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; }
body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 80px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0 var(--layout-gutter);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-blue { background: var(--brand-cyan-light); color: var(--brand-navy); }
.badge-green { background: var(--brand-green-light); color: var(--brand-navy); }
.badge-pink { background: var(--brand-pink-light); color: var(--brand-pink); }
.badge-accent { background: var(--brand-orange-light); color: var(--brand-orange); }
.badge-outline { border: 1px solid var(--brand-cyan); color: var(--brand-cyan); background: transparent; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .badge { margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-head h2 .accent { color: var(--brand-cyan-dark); }
.section-head h2 .accent-green { color: var(--brand-green-dark); }
.section-head h2 .accent-pink { color: var(--brand-pink); }
.section-head h2 .accent-orange { color: var(--brand-orange); }
.section-head p { color: var(--text-muted); font-size: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-blue { background: var(--brand-navy); color: var(--white); box-shadow: var(--shadow-brand); }
.btn-blue:hover { background: var(--brand-navy-dark); transform: translateY(-1px); }
.btn-blue-state { background: var(--brand-cyan); color: var(--white); box-shadow: var(--shadow-brand); }
.btn-blue-state:hover { background: #1e95c9; transform: translateY(-2px); }
.btn-outline { background: var(--white); color: var(--navy); border: 2px solid var(--gray-200); }
.btn-outline:hover { border-color: var(--brand-cyan); background: var(--brand-cyan-light); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-fun { transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1); }
.btn-fun:hover { transform: translateY(-2px) scale(1.02); }

/* ─── HEADER (mockup) ─── */
.site-header-mockup {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 42, 91, 0.06);
}
.site-header-mockup .header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px var(--layout-gutter);
  max-width: var(--layout-max);
  margin: 0 auto;
}
.site-header-mockup .logo-img { height: 48px; width: auto; }
.site-header-mockup .nav-desktop {
  display: none;
  justify-content: center;
  gap: 32px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
}
.site-header-mockup .nav-desktop a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.site-header-mockup .nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-cyan);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.site-header-mockup .nav-desktop a:hover {
  color: var(--brand-cyan-dark);
}
.site-header-mockup .nav-desktop a:hover::after {
  transform: scaleX(1);
}
.site-header-mockup .header-right { display: none; }
.btn-header-cta {
  background: var(--brand-navy);
  color: var(--white);
  padding: 12px 22px;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(27, 42, 91, 0.25);
  transition: var(--transition);
}
.btn-header-cta:hover {
  background: var(--brand-navy-dark);
  transform: translateY(-1px);
}
.site-header-mockup .menu-toggle {
  display: flex;
  justify-self: end;
  padding: 8px;
  color: var(--brand-navy);
}
.site-header-mockup .nav-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px var(--layout-gutter) 24px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.site-header-mockup .nav-mobile.open { display: flex; }
.site-header-mockup .nav-mobile a { font-weight: 600; padding: 8px 0; color: var(--gray-700); }
.site-header-mockup .nav-mobile a.btn-header-cta {
  color: var(--white);
  padding: 12px 22px;
}

@media (min-width: 992px) {
  .site-header-mockup .header-inner {
    grid-template-columns: 200px 1fr 200px;
  }
  .site-header-mockup .nav-desktop { display: flex; }
  .site-header-mockup .header-right { display: flex; justify-self: end; }
  .site-header-mockup .menu-toggle { display: none; }
}

/* ─── HERO FULL-BLEED ─── */
.hero-fullbleed {
  position: relative;
  min-height: min(72vh, 680px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 0 56px;
  overflow: hidden;
  background: var(--white);
}
.hero-fullbleed-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-fullbleed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.hero-fullbleed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 36%,
    rgba(255, 255, 255, 0.92) 44%,
    rgba(255, 255, 255, 0.65) 52%,
    rgba(255, 255, 255, 0.28) 62%,
    rgba(255, 255, 255, 0.08) 72%,
    transparent 82%
  );
}
.hero-fullbleed-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  align-items: end;
  width: 100%;
}
.hero-mockup-content {
  max-width: 560px;
  position: relative;
}
.hero-promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-orange);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-mockup-content h1 {
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--brand-navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero-highlight { color: var(--brand-green-dark); }
.hero-mockup-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 520px;
}
.hero-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
  max-width: 480px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-navy);
}
.hero-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-green);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 800;
  text-align: center;
  line-height: 22px;
}
.hero-price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-price-was {
  text-decoration: line-through;
  color: var(--gray-400);
  font-size: 0.9375rem;
}
.hero-price-now {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-navy);
}
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-navy);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(27, 42, 91, 0.28);
  transition: var(--transition);
  margin-bottom: 24px;
}
.btn-hero-cta:hover {
  background: var(--brand-navy-dark);
  transform: translateY(-2px);
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-avatars { display: flex; }
.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--white);
  background: var(--brand-cyan);
}
.hero-avatar:first-child { margin-left: 0; }
.hero-avatar:nth-child(2) { background: var(--brand-green); }
.hero-avatar:nth-child(3) { background: var(--brand-pink); }
.hero-avatar:nth-child(4) { background: var(--brand-orange); }
.hero-avatar:nth-child(5) { background: var(--brand-navy); }
.hero-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-navy);
}
.hero-stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
}

/* Countdown overlay on full-bleed hero */
.hero-fullbleed .hero-timer-box {
  position: relative;
  z-index: 2;
  width: calc(100% - 2 * var(--layout-gutter));
  max-width: 360px;
  margin: 20px var(--layout-gutter) 0 auto;
  background: rgba(27, 42, 91, 0.94);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 18px 22px 20px;
  color: var(--white);
  box-shadow: 0 12px 36px rgba(18, 29, 66, 0.35);
}
.hero-timer-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 10px;
  text-align: center;
}
.hero-timer-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.hero-timer-unit {
  text-align: center;
  min-width: 52px;
}
.hero-timer-unit strong {
  display: block;
  font-size: clamp(1.5rem, 3.2vw, 2.125rem);
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-timer-unit small {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.75;
  margin-top: 6px;
}
.hero-timer-sep {
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.55;
  padding-bottom: 16px;
}

@media (min-width: 992px) {
  .hero-fullbleed {
    min-height: min(66vh, 620px);
    padding: 36px 0 72px;
    justify-content: flex-start;
  }
  .hero-fullbleed-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0;
  }
  .hero-fullbleed .hero-timer-box {
    position: absolute;
    right: max(28px, calc((100vw - var(--layout-max)) / 2 + var(--layout-gutter)));
    bottom: 110px;
    z-index: 6;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 22px 28px 24px;
  }
  .hero-timer-unit {
    min-width: 58px;
  }
  .hero-timer-unit strong {
    font-size: 2.25rem;
  }
  .hero-timer-unit small {
    font-size: 0.6875rem;
  }
  .hero-timer-sep {
    font-size: 1.75rem;
    padding-bottom: 18px;
  }
  .hero-timer-label {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }
  .hero-fullbleed-img {
    object-position: 75% center;
  }
}

@media (max-width: 575px) {
  .hero-features { grid-template-columns: 1fr; }
  .btn-hero-cta { width: 100%; }
  .hero-fullbleed {
    min-height: auto;
    padding: 20px 0 40px;
  }
  .hero-fullbleed-overlay {
    background: linear-gradient(
      180deg,
      #ffffff 0%,
      rgba(255, 255, 255, 0.95) 45%,
      rgba(255, 255, 255, 0.7) 70%,
      rgba(255, 255, 255, 0.35) 100%
    );
  }
  .hero-fullbleed-img {
    object-position: center 30%;
  }
}

/* ─── TRUST STRIP (card) ─── */
.hero-trust-strip {
  background: transparent;
  padding: 0;
  margin-top: -36px;
  position: relative;
  z-index: 5;
  margin-bottom: 28px;
}
.hero-trust-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 20px 8px;
  box-shadow: 0 12px 40px rgba(27, 42, 91, 0.1);
  border: 1px solid rgba(27, 42, 91, 0.06);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  position: relative;
}
.hero-trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}
.hero-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust-text strong {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.15;
}
.hero-trust-text span {
  color: var(--text-muted);
  font-size: 0.8125rem;
  line-height: 1.35;
  max-width: 140px;
}
.trust-line-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon-users {
  color: var(--brand-cyan-dark);
  background: var(--brand-cyan-light);
}
.trust-icon-star {
  color: var(--brand-orange);
  background: var(--brand-orange-light);
}
.trust-icon-shield {
  color: var(--brand-green-dark);
  background: var(--brand-green-light);
}
.trust-icon-briefcase {
  color: var(--brand-pink);
  background: var(--brand-pink-light);
}

@media (max-width: 900px) {
  .hero-trust-card {
    max-width: 100%;
    padding: 16px 8px;
  }
  .hero-trust-text strong { font-size: 1rem; }
  .hero-trust-text span {
    font-size: 0.75rem;
    max-width: 110px;
  }
  .trust-line-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 767px) {
  .hero-trust-strip {
    margin-top: -20px;
    margin-bottom: 16px;
  }
  .hero-trust-card {
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    padding: 8px;
    gap: 0;
  }
  .hero-trust-item {
    padding: 14px 12px;
    justify-content: flex-start;
  }
  .hero-trust-item:not(:last-child)::after { display: none; }
  .hero-trust-item:nth-child(odd) {
    border-right: 1px solid var(--gray-200);
  }
  .hero-trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--gray-200);
  }
  .hero-trust-text span { max-width: none; }
}


/* Early Bird */
.section-early-bird {
  padding: 72px 0;
  background: var(--bg-soft);
}
.early-bird-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 36px;
}
.phase-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
}
.phase-card-body {
  padding: 28px 24px 24px;
  text-align: center;
  flex: 1;
}
.phase-card-1 { border-color: var(--brand-green); }
.phase-card-2 { border-color: var(--brand-orange); }
.phase-card-3 { border-color: var(--brand-pink); }
.phase-card-active {
  box-shadow: 0 10px 32px rgba(27, 42, 91, 0.12);
}
.phase-card-expired {
  border-color: var(--gray-200) !important;
  background: #f8f9fb;
  filter: grayscale(0.85);
  pointer-events: none;
  box-shadow: none;
}
.phase-card-expired .phase-card-body {
  position: relative;
}
.phase-status-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--gray-200);
  color: var(--gray-500);
}
.phase-status-badge.phase-status-active {
  background: var(--brand-green-light);
  color: var(--brand-green-dark);
}
.phase-card-expired .phase-now,
.phase-card-expired .phase-discount,
.phase-card-expired .phase-title,
.phase-card-expired .phase-dates,
.phase-card-expired .phase-note,
.phase-card-expired .phase-was {
  color: var(--gray-500) !important;
  border-color: var(--gray-300) !important;
}
.phase-expired-bar {
  margin-top: auto;
  padding: 14px 16px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: #e5e7eb;
}
.phase-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.phase-icon { font-size: 1.125rem; line-height: 1; }
.phase-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: 0.02em;
}
.phase-dates {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.phase-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.phase-was {
  text-decoration: line-through;
  color: var(--gray-400);
  font-size: 1rem;
}
.phase-now {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}
.phase-card-1 .phase-now { color: var(--brand-green-dark); }
.phase-card-2 .phase-now { color: var(--brand-orange); }
.phase-card-3 .phase-now { color: var(--brand-pink); }
.phase-discount {
  display: inline-block;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1.5px solid;
  margin-bottom: 12px;
}
.phase-card-1 .phase-discount {
  color: var(--brand-pink);
  border-color: var(--brand-pink);
  background: transparent;
}
.phase-card-2 .phase-discount {
  color: var(--brand-orange);
  border-color: var(--brand-orange);
  background: transparent;
}
.phase-card-3 .phase-discount {
  color: var(--brand-pink);
  border-color: var(--brand-pink);
  background: transparent;
}
.phase-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Countdown footer on active phase card */
.phase-timer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: var(--white);
  flex-wrap: wrap;
}
.phase-card-1 .phase-timer { background: var(--brand-green-dark); }
.phase-card-2 .phase-timer { background: var(--brand-orange); }
.phase-card-3 .phase-timer { background: var(--brand-pink); }
.phase-timer-label {
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
}
.phase-timer-digits {
  display: flex;
  align-items: center;
  gap: 2px;
}
.phase-timer-unit {
  text-align: center;
  min-width: 36px;
}
.phase-timer-unit strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.phase-timer-unit small {
  display: block;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-top: 3px;
}
.phase-timer-sep {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.7;
  padding-bottom: 12px;
}
.early-bird-cta {
  text-align: center;
}

@media (min-width: 768px) {
  .early-bird-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .early-bird-grid-1 {
    grid-template-columns: minmax(280px, 420px);
    justify-content: center;
  }
  .early-bird-grid-2 {
    grid-template-columns: repeat(2, minmax(280px, 420px));
    justify-content: center;
  }
  .early-bird-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .phase-timer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}



/* Benefits */
.section-benefits { padding: 72px 0; }
.benefits-grid {
  display: grid;
  gap: 20px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  border-left: 4px solid var(--brand-cyan);
}
.benefit-card:nth-child(1) { border-left-color: var(--brand-green); }
.benefit-card:nth-child(2) { border-left-color: var(--brand-cyan); }
.benefit-card:nth-child(3) { border-left-color: var(--brand-pink); }
.benefit-card:nth-child(4) { border-left-color: var(--brand-orange); }
.benefit-card:nth-child(5) { border-left-color: var(--brand-green); }
.benefit-card:nth-child(6) { border-left-color: var(--brand-navy); }
.benefit-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: var(--brand-navy); }
.benefit-card:hover { box-shadow: var(--shadow); }
.benefit-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.benefit-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Programs Slider */
.section-programs {
  padding: 72px 0;
  background: var(--white);
  overflow: hidden;
}
.programs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.programs-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.15;
}
.programs-head .accent-green { color: var(--brand-green-dark); }
.programs-age-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--brand-cyan-light);
  color: var(--brand-navy);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.programs-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.programs-slider-viewport {
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 16px;
}
.programs-slider-viewport::-webkit-scrollbar { display: none; }
.programs-slider-track {
  display: flex;
  gap: 16px;
}
.program-slide-card {
  flex: 0 0 min(200px, 62vw);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 24px 16px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(27, 42, 91, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.program-slide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(27, 42, 91, 0.1);
}
.program-slide-img {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.program-slide-thumb {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.program-slide-card h3 {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.3;
  margin: 0;
}
.programs-slider-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.programs-slider-btn:hover {
  background: var(--brand-navy);
  color: var(--white);
  border-color: var(--brand-navy);
}
.programs-slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.programs-cta { text-align: center; margin-top: 40px; }

@media (min-width: 768px) {
  .program-slide-card {
    flex: 0 0 210px;
    padding: 28px 18px 22px;
  }
  .program-slide-img {
    height: 130px;
  }
  .program-slide-thumb {
    max-height: 130px;
  }
  .program-slide-card h3 {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .program-slide-card {
    flex: 0 0 220px;
  }
  .program-slide-img {
    height: 140px;
  }
  .program-slide-thumb {
    max-height: 140px;
  }
}

@media (max-width: 575px) {
  .programs-slider {
    gap: 8px;
  }
  .programs-slider-btn {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }
  .programs-slider-viewport {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .program-slide-card {
    flex: 0 0 100%;
  }
}

/* Locations */
.section-locations { padding: 72px 0; background: var(--white); }
.section-locations .section-head h2 .accent-green { color: var(--brand-green-dark); }
.locations-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(27, 42, 91, 0.1);
}
.location-card-map {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
}
.location-card-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.location-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.location-card-body h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin: 0;
}
.location-pin {
  display: inline-flex;
  color: var(--brand-pink);
  flex-shrink: 0;
}
.location-maps-link {
  font-size: 0.875rem;
  color: var(--brand-cyan-dark);
  font-weight: 700;
  margin-top: auto;
}
.location-maps-link:hover {
  color: var(--brand-navy);
}

@media (min-width: 640px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .locations-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .location-card-body { padding: 14px 14px 16px; }
  .location-card-body h3 { font-size: 0.9375rem; }
  .location-maps-link { font-size: 0.75rem; }
}
@media (min-width: 1200px) {
  .locations-grid { gap: 20px; }
  .location-card-body h3 { font-size: 1.0625rem; }
  .location-maps-link { font-size: 0.875rem; }
}

/* Testimonials */
.section-testimonials { padding: 72px 0; background: var(--bg-warm); }
.testimonial-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.testimonial-tab {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  color: var(--gray-500);
  transition: var(--transition);
}
.testimonial-tab.active, .testimonial-tab:hover {
  border-color: var(--brand-navy);
  color: var(--brand-navy);
  background: var(--white);
}
.testimonial-panel { display: none; }
.testimonial-panel.active { display: block; }
.testimonials-grid { display: grid; gap: 20px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
}
.testimonial-stars { display: flex; gap: 2px; color: #fbbf24; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: 0.9375rem; color: var(--gray-700); margin-bottom: 16px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-cyan-light);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.testimonial-author strong { display: block; font-size: 0.875rem; }
.testimonial-author span { font-size: 0.75rem; color: var(--gray-500); }

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

/* Gallery */
.section-gallery {
  padding: 72px 0;
  background: var(--brand-navy);
  color: var(--white);
  overflow: hidden;
}
.section-gallery .section-head h2 { color: var(--white); }
.section-gallery .section-head p { color: rgba(255,255,255,0.7); }
.gallery-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gallery-slider-viewport {
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 12px;
}
.gallery-slider-viewport::-webkit-scrollbar { display: none; }
.gallery-slider-track {
  display: flex;
  gap: 12px;
}
.gallery-slide {
  flex: 0 0 min(240px, 70vw);
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.08);
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-slide:hover .gallery-img { transform: scale(1.05); }
.gallery-slider-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.gallery-slider-btn:hover {
  background: var(--brand-cyan);
  border-color: var(--brand-cyan);
}
.gallery-slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

@media (min-width: 768px) {
  .gallery-slide {
    flex: 0 0 280px;
  }
}

@media (min-width: 1200px) {
  .gallery-slide {
    flex: 0 0 300px;
  }
}

@media (max-width: 575px) {
  .gallery-slider {
    gap: 8px;
  }
  .gallery-slider-btn {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }
  .gallery-slider-viewport {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .gallery-slide {
    flex: 0 0 100%;
  }
}

/* Partners */
.section-partners {
  padding: 64px 0;
  background: var(--white);
}
.partners-head {
  margin-bottom: 28px;
  text-align: center;
}
.partners-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--brand-navy);
}
.partners-head .accent-green { color: var(--brand-green-dark); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 20px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.partner-card:hover {
  box-shadow: 0 8px 24px rgba(27, 42, 91, 0.08);
  transform: translateY(-2px);
}
.partner-svg {
  width: 100%;
  max-width: 140px;
  height: 48px;
  display: block;
}
.partner-logo {
  width: 100%;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  display: block;
}
.partner-microsoft { max-width: 150px; }
.partner-cisco { max-width: 120px; height: 52px; }
.partner-mit { max-width: 160px; }
.partner-akk { max-width: 180px; }

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .partner-card {
    min-height: 120px;
  }
}

/* Stats */
.section-stats {
  padding: 64px 0;
  background: var(--brand-navy);
  color: var(--white);
}
.stat-counter {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-cyan), var(--brand-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item span { font-size: 0.875rem; opacity: 0.85; }

@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* FAQ */
.section-faq { padding: 72px 0; background: var(--bg-soft); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: left;
  color: var(--navy);
}
.faq-icon { font-size: 1.25rem; color: var(--brand-cyan); transition: transform 0.25s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 20px 18px; font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* Form */
.section-form { padding: 72px 0; }
.form-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.form-card-header {
  background: var(--brand-navy);
  color: var(--white);
  padding: 32px 28px;
  text-align: center;
}
.form-card-header h2 { font-size: 1.5rem; font-weight: 800; margin: 12px 0 8px; }
.form-card-header p { font-size: 0.875rem; opacity: 0.85; }
.form-card-body { padding: 28px; }
.form-grid { display: grid; gap: 16px; margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 600; margin-bottom: 6px; color: var(--brand-navy); }
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 3px rgba(41,171,226,0.15);
}
.form-group-full { grid-column: 1 / -1; }
.form-message {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}
.form-message.success { background: #ecfdf5; color: #065f46; }
.form-message.error { background: #fef2f2; color: #991b1b; }

@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
}

/* CTA Final */
.section-cta-final {
  padding: 72px 0;
  background: var(--brand-navy);
  color: var(--white);
  text-align: center;
}
.cta-final-inner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  max-width: 640px;
  margin: 0 auto 12px;
  line-height: 1.2;
}
.cta-final-inner p { font-size: 1.125rem; opacity: 0.85; margin-bottom: 28px; }

/* Locations CTA */
.section-locations-cta {
  padding: 72px 0;
  background: linear-gradient(160deg, #132456 0%, var(--brand-navy) 55%, #0f1b40 100%);
  color: var(--white);
}
.section-head-light h2 {
  color: var(--white);
}
.section-head-light p {
  color: rgba(255, 255, 255, 0.78);
}
.locations-cta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 560px;
  margin: 0 auto;
}
.location-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.location-cta-row:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(94, 201, 240, 0.45);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  color: var(--white);
}
.location-cta-left,
.location-cta-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.location-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(94, 201, 240, 0.16);
  color: var(--brand-cyan);
  flex-shrink: 0;
}
.location-cta-name {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.location-cta-phone {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.95;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.location-cta-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  flex-shrink: 0;
}
.location-cta-row:hover .location-cta-call {
  background: var(--brand-cyan);
  color: var(--brand-navy);
}

@media (max-width: 480px) {
  .location-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
  }
  .location-cta-right {
    width: 100%;
    justify-content: space-between;
    padding-left: 38px;
  }
}

/* Footer */
.site-footer {
  background: #121d42;
  color: rgba(226, 232, 240, 0.78);
  padding-top: 0;
}
.site-footer .container {
  max-width: var(--layout-max);
}
.footer-main {
  padding: 50px 0 46px;
  display: grid;
  gap: 48px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}
.footer-col:first-child {
  max-width: 300px;
}
.footer-logo-wrap {
  display: inline-flex;
  margin-bottom: 14px;
}
.footer-logo {
  height: 44px;
  width: auto;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-col p {
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(191, 219, 254, 0.78);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(191, 219, 254, 0.82);
}
.footer-col ul a {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(191, 219, 254, 0.86);
  transition: color 0.2s ease;
}
.footer-col ul a:hover {
  color: var(--brand-cyan);
}
.footer-col ul svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-cyan);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #142034;
  color: rgba(226, 232, 240, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a:hover {
  background: var(--brand-cyan);
  color: var(--white);
}
.footer-cta-box {
  width: min(100%, 240px);
  justify-self: start;
  background: #101a30;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 16px;
  padding: 25px 22px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.footer-cta-box p {
  font-size: 0.8125rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--white);
}
.footer-cta-box .btn {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 0.8125rem;
  box-shadow: none;
  background: var(--brand-cyan);
  color: var(--white);
}
.footer-cta-box .btn:hover {
  background: var(--brand-cyan-dark);
}
.footer-cta-box small {
  display: block;
  margin-top: 12px;
  font-size: 0.625rem;
  letter-spacing: 0.01em;
  color: rgba(203, 213, 225, 0.9);
}
.footer-bottom {
  padding: 18px 0 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.6875rem;
  color: rgba(226, 232, 240, 0.7);
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr;
  }
  .footer-cta-box {
    justify-self: end;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 110px;
  }
  .footer-main {
    gap: 30px;
    padding-bottom: 34px;
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
  .footer-cta-box {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: left;
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-mobile-cta.visible { transform: translateY(0); }

@media (min-width: 768px) {
  .sticky-mobile-cta { display: none; }
  body { padding-bottom: 0; }
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
.float-btn:hover { transform: scale(1.1); }
.float-whatsapp { background: #25d366; }
.float-messenger { background: #0084ff; }
.float-viber { background: #7360f2; }
.float-phone { background: var(--brand-navy); }

@media (min-width: 768px) {
  .floating-buttons { bottom: 24px; }
}

@media (max-width: 767px) {
  .btn-block-mobile { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .anim-stagger-scroll { opacity: 1; transform: none; transition: none; }
}

/* Pa animacion scroll — përmbajtja shfaqet menjëherë */
.anim-stagger-scroll { opacity: 1; transform: none; }
