/* =============================================
   LITINFOR — Global Stylesheet
   ============================================= */

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

/* --- Variables --- */
:root {
  --purple:       #3d0f6e;
  --purple-mid:   #5a1a9a;
  --purple-light: #7c2fc2;
  --purple-pale:  #f2eefa;
  --coral:        #f26b4e;
  --coral-light:  #f58b72;
  --coral-pale:   #fdf0ec;
  --text:         #1a0a2e;
  --text-muted:   #6b5f7a;
  --bg:           #f9f7fc;
  --white:        #ffffff;
  --border:       #e8e0f0;
  --nav-h:        72px;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --shadow-card:  0 4px 24px rgba(61,15,110,0.08);
  --shadow-hover: 0 20px 48px rgba(61,15,110,0.14);
  --transition:   all 0.25s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.1; letter-spacing: -0.03em; }
h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; }
p  { font-size: 15px; line-height: 1.7; color: var(--text-muted); }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.navbar .nav-logo {
  display: flex;
  align-items: center;
  z-index: 10000;
}

.navbar .nav-logo img {
  height: 55px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex; gap: 36px; align-items: center;
}
.nav-links a {
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px; font-weight: 400;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: #5a1a9a; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: #5a1a9a; }
.nav-cta {
  background: var(--coral); color: #fff !important;
  padding: 10px 22px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  transition: var(--transition);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--coral-light); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

.nav-remote-btn {
  background: var(--purple-mid);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  margin-left: 18px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-remote-btn:hover {
  background: var(--purple-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(242,107,78,0.25);
}

/* =============================================
   HERO CAROUSEL
   ============================================= */
.hero-carousel {
  position: relative;
  height: 100vh; min-height: 600px;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.carousel-slide {
  min-width: 100%; height: 100%;
  position: relative;
  display: flex; align-items: center;
}
.carousel-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: inherit;
  z-index: 0;
}
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 8s ease;
}
.carousel-slide.active .slide-bg { transform: scale(1.06); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(26,10,46,0.88) 0%,
    rgba(61,15,110,0.70) 45%,
    rgba(61,15,110,0.30) 100%
  );
}
.slide-content {
  position: relative; z-index: 2;
  padding: 0 8%;
  max-width: 760px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}
.carousel-slide.active .slide-content {
  opacity: 1; transform: translateY(0);
}
.slide-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(242,107,78,0.18); border: 1px solid rgba(242,107,78,0.4);
  color: #f9a08c; padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.slide-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--coral); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.slide-content h1 { color: #fff; margin-bottom: 20px; }
.slide-content h1 em { color: var(--coral); font-style: normal; }
.slide-content p {
  font-size: 18px; color: rgba(255,255,255,0.65);
  font-weight: 300; margin-bottom: 36px;
  max-width: 520px;
}
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--coral); color: #fff;
  padding: 15px 32px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500;
  transition: var(--transition); display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--coral-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,107,78,0.35); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.25); color: #fff;
  padding: 15px 32px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 400;
  transition: var(--transition); display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.07); }
.btn-purple {
  background: var(--purple-mid); color: #fff;
  padding: 15px 32px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500;
  transition: var(--transition); display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-purple:hover { background: var(--purple-light); transform: translateY(-2px); }

/* Carousel controls */
.carousel-dots {
  position: absolute; bottom: 36px; left: 8%;
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 100px;
  background: rgba(255,255,255,0.35);
  cursor: pointer; transition: var(--transition);
  border: none;
}
.dot.active { width: 28px; background: var(--coral); }
.carousel-arrows {
  position: absolute; bottom: 28px; right: 8%;
  display: flex; gap: 12px; z-index: 10;
}
.arrow-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.arrow-btn:hover { background: var(--coral); border-color: var(--coral); }
.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  background: rgba(26,10,46,0.85); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: center;
  padding: 20px 6%;
  gap: 0;
}
.stat-item {
  flex: 1; text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 30px; font-weight: 800;
  color: var(--coral);
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* =============================================
   SHARED SECTION STYLES
   ============================================= */
.section { padding: 100px 6%; }
.section-alt { background: var(--white); }
.section-dark {
  background: var(--purple);
  color: #fff;
}
.section-label {
  font-size: 11px; font-weight: 700;
  color: var(--coral); letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 12px;
  display: block;
}
.section-dark .section-label { color: #f9a08c; }
.section-head { max-width: 580px; margin-bottom: 64px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 17px; font-weight: 300; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: rgba(255,255,255,0.55); }
.section-center { text-align: center; margin-left: auto; margin-right: auto; }

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--purple-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.card-icon {
  width: 54px; height: 54px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 24px;
}
.icon-purple { background: var(--purple-pale); }
.icon-coral  { background: var(--coral-pale); }
.card h3 { margin-bottom: 12px; color: var(--text); }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 14px; font-weight: 500;
  color: var(--purple-mid); transition: gap 0.2s;
}
.card-link:hover { gap: 12px; }

.card-icon svg,
.it-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
}

.it-icon svg {
  width: 28px;
  height: 28px;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Dark cards */
.card-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 28px;
  transition: var(--transition);
}
.card-dark:hover { border-color: rgba(242,107,78,0.4); background: rgba(255,255,255,0.09); }
.card-dark h3 { color: #fff; margin-bottom: 10px; }
.card-dark p { color: rgba(255,255,255,0.5); }
.card-dark .tag {
  display: inline-block;
  background: rgba(242,107,78,0.2); color: #f9a08c;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 6px; margin-top: 14px; text-transform: uppercase;
}

/* =============================================
   GRIDS
   ============================================= */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }

/* =============================================
   SERVICES HIGHLIGHT (index)
   ============================================= */
.service-strip {
  background: var(--white);
  border-top: 4px solid var(--purple-pale);
}
.service-strip .grid-auto { align-items: start; }

/* =============================================
   PRIMAVERA BLOCK
   ============================================= */
.prim-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.prim-blob {
  position: absolute; pointer-events: none;
}
.prim-visual {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 36px;
}
.prim-feat {
  display: flex; align-items: flex-start; gap: 14px;
  margin-top: 24px;
}
.prim-feat-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral); margin-top: 7px; flex-shrink: 0;
}
.prim-feat-text strong { display: block; font-weight: 500; color: rgba(255,255,255,0.9); font-size: 15px; }
.prim-feat-text span { font-size: 13px; color: rgba(255,255,255,0.42); }

/* =============================================
   IT GRID
   ============================================= */
.it-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 30px 22px;
  text-align: center; transition: var(--transition);
}
.it-card:hover { border-color: var(--purple-light); background: var(--purple-pale); }
.it-card .it-icon { font-size: 28px; margin-bottom: 14px; }
.it-card h4 { margin-bottom: 8px; color: var(--text); }

/* =============================================
   PARTNERS LOGOS
   ============================================= */
.partners-bar {
  background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 40px 6%; display: flex; align-items: center; gap: 56px;
  overflow-x: auto;
}
.partners-bar .label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
.partner-logo {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px;
  color: rgba(90,26,154,0.35); white-space: nowrap; transition: var(--transition);
}
.partner-logo:hover { color: var(--purple-mid); }

/* =============================================
   PAGE HERO (subpages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--purple) 0%, #2a0850 60%, #1e0640 100%);
  padding: 160px 6% 100px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(242,107,78,0.2) 0%, transparent 65%);
  border-radius: 50%;
}
.page-hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: repeating-linear-gradient(0deg,#fff 0,transparent 1px,transparent 60px),
                    repeating-linear-gradient(90deg,#fff 0,transparent 1px,transparent 60px);
}
.page-hero-content { position: relative; z-index: 2; max-width: 680px; }
.page-hero h1 { color: #fff; margin-bottom: 20px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.6); font-weight: 300; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 20px; }
.breadcrumb a { font-size: 13px; color: rgba(255,255,255,0.45); transition: var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { font-size: 13px; color: rgba(255,255,255,0.25); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple) 100%);
  padding: 100px 6%; text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 48px; font-weight: 300; }
.cta-contacts {
  display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
  margin-top: 60px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.1);
}
.cta-contact-item { display: flex; flex-direction: column; gap: 5px; align-items: center; }
.cta-contact-label { font-size: 10px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.38); }
.cta-contact-val { font-size: 16px; font-weight: 500; color: #fff; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #100620; padding: 72px 6% 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 56px;
}
.footer-logo { height: 28px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.75; margin-top: 18px; max-width: 240px; }
.footer-col h5 { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.38); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: rgba(255,255,255,0.45); font-size: 14px; transition: var(--transition); }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.22); }
.footer-bottom a { font-size: 13px; color: rgba(255,255,255,0.22); transition: var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-legal { display: flex; gap: 24px; }

/* =============================================
   WHY SECTION
   ============================================= */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* LEFT BOX */
.why-visual-box {
  background: linear-gradient(145deg, var(--purple) 0%, #2a0850 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.06);
}

.why-visual-box h3 {
  color: #fff;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 600;
}

/* =========================
   STATS GRID (NOVO)
   ========================= */

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.why-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 14px;
  border-radius: 14px;
  text-align: center;

  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.why-stat:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.why-stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
}

.why-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}

/* =========================
   CERTIFICATION BOX
   ========================= */

.why-cert-box {
  margin-top: 26px;
  padding: 20px 22px;

  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--coral);
  border-radius: 14px;

  backdrop-filter: blur(6px);
}

.why-cert-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.why-cert-box p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

.why-cert-box strong {
  color: #f9a08c;
  font-weight: 600;
}

/* =========================
   RIGHT SIDE POINTS
   ========================= */

.why-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-point {
  display: flex;
  gap: 20px;
}

.why-num {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.why-point strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.why-point p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .why-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-stats {
    grid-template-columns: 1fr;
  }
}
/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-info-card {
  background: var(--purple);
  border-radius: var(--radius-lg); padding: 48px 40px; color: #fff;
}
.contact-info-card h3 { color: #fff; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-detail-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-detail-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.contact-detail-val { font-size: 15px; color: rgba(255,255,255,0.9); font-weight: 500; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px 40px; }
.contact-form h3 { margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text);
  background: var(--bg); transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple-light); background: #fff; box-shadow: 0 0 0 3px rgba(124,47,194,0.08); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .prim-split, .why-split, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 5%; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-stats-bar { flex-wrap: wrap; gap: 16px; }
  .stat-item { border-right: none; flex: 0 0 calc(50% - 8px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .partners-bar { gap: 32px; }
  .cta-contacts { gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-4 { animation-delay: 0.4s; opacity: 0; }





