* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

:root {
  --fs-base: clamp(15px, 2.2vw + 0.4rem, 17px);
  --accent: #2D7D84;
  --gray-100: #f3f4f6;
  --gray-600: #4b5563;
  --primary: #0ea5a4;
  --fusion-teal: #2dd4bf;
  --fusion-dark: #0f172a;
  --fusion-slate: #64748b;
  --fusion-white: #ffffff;
  --fusion-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'Poppins', 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #111827;
  line-height: 1.55;
  overflow-x: hidden;
  font-size: var(--fs-base);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── HERO ── */
.fusion-hero {
  background-color: var(--fusion-dark);
  padding: 100px 0;
  display: flex;
  align-items: center;
  min-height: 90vh;
  color: var(--fusion-white);
}

.fusion-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.fusion-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
}

.fusion-gradient {
  background: linear-gradient(to right, #2dd4bf, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fusion-lead {
  font-size: 1.2rem;
  color: var(--fusion-slate);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 550px;
}

.fusion-actions {
  margin-bottom: 60px;
}

.fusion-btn-primary {
  background: var(--fusion-teal);
  color: var(--fusion-dark);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(45, 212, 191, 0.2);
  transition: var(--fusion-transition);
  display: inline-block;
}

.fusion-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(45, 212, 191, 0.4);
}

.fusion-stats-bar {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.fusion-stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
}

.fusion-stat-label {
  font-size: 0.85rem;
  color: var(--fusion-slate);
}

.fusion-image-wrapper {
  position: relative;
  width: 100%;
}

.fusion-hero-img {
  width: 100%;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: var(--fusion-transition);
}

.fusion-image-wrapper:hover .fusion-hero-img {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) scale(1.02);
  box-shadow: -20px 40px 70px rgba(45, 212, 191, 0.2);
}

.fusion-glow-effect {
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  z-index: 1;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: navFadeDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(14, 165, 164, 0.15);
}

@keyframes navFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-container {
  width: 100%;
  padding: 0 20px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 56px;
  transform: translateY(2px);
  transition: 0.4s;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.03));
}

.logo:hover img {
  transform: translateY(2px) scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 10px 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  background: transparent !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  opacity: 0;
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
  opacity: 1;
}

.apply-btn-mobile {
  display: none;
}

.apply-btn {
  background: rgba(14, 165, 164, 0.08);
  color: #0b9090;
  border: 1px solid rgba(14, 165, 164, 0.2);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 164, 0.25);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 3100;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1e293b;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: absolute;
}

.hamburger span:nth-child(1) {
  transform: translateY(-7px);
}

.hamburger span:nth-child(2) {
  transform: translateY(0);
}

.hamburger span:nth-child(3) {
  transform: translateY(7px);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
  background: var(--primary);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scale(0.2);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
  background: var(--primary);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 2500;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-backdrop.visible {
  display: block;
  opacity: 1;
}

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 2rem 0 3rem;
}

/* ══════════════════════════════
   PROJECTS GRID
══════════════════════════════ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  justify-items: center;
}

/* ══════════════════════════════
   PROJECT CARD
══════════════════════════════ */
.project-card {
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 420px;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(45, 125, 132, 0.22);
}

/* ══════════════════════════════
   CARD MEDIA
══════════════════════════════ */
.card-media {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #000;
}

/* ══════════════════════════════
   VIDEO
══════════════════════════════ */
.card-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 6s linear;
}

.project-card:hover .card-video {
  transform: translateY(-60%);
}

/* ══════════════════════════════
   OVERLAY
══════════════════════════════ */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(14, 165, 164, 0.92) 0%,
      rgba(14, 165, 164, 0.65) 5%,
      rgba(20, 184, 166, 0.25) 20%,
      transparent 72%);
  opacity: 0;
  transition: opacity 0.42s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.project-card:hover .card-overlay {
  opacity: 1;
}

/* ══════════════════════════════
   CENTER ICON
══════════════════════════════ */
.overlay-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
  opacity: 0;
  margin-top: 80px;
  transform: scale(0.72) translateY(8px);
  transition: opacity 0.4s ease 0.06s,
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0.06s,
    background 0.25s ease;
}

.project-card:hover .overlay-icon {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.overlay-icon:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: #ffffff;
  transform: scale(1.1) translateY(0) !important;
}

.overlay-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  flex-shrink: 0;
}

/* ══════════════════════════════
   BOTTOM NAME SLIDE UP
══════════════════════════════ */
.overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.42s ease 0.09s,
    transform 0.42s cubic-bezier(0.23, 1, 0.32, 1) 0.09s;
}

.project-card:hover .overlay-bottom {
  opacity: 1;
  transform: translateY(0);
}

.overlay-category {
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.overlay-name {
  font-size: 1.15rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.9rem;
    width: 100%;
  }

  .card-media {
    height: 400px;
    overflow: hidden;
  }

  .card-overlay {
    opacity: 0;
    background: linear-gradient(to top,
        rgba(14, 165, 164, 0.55) 0%,
        rgba(20, 184, 166, 0.15) 35%,
        transparent 60%);
    transition: opacity 0.42s ease;
  }

  .overlay-icon {
    width: 42px;
    height: 42px;
    margin-top: 30px;
    opacity: 0;
    transform: scale(0.72) translateY(8px);
    transition: opacity 0.4s ease 0.06s,
      transform 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0.06s;
  }

  .overlay-icon svg {
    width: 16px;
    height: 16px;
  }

  .overlay-bottom {
    padding: 0.6rem 1rem 0.9rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.42s ease 0.09s,
      transform 0.42s cubic-bezier(0.23, 1, 0.32, 1) 0.09s;
  }

  .overlay-category {
    font-size: 0.50rem;
    letter-spacing: 1.4px;
  }

  .overlay-name {
    font-size: 0.92rem;
    font-weight: 400;
  }

  .project-card.tap-active .card-overlay {
    opacity: 1;
  }

  .project-card.tap-active .overlay-icon {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  .project-card.tap-active .overlay-bottom {
    opacity: 1;
    transform: translateY(0);
  }

  .fusion-title {
    font-size: 2.6rem;
    text-align: center;
  }

  .nav-container {
    padding: 0 20px;
    height: 64px;
  }

  .logo img {
    height: 48px;
  }

  /* ── Styled Solid Drawer ── */
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    border-left: 4px solid #0ea5a4;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 40px 40px;
    z-index: 3000;
    gap: 30px;
    transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    overflow: hidden;
    pointer-events: all;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    right: 0;
  }

  /* ── Refined Navigation Links ── */
  .nav-links a {
    font-size: 2.2rem;
    font-weight: 800;
    padding: 10px 0;
    width: 100%;
    text-align: left;
    color: #0f172a;
    background: transparent !important;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    border-bottom: none !important;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #0ea5a4;
  }

  .nav-links a.active::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #0ea5a4;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(14, 165, 164, 0.5);
  }

  .nav-links a::after {
    display: none !important;
  }

  /* ── Styled Apply Button ── */
  .apply-btn-mobile {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5a4 0%, #2dd4bf 100%) !important;
    border: none;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin-top: 20px;
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(14, 165, 164, 0.3);
    transition: all 0.3s ease !important;
  }

  .apply-btn-mobile:active {
    transform: scale(0.97);
  }

  /* Instant appearance for links (animations removed as per user preference) */
  .nav-links.open a,
  .nav-links.open .apply-btn-mobile {
    opacity: 1;
    transform: none;
  }

  .nav-links.open a:nth-child(1) {
    animation-delay: 0.15s;
  }

  .nav-links.open a:nth-child(2) {
    animation-delay: 0.22s;
  }

  .nav-links.open a:nth-child(3) {
    animation-delay: 0.29s;
  }

  .nav-links.open a:nth-child(4) {
    animation-delay: 0.36s;
  }

  .nav-links.open a:nth-child(5) {
    animation-delay: 0.43s;
  }

  .nav-links.open .apply-btn-mobile {
    animation-delay: 0.55s;
  }

  @keyframes drawerItemReveal {
    to {
      opacity: 1;
      transform: translate(0, 0);
    }
  }

  /* ── Hamburger Icon Refinement ── */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 3100;
    position: relative;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1e293b;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
  }

  .hamburger span:nth-child(1) {
    transform: translateY(-7px);
  }

  .hamburger span:nth-child(2) {
    transform: translateY(0);
  }

  .hamburger span:nth-child(3) {
    transform: translateY(7px);
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    background: #0ea5a4;
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scale(0.2);
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
    background: #0ea5a4;
  }

  /* ── UI Backdrop ── */
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 2500;
  }

  .nav-backdrop.visible {
    display: block;
  }

  .apply-btn {
    display: none !important;
  }


  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card-scroll-preview {
    height: 280px;
  }

  .card-scroll-preview iframe {
    width: 200%;
    height: 900px;
    transform: scale(0.5);
  }

  .project-card:hover .card-scroll-preview iframe {
    transform: scale(0.5) translateY(-60%);
  }
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 2.5rem;
  padding: 4rem 2rem;
  text-align: center;
  margin: 4rem 0 3rem;
  border: 1px solid #eef2f6;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--gray-600);
}

.cta-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.primary-btn {
  background: #12acac;
  color: white;
  border: none;
  padding: 0.75em 1.5em;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.primary-btn:hover {
  background: #246369;
}

.large {
  padding: 1rem 2rem;
  border-radius: 12px;
}

.outline-btn {
  background: white;
  border: 1px solid #d1d5db;
  padding: 0.75em 1.5em;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  color: #111827;
}

.outline-btn:hover {
  background: var(--gray-100);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons a {
    text-align: center;
  }
}

/* ── FOOTER ── */
.athenura-footer {
  background: #0ea5a4;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  padding-top: 60px;
  margin-top: 0;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 60px 80px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 18px;
  display: block;
}

.branding p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  max-width: 230px;
}

.follow-us-text {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: 0.25s;
  color: inherit;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-links a:nth-child(1) {
  color: #0A66C2;
}

.social-links a:nth-child(2) {
  color: #E1306C;
}

.social-links a:nth-child(3) {
  color: #1DA1F2;
}

.social-links a:nth-child(4) {
  color: black;
}

.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.25s;
}

.footer-col ul li a:hover {
  color: #d6f1f3;
  transform: translateX(4px);
  text-decoration: underline;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.white-circle {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
}

.white-circle svg {
  width: 15px;
  height: 20px;
  display: block;
}

.email-icon {
  color: #e11d48;
}

.phone-icon {
  color: #22c55e;
}

.info-text span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.info-text a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.info-row:hover a {
  text-decoration: underline;
}

.info-row:hover .white-circle {
  transform: translateY(-4px);
}

.footer-col iframe {
  width: 100%;
  height: 160px;
  border: none;
  border-radius: 10px;
  margin-top: 4px;
}

.address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.address::before {
  content: "📍";
  font-size: 13px;
  flex-shrink: 0;
}

.footer-bottom-bar {
  padding: 0;
}

.bottom-content {
  max-width: 1400px;
  margin: auto;
  padding: 30px 60px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.bottom-content p a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.25s;
}

.bottom-content p a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  gap: 30px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .fusion-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fusion-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .fusion-actions,
  .fusion-stats-bar {
    justify-content: center;
  }
}

/* Responsive (exactly as original) */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr 1.6fr;
    gap: 40px;
    padding: 0 40px 60px;
  }
}

@media (max-width: 1200px) {
  .bottom-content {
    padding: 18px 40px 44px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 24px 60px;
  }

  .footer-col.branding {
    grid-column: 1 / -1;
  }

  .bottom-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 20px 24px 40px;
  }
}

@media (min-width: 480px) and (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .branding {
    grid-column: span 2;
  }

  .branding p {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px 50px;
  }

  .bottom-content {
    padding: 14px 20px 36px;
  }

  .legal-links {
    gap: 16px;
  }

  .legal-links a {
    font-size: 13px;
  }
}