/* ════════════════════════════════════════════════════
   AzisDev — style.css
   Theme: Clean Modern · White & Violet (light) · Dark mode
   ════════════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────────────── */
:root {
  --violet-50:  #f5f3ff;
  --violet-100: #ede9fe;
  --violet-200: #ddd6fe;
  --violet-300: #c4b5fd;
  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  --violet-700: #6d28d9;
  --violet-800: #5b21b6;
  --violet-900: #4c1d95;
  --violet-950: #2e1065;

  --bg:         #ffffff;
  --bg-alt:     #f8f7ff;
  --surface:    #ffffff;
  --border:     #e8e4f8;
  --text:       #111827;
  --text-muted: #6b7280;
  --text-sub:   #9ca3af;

  --shadow-sm:  0 1px 3px rgba(124,58,237,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(124,58,237,.10), 0 2px 8px rgba(0,0,0,.06);
  --shadow-lg:  0 8px 32px rgba(124,58,237,.14), 0 4px 16px rgba(0,0,0,.08);

  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --font-sans:    'DM Sans', sans-serif;
  --font-display: 'Syne', sans-serif;

  --transition: .25s cubic-bezier(.4,0,.2,1);
  --nav-h: 66px;
}

[data-theme="dark"] {
  --bg:         #0a0a14;
  --bg-alt:     #0f0f1e;
  --surface:    #13132a;
  --border:     #1e1e3a;
  --text:       #f1f0ff;
  --text-muted: #a0a0c0;
  --text-sub:   #6060a0;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.3);
  --shadow-md:  0 4px 16px rgba(0,0,0,.4);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.5);
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.2; }

/* ── SKIP NAV ────────────────────────────────────────── */
.skip-nav {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--violet-600);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top .2s;
}
.skip-nav:focus { top: 1rem; }

/* ── SCROLLBAR ───────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--violet-500); border-radius: 99px; }

/* ── CONTAINER ───────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--narrow { max-width: 760px; }

/* ── SECTION ─────────────────────────────────────────── */
.section { padding: 6rem 0; }
.bg-alt { background: var(--bg-alt); }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--violet-600);
  margin-bottom: .75rem;
}
[data-theme="dark"] .section-label { color: var(--violet-400); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── ACCENT ──────────────────────────────────────────── */
.accent { color: var(--violet-600); }
[data-theme="dark"] .accent { color: var(--violet-400); }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}
.btn--sm  { padding: .5rem 1.1rem; font-size: .875rem; }
.btn--lg  { padding: 1rem 2rem; font-size: 1rem; }

.btn--primary {
  background: var(--violet-600);
  color: #fff;
  box-shadow: 0 2px 8px rgba(124,58,237,.3);
}
.btn--primary:hover {
  background: var(--violet-700);
  box-shadow: 0 4px 16px rgba(124,58,237,.4);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  border: 2px solid var(--border);
  color: var(--text);
}
.btn--outline:hover {
  border-color: var(--violet-400);
  color: var(--violet-600);
  transform: translateY(-1px);
}
[data-theme="dark"] .btn--outline:hover { color: var(--violet-400); }

.btn--ghost {
  color: var(--text-muted);
}
.btn--ghost:hover { color: var(--violet-600); }
[data-theme="dark"] .btn--ghost:hover { color: var(--violet-400); }

.btn--white {
  background: #fff;
  color: var(--violet-700);
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.btn--white:hover { background: var(--violet-50); transform: translateY(-1px); }

.btn--outline-white {
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
}
.btn--outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}

/* ── BADGE ───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--violet-50);
  color: var(--violet-700);
  border: 1px solid var(--violet-200);
  font-size: .8rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
[data-theme="dark"] .badge {
  background: rgba(124,58,237,.15);
  color: var(--violet-300);
  border-color: rgba(124,58,237,.3);
}

/* ── NAVBAR ──────────────────────────────────────────── */
header { position: fixed; inset: 0 0 auto 0; z-index: 100; }

.nav {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
[data-theme="dark"] .nav { background: rgba(10,10,20,.85); }
.nav--scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; }


.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav__link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  text-decoration: none;
}
.nav__link:hover { color: var(--violet-600); }
[data-theme="dark"] .nav__link:hover { color: var(--violet-400); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.btn-theme {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: all var(--transition);
  flex-shrink: 0;
}
.btn-theme:hover { background: var(--bg-alt); color: var(--violet-600); }
.btn-theme svg { width: 20px; height: 20px; }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav__burger:hover { background: var(--bg-alt); }
.nav__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
}
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: 1rem;
  list-style: none;
}
.nav__mobile .nav__link {
  display: block;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}
.nav__mobile .nav__link:hover { background: var(--bg-alt); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 70%, rgba(124,58,237,.08) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 90% 20%, rgba(139,92,246,.06) 0%, transparent 60%);
  pointer-events: none;
}
[data-theme="dark"] .hero__bg {
  background:
    radial-gradient(ellipse 70% 60% at 10% 70%, rgba(124,58,237,.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 90% 20%, rgba(109,40,217,.14) 0%, transparent 60%);
}

.hero__content {
  padding: 5rem 0 4rem;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.hero__desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--violet-600);
  line-height: 1;
}
[data-theme="dark"] .stat__num { color: var(--violet-400); }
.stat__label {
  display: block;
  font-size: .78rem;
  color: var(--text-sub);
  margin-top: .3rem;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── MARQUEE ─────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--violet-100);
  border-bottom: 1px solid var(--violet-100);
  background: var(--violet-50);
  padding: .85rem 0;
}
[data-theme="dark"] .marquee {
  border-color: rgba(124,58,237,.2);
  background: rgba(124,58,237,.06);
}
.marquee__track { display: flex; }
.marquee__inner {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  padding-right: 2.5rem;
  min-width: max-content;
}
.marquee__inner:hover { animation-play-state: paused; }
.marquee__inner span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--violet-500);
}
[data-theme="dark"] .marquee__inner span { color: var(--violet-400); }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ───────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about__text { display: flex; flex-direction: column; gap: 1.1rem; }
.about__text p { color: var(--text-muted); line-height: 1.8; }
.about__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.value-card__icon { font-size: 1.6rem; margin-bottom: .75rem; }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.value-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ── SERVICES ────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--violet-300);
}
[data-theme="dark"] .service-card:hover { border-color: rgba(124,58,237,.5); }

.service-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: var(--violet-50);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
[data-theme="dark"] .service-card__icon { background: rgba(124,58,237,.15); }

.service-card h3 { font-size: 1.15rem; font-weight: 700; }
.service-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.75; flex: 1; }

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: .85rem;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  list-style: none;
}
.service-card__features li {
  font-size: .83rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.service-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--violet-500);
  font-weight: 700;
}

.service-card__cta {
  font-size: .875rem;
  font-weight: 700;
  color: var(--violet-600);
  transition: color var(--transition);
  align-self: flex-start;
}
.service-card__cta:hover { color: var(--violet-800); }
[data-theme="dark"] .service-card__cta { color: var(--violet-400); }
[data-theme="dark"] .service-card__cta:hover { color: var(--violet-300); }

/* ── SOLUTION ────────────────────────────────────────── */
.solution__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}
.solution__arrow {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--violet-400);
  text-align: center;
}
.solution__problems,
.solution__results {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.solution__problems h3,
.solution__results h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}
.problem-list, .result-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  list-style: none;
}
.problem-list li, .result-list li {
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  gap: .5rem;
  align-items: flex-start;
}
.solution__cta {
  text-align: center;
  padding: 2.5rem;
  background: var(--violet-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--violet-200);
}
[data-theme="dark"] .solution__cta {
  background: rgba(124,58,237,.08);
  border-color: rgba(124,58,237,.2);
}
.solution__cta p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ── PACKAGES ────────────────────────────────────────── */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pkg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pkg-card--popular {
  border-color: var(--violet-500);
  box-shadow: 0 0 0 1px var(--violet-500), var(--shadow-lg);
  padding-top: 3rem;
}

.pkg-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--violet-600);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .35rem 1.1rem;
  border-radius: 99px;
  white-space: nowrap;
  animation: pulse-badge 2.5s ease infinite;
}
@keyframes pulse-badge {
  0%,100% { box-shadow: 0 0 0 0 rgba(124,58,237,.4); }
  50%      { box-shadow: 0 0 0 6px rgba(124,58,237,0); }
}

.pkg-card__header h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .3rem; }
.pkg-card__sub { font-size: .85rem; color: var(--text-muted); }

.pkg-card__price {
  background: var(--violet-50);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
[data-theme="dark"] .pkg-card__price { background: rgba(124,58,237,.1); }
.pkg-card__price-label { font-size: .72rem; color: var(--text-sub); text-transform: uppercase; letter-spacing: .1em; }
.pkg-card__price-value { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--violet-700); }
[data-theme="dark"] .pkg-card__price-value { color: var(--violet-300); }
.pkg-card__price-note { font-size: .78rem; color: var(--text-muted); }

.pkg-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}
.pkg-card__features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--text-muted);
}
.pkg-card__features svg {
  width: 16px;
  height: 16px;
  color: var(--violet-500);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── TESTIMONIALS ────────────────────────────────────── */
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.testi-card__stars { color: #f59e0b; font-size: .9rem; letter-spacing: 2px; }

.testi-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testi-card footer {
  border-top: 1px solid var(--border);
  padding-top: .85rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.testi-card footer strong {
  font-size: .9rem;
  color: var(--text);
  font-weight: 600;
}
.testi-card footer span {
  font-size: .78rem;
  color: var(--text-sub);
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq__list { display: flex; flex-direction: column; gap: .75rem; }

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item:has(.faq__btn[aria-expanded="true"]) { border-color: var(--violet-300); }
[data-theme="dark"] .faq__item:has(.faq__btn[aria-expanded="true"]) { border-color: rgba(124,58,237,.4); }

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition);
}
.faq__btn:hover { background: var(--bg-alt); }

.faq__icon {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
  color: var(--violet-500);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__btn[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }

.faq__answer {
  padding: 0 1.5rem 1.25rem;
  display: none;
}
.faq__answer[hidden] { display: none; }
.faq__answer:not([hidden]) { display: block; }
.faq__answer p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq__answer p + p { margin-top: .75rem; }

/* ── CTA FINAL ───────────────────────────────────────── */
.cta-final { background: transparent; }
.cta-final__box {
  background: linear-gradient(135deg, var(--violet-700) 0%, var(--violet-600) 50%, var(--violet-800) 100%);
  border-radius: var(--radius-xl);
  padding: 4.5rem 2.5rem;
  text-align: center;
  color: #fff;
}
.cta-final__box h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: .75rem 0 1rem;
  color: #fff;
}
.cta-final__box p {
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.cta-final__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.cta-final__contacts a {
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  transition: color var(--transition);
  text-decoration: none;
}
.cta-final__contacts a:hover { color: #fff; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: #0a0a14;
  color: #e0e0f0;
  padding: 5rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer__logo img { width: 28px; height: 28px; border-radius: 6px; }
.footer__logo span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}
.footer__brand p { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 280px; margin-bottom: 1.25rem; }

.footer__social { display: flex; gap: .5rem; }
.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.footer__social-link:hover { background: var(--violet-600); color: #fff; }
.footer__social-link svg { width: 16px; height: 16px; }

.footer__nav h3 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.1rem;
}
.footer__nav ul { display: flex; flex-direction: column; gap: .6rem; list-style: none; }
.footer__nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
  text-decoration: none;
}
.footer__nav a:hover { color: var(--violet-400); }

.footer__contact h3 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.1rem;
}
.footer__contact address { display: flex; flex-direction: column; gap: .65rem; }
.footer__contact p { font-size: .875rem; color: rgba(255,255,255,.45); }
.footer__contact a {
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
  text-decoration: none;
}
.footer__contact a:hover { color: var(--violet-400); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.25);
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── AOS ANIMATIONS ──────────────────────────────────── */
.aos {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.aos.visible { opacity: 1; transform: none; }

/* ── ANIMATE FADE UP (hero) ──────────────────────────── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp .7s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__values { grid-template-columns: repeat(2, 1fr); }
  .packages__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .testi__grid { grid-template-columns: 1fr; }
  .solution__grid { grid-template-columns: 1fr; }
  .solution__arrow { display: none; }
  .hero__stats { gap: 1rem; }
  .about__values { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cta-final__box { padding: 3rem 1.5rem; border-radius: var(--radius-lg); }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__cta { flex-direction: column; }
  .btn--lg { padding: .875rem 1.5rem; }
  .packages__grid { max-width: 100%; }
  .stat__num { font-size: 1.4rem; }
}

/* ── PRINT ───────────────────────────────────────────── */
@media print {
  .nav, .marquee, .btn-theme, .nav__burger { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
}
