/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #000;
}

/* ===== HERO ===== */
.services-hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Center content */
.hero-content {
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Bottom text + arrow */
.hero-bottom {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.hero-bottom p {
  font-size: 1.05rem;
  color: #111;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Scroll button */
.scroll-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  margin: 0 auto;
  background: #000;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  animation: float 1.8s ease-in-out infinite;
}

.scroll-btn:hover {
  transform: translateY(2px);
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(8px); }
  100% { transform: translateY(0); }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-bottom {
    bottom: 40px;
  }

  .hero-bottom p {
    font-size: 0.95rem;
  }

  .scroll-btn {
    margin: 0 auto;
  }
}
/* ===== SECTION ===== */
.services-wrapper {
  padding: clamp(80px, 10vw, 120px) clamp(20px, 6vw, 80px);
  background: #ffffff;
  border-radius: 40px;
  max-width: 1400px;
  margin: 0 auto 120px;
  transition: all 0.9s ease;
  overflow: hidden;
}

/* ===== HEADER ===== */
.services-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.services-tag {
  font-size: 0.9rem;
  color: #111;
}

.services-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: right;
}

/* ===== GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 28px);
}

/* ===== CARD ===== */
.service-card {
  perspective: 1400px;
}

.card-inner {
  width: 100%;
  height: clamp(220px, 26vw, 260px);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(.4,.2,.2,1);
}

/* Hover */
.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* ===== FRONT ===== */
.card-front {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 24px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: var(--card-bg);
  backface-visibility: hidden;
}

.card-number {
  font-size: 0.85rem;
  color: #666;
}

.card-front h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgb(139, 139, 139);
}

/* ===== CARD COLORS ===== */
.service-card:nth-child(1) { --card-bg: #f1f3f5; }
.service-card:nth-child(2) { --card-bg: #eef2f6; }
.service-card:nth-child(3) { --card-bg: #f5f1f8; }
.service-card:nth-child(4) { --card-bg: #f2f6f3; }
.service-card:nth-child(5) { --card-bg: #f7f2ee; }
.service-card:nth-child(6) { --card-bg: #eef4f3; }
.service-card:nth-child(7) { --card-bg: #f4f5f7; }
.service-card:nth-child(8) { --card-bg: #f0f3f6; }

/* ===== BACK ===== */
.card-back {
  position: absolute;
  inset: 0;
  background: #111;
  color: #fff;
  border-radius: 22px;
  padding: 28px;
  transform: rotateY(180deg);
  backface-visibility: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-back h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.card-back p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

/* ===== SCROLL REVEAL ===== */
.hidden {
  opacity: 0;
  transform: translateY(70px);
}

.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.9s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .services-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-header h2 {
    text-align: left;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-wrapper {
    padding: 72px 20px;
    border-radius: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .card-inner {
    height: 220px;
  }
}


/* ===== EXPERTISE SECTION ===== */
.expertise-wrapper {
  max-width: 1400px;
  margin: 0 auto 120px;
  padding: 100px 80px;
  background: #ffffff;
  border-radius: 40px;
  transition: all 0.8s ease;
}

/* INNER GRID */
.expertise-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT TEXT */
.expertise-tag {
  display: inline-block;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.expertise-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.expertise-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  max-width: 520px;
  margin-bottom: 36px;
}

/* BUTTON */
.expertise-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #f1f3f5;
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.expertise-btn:hover {
  background: #e5e7ea;
}

/* RIGHT VIDEO */
.expertise-media {
  border-radius: 28px;
  overflow: hidden;
  background: #000;
}

.expertise-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== SCROLL REVEAL ===== */
.hidden {
  opacity: 0;
  transform: translateY(80px);
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .expertise-inner {
    grid-template-columns: 1fr;
  }

  .expertise-media {
    order: -1;
  }
}

@media (max-width: 600px) {
  .expertise-wrapper {
    padding: 70px 20px;
  }

  .expertise-text p {
    font-size: 1rem;
  }
}

/* ===== SECTION WRAPPER ===== */
.numbers-section {
  padding: clamp(60px, 8vw, 100px) 16px;
  display: flex;
  justify-content: center;
  background: #eef1f2;
  overflow: hidden;
}

/* ===== CONTAINER ===== */
.numbers-container {
  background: #ffffff;
  border-radius: 28px;
  padding: clamp(40px, 6vw, 64px);
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 64px);
}

/* ===== LEFT CONTENT ===== */
.eyebrow {
  font-size: 14px;
  margin-bottom: 20px;
  display: block;
  color: #000;
}

.numbers-content h2 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.numbers-content p {
  max-width: 420px;
  margin-bottom: 32px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.cta-btn {
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  background: #f1f3f4;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #e5e7e8;
}

/* ===== STATS GRID ===== */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ===== STAT CARD ===== */
.stat-card {
  background: #f1f3f4;
  border-radius: 20px;
  padding: 32px;
  position: relative;
}

.card-index {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 14px;
  color: #888;
}

.stat-card h3 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 0.95rem;
  color: #444;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .numbers-container {
    grid-template-columns: 1fr;
  }

  .numbers-content p {
    max-width: 100%;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
  }
}

.clients-section {
  padding: 100px 40px;
  background: #eef1f2;
}

.eyebrow {
  font-size: 14px;
  margin-bottom: 30px;
  display: block;
}

.clients-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
}

.clients-wrapper::-webkit-scrollbar {
  display: none;
}

.clients-track {
  display: flex;
  gap: 32px;
}

/* Cards */
.client-card {
  min-width: 420px;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  flex-shrink: 0;
}

/* Content */
.client-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.client-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-info img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info span {
  font-size: 14px;
  color: #555;
}

.linkedin {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: grid;
  place-items: center;
  font-weight: 600;
}

/* Controls */
.clients-controls {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-bar {
  width: 70%;
  height: 4px;
  background: #d6d9dc;
  border-radius: 4px;
}

.progress {
  height: 100%;
  width: 0%;
  background: #111;
  transition: width 0.3s ease;
}

.arrows button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 20px;
  cursor: pointer;
  margin-left: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .client-card {
    min-width: 85%;
  }

  .clients-controls {
    display: none; /* swipe only */
  }
}
/* ===== CTA SECTION ===== */
.cta-section {
  background: #eef1f2;
  padding: 6rem 1.5rem;
}

.cta-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);

  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease;
}

.cta-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* LEFT */
.cta-eyebrow {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 1.5rem;
}

.cta-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 600;
  color: #000;
}

/* RIGHT */
.cta-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #222;
  max-width: 520px;
}

.cta-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* BUTTONS */
.cta-btn {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cta-btn.primary {
  background: #e6e9ea;
  color: #000;
}

.cta-btn.primary:hover {
  background: #dcdfe0;
}

.cta-btn.secondary {
  border: 1px solid #000;
  color: #000;
  background: transparent;
}

.cta-btn.secondary:hover {
  background: #000;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cta-card {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
  }

  .cta-text {
    max-width: 100%;
  }
}


.faq-section {
  padding: clamp(80px, 10vw, 120px) 20px;
  background: #fff;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.faq-column {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid #e6e6e6;
}

.faq-item:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.faq-question {
  width: 100%;
  padding: 28px 0;
  background: none;
  border: none;
  font-size: 1.05rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  width: 44px;
  height: 44px;
  background: #eef1f2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  transition: max-height 0.4s ease, padding-bottom 0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 160px;
  padding-bottom: 24px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 22px;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.05)
  );
body {
  padding-top: 110px; /* matches header height */
}

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(201, 201, 201, 0.35);

  transition: all 0.35s ease;
}

.site-header.scrolled .header-inner {
  backdrop-filter: blur(30px);
}

/* LOGO */
.logo {
  font-size: 1.4rem;
  font-weight: 700;
}

.logo .apex {
  color: rgb(81, 87, 239);
}

.logo .finish {
  color: rgb(255, 106, 0);
}

/* NAV */
.nav-links {
  display: flex;
  gap: 26px;
  color: #000;
}

.nav-links a {
  color: #000; /* visible black */
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  font-weight: 500;
}


.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: translateX(-50%);
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: rgb(0, 0, 0);
  border-radius: 10px;
}
/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(30px);
  display: none;
  flex-direction: column;
  padding: 40px;
  z-index: 2000;
}

.mobile-menu nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu a {
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
}

.close-menu {
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  align-self: flex-end;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
/* ===============================
   STACK SHOWCASE (NEW SECTION)
   =============================== */

.stack-showcase {
  padding: 80px 24px;
  display: flex;
  justify-content: center;
}

.stack-card {
  max-width: 1200px;
  width: 100%;
  background: #ffffff;
  border-radius: 28px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ROW */
.stack-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* REVERSE ROW */
.stack-row.reverse {
  direction: rtl;
}

.stack-row.reverse > * {
  direction: ltr;
}

/* TEXT */
.stack-text span {
  font-size: 14px;
  color: #666;
  display: block;
  margin-bottom: 12px;
}

.stack-text h3 {
  font-size: 32px;
  margin-bottom: 14px;
}

.stack-text p {
  max-width: 420px;
  color: #555;
  line-height: 1.6;
}

/* IMAGE */
.stack-media img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* REVEAL ANIMATION */
.stack-hidden {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.stack-show {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 900px) {
  .stack-card {
    padding: 40px 24px;
    gap: 60px;
  }

  .stack-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stack-row.reverse {
    direction: ltr;
  }

  .stack-text h3 {
    font-size: 26px;
  }
}
/* ===============================
   STACK SHOWCASE (NEW SECTION)
   =============================== */

.stack-showcase {
  padding: 80px 24px;
  display: flex;
  justify-content: center;
}

.stack-card {
  max-width: 1200px;
  width: 100%;
  background: #ffffff;
  border-radius: 28px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ROW */
.stack-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* REVERSE ROW */
.stack-row.reverse {
  direction: rtl;
}

.stack-row.reverse > * {
  direction: ltr;
}

/* TEXT */
.stack-text span {
  font-size: 14px;
  color: #666;
  display: block;
  margin-bottom: 12px;
}

.stack-text h3 {
  font-size: 32px;
  margin-bottom: 14px;
}

.stack-text p {
  max-width: 420px;
  color: #555;
  line-height: 1.6;
}

/* IMAGE */
.stack-media img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* REVEAL ANIMATION */
.stack-hidden {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.stack-show {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 900px) {
  .stack-card {
    padding: 40px 24px;
    gap: 60px;
  }

  .stack-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stack-row.reverse {
    direction: ltr;
  }

  .stack-text h3 {
    font-size: 26px;
  }
}

/* ===== DEV STACK SHOWCASE ===== */
.stack-showcase {
  padding: 80px 20px;
  background: #f6f7fb;
}

.stack-card {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* ROW */
.stack-row {
  display: flex;
  align-items: center;
  gap: 50px;
}

.stack-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.stack-text {
  flex: 1;
}

.stack-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #5b5fff;
  margin-bottom: 10px;
}

.stack-text h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: #111;
}

.stack-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* IMAGE */
.stack-media {
  flex: 1;
}

.stack-media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .stack-card {
    padding: 40px 24px;
  }

  .stack-row,
  .stack-row.reverse {
    flex-direction: column;
  }
}



/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 40px 25px;
  font-family: "Inter", sans-serif;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.footer.reveal{
    opacity: 1;
    transform: translateY(0);
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 45px;
}
.footer h2,
.footer h4 {
  color: #fff;
  margin-bottom: 18px;
}
.footer h2 {
  font-size: 20px;
}
.footer h4 {  font-size: 16px;
}
.footer p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer a {
  display: block;
  width: fit-content;
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
  background-image: linear-gradient(#1dbfff, #1d76fafb);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 2px;
  padding-bottom: 4px;
  transition: background-size 0.3s ease, color 0.2s ease;
}
.footer a:hover {
  background-size: 100% 2px;
  color: #fff;
}
.socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.socials a img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: transform 0.3s;
}
.socials a img:hover {
  transform: scale(1.2);
}
.footer-bottom {
  max-width: 1300px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}
@media (max-width: 900px) {  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer a {
    margin-bottom: 8px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

