:root {
  --ink: #0b0d12;
  --muted: #5b6470;
  --paper: #d9eef0;
  --mist: #cfe9eb;
  --card: #ffffff;
  --sea: #1f8a8a;
  --sun: #f4a261;
  --night: #0c1118;
  --glow: rgba(31, 138, 138, 0.35);
  --shadow: rgba(12, 17, 24, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.7), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.5), transparent 35%),
    linear-gradient(180deg, #d9eef0 0%, #cfe9eb 55%, #c5e3e6 100%);
  color: var(--ink);
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Syne", sans-serif;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
}

section {
  position: relative;
  padding: 5rem 0;
  background: transparent;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.7), transparent 40%), radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.5), transparent 35%), linear-gradient(180deg, #d9eef0 0%, #cfe9eb 55%, #c5e3e6 100%);
  box-shadow: 0 12px 30px rgba(12, 17, 24, 0.12);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}

.brand-name {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: #fff;
}

.site-header.is-scrolled .brand-name {
  color: var(--ink);
}

.navbar .nav-link {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.site-header.is-scrolled .nav-link {
  color: var(--ink);
}

.navbar .nav-link:hover {
  color: var(--sun);
}

.site-header.is-scrolled .nav-link:hover {
  color: var(--sea);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.6);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  width: 44px;
  height: 38px;
  border-radius: 999px;
  font-size: 1.35rem;
}

.site-header.is-scrolled .navbar-toggler {
  border-color: rgba(12, 17, 24, 0.4);
}

.site-header.is-scrolled .menu-toggle {
  color: var(--ink);
  border-color: rgba(12, 17, 24, 0.4);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
  display: flex;
}

.mobile-menu-panel {
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -25px 0 45px rgba(12, 17, 24, 0.18);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-time {
  font-size: 0.85rem;
  color: #6c7682;
}

.mobile-menu-close {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  color: var(--ink);
}

.mobile-menu-label {
  font-size: 0.85rem;
  color: #6c7682;
  letter-spacing: 0.5px;
}

.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e6e8ec;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
}

.mobile-menu-links li:first-child a {
  border-top: 1px solid #e6e8ec;
}

.mobile-menu-links i {
  color: #6c7682;
  font-size: 1.2rem;
}

.mobile-menu-footer {
  margin-top: auto;
  color: #7a838e;
  font-size: 0.9rem;
  display: grid;
  gap: 0.65rem;
}

.mobile-menu-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.mobile-menu-brand img {
  height: 32px;
  width: auto;
}

body.menu-open {
  overflow: hidden;
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(15, 18, 24, 0.4), rgba(10, 12, 16, 0.92)),
    linear-gradient(180deg, rgba(10, 12, 16, 0.35), rgba(10, 12, 16, 0.9));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0 6rem;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4.1rem);
  margin: 1.5rem 0 1rem;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.btn-primary {
  background: var(--sun);
  border-color: var(--sun);
  color: #1a120b;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  animation: cta-pulse 2.6s ease-in-out infinite;
}

.btn-primary:hover {
  background: #ffb774;
  border-color: #ffb774;
  color: #1a120b;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), transparent 50%);
  opacity: 0;
  animation: cta-sheen 2.6s ease-in-out infinite;
  pointer-events: none;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stats span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}

.hero-stats small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 10px;
  column-gap: 0.75rem;
  align-items: stretch;
}

.hero-card {
  background: rgba(20, 22, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  height: 100%;
}

.hero-card h3 {
  font-size: 1.1rem;
  margin: 0.6rem 0;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-logos {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 2.5rem;
  margin-top: 0;
  padding: 0 4rem;
  bottom: 2rem;
  left: 0;
  right: 0;
  opacity: 0.8;
  overflow: hidden;
}

.hero-logos-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: hero-marquee 18s linear infinite;
}

.hero-logos img {
  height: 30px;
  width: auto;
  filter: grayscale(100%) brightness(1.3);
}

.about {
  background: transparent;
}

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

.about-copy p {
  color: var(--muted);
  max-width: 520px;
}

.about-points {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.about-points h4 {
  margin-bottom: 0.4rem;
}

.about-panel {
  display: grid;
  gap: 1.5rem;
}

.about-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(18, 20, 28, 0.1);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.about-stats div {
  background: rgba(31, 138, 138, 0.1);
  border: 1px solid rgba(31, 138, 138, 0.25);
  padding: 1rem 1.2rem;
  border-radius: 16px;
}

.about-stats span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sea);
}

.about-stats small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.portfolio {
  background: radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.08), transparent 45%),
    radial-gradient(circle at 80% 5%, rgba(244, 162, 97, 0.18), transparent 40%),
    linear-gradient(180deg, #0c1118 0%, #0f1722 55%, #0b0f15 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background-size: 180% 180%, 160% 160%, 100% 100%;
  animation: portfolio-glow 16s ease-in-out infinite;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.portfolio-header h2 {
  margin-bottom: 0.4rem;
}

.portfolio-header p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  max-width: 420px;
}

.portfolio .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.portfolio-card {
  border: none;
  padding: 0;
  border-radius: 5px;
  overflow: hidden;
  background: #121821;
  position: relative;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 9;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.65) 100%);
}

.portfolio-card .play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.portfolio-card .play i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0b0b0b;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.portfolio-card:hover .play,
.portfolio-card:focus-visible .play {
  opacity: 0.95;
  transform: scale(1);
}

.portfolio-card:hover {
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.55);
}

.services {
  background: transparent;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.services-header p {
  color: var(--muted);
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border-radius: 22px;
  padding: 2rem 1.8rem;
  box-shadow: 0 20px 40px rgba(18, 22, 32, 0.08);
  border: 1px solid rgba(31, 138, 138, 0.15);
}

.service-card i {
  font-size: 1.8rem;
  color: var(--sea);
}

.service-card h3 {
  margin: 1rem 0 0.6rem;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--muted);
  margin: 0;
}

.team {
  background: transparent;
  color: #0b0b0b;
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: rgba(11, 11, 11, 0.55);
}

.team h2 {
  margin-top: 0.75rem;
}

.team-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(127, 140, 143, 0.75) 45%, rgba(76, 87, 89, 0.85) 100%);
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
  position: relative;
  box-shadow: 0 18px 36px rgba(12, 38, 44, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.75);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-photo {
  position: absolute;
  inset: 0;
  filter: grayscale(20%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 0.45s ease;
  opacity: 0.8;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 30, 0.05) 0%, rgba(15, 26, 30, 0.55) 70%);
}

.team-name {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 1;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #eef4f4;
  background: rgba(14, 22, 25, 0.65);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  text-align: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 25px rgba(10, 20, 22, 0.25);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(12, 38, 44, 0.28);
}

.team-card:hover .team-photo {
  transform: scale(1.05);
}

.contact {
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  background: var(--card);
  border-radius: 16px;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 16px 32px rgba(18, 22, 32, 0.08);
}

.contact-card h4 {
  margin-bottom: 0.4rem;
}

.contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 24px 50px rgba(18, 22, 32, 0.12);
}

.form-label {
  font-weight: 600;
  color: var(--ink);
}

.form-control {
  border-radius: 12px;
  border: 1px solid rgba(12, 17, 24, 0.18);
  padding: 0.7rem 0.85rem;
}

.form-control:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 0.2rem rgba(31, 138, 138, 0.15);
}

.btn-outline-light {
  border-color: rgba(11, 11, 11, 0.6);
  color: #0b0b0b;
}

.btn-outline-light:hover {
  background: #0b0b0b;
  color: #fff;
}

.video-modal {
  background: #0b0b0b;
  border-radius: 18px;
  padding: 1.5rem;
  position: relative;
}

.video-modal .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.site-footer {
  color: #f2f2f2;
  background: linear-gradient(180deg, #1a1a1a 0%, #1a1a1a 70%, #141414 70%, #141414 100%);
  padding: 1.75rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-main {
  display: grid;
  gap: 0.55rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #f2f2f2;
  font-weight: 600;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #e5e5e5;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-1px);
}

.footer-credit {
  margin: 0;
  color: rgba(242, 242, 242, 0.65);
  font-size: 0.75rem;
}

.footer-credit-link {
  color: #d8f1f3;
}

.footer-credit-link:hover {
  color: #ffffff;
}

.footer-price {
  margin: 0;
  color: rgba(242, 242, 242, 0.65);
  font-size: 0.8rem;
}

.footer-legal {
  margin-top: 1.6rem;
  padding: 1.1rem 0 1.4rem;
  text-align: center;
  color: rgba(242, 242, 242, 0.65);
  font-size: 0.85rem;
}

.footer-legal p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: grid;
  place-items: center;
  background: var(--sun);
  color: #1a120b;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1100;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #ffb774;
  color: #1a120b;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.9s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.15s;
}

.reveal.delay-2 {
  animation-delay: 0.3s;
}

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

@keyframes hero-marquee {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 10px 25px rgba(244, 162, 97, 0.35);
  }
  50% {
    box-shadow: 0 16px 35px rgba(244, 162, 97, 0.55);
  }
}

@keyframes cta-sheen {
  0% {
    opacity: 0;
    transform: translateX(-40%);
  }
  45% {
    opacity: 0.45;
  }
  70% {
    opacity: 0;
    transform: translateX(40%);
  }
  100% {
    opacity: 0;
    transform: translateX(40%);
  }
}

@keyframes portfolio-glow {
  0% {
    background-position: 0% 0%, 100% 0%, 0% 0%;
  }
  50% {
    background-position: 100% 20%, 0% 10%, 0% 0%;
  }
  100% {
    background-position: 0% 0%, 100% 0%, 0% 0%;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }

  .navbar .nav-link {
    color: var(--ink);
  }

  .site-header {
    background: rgba(217, 238, 240, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(12, 17, 24, 0.12);
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .team-card {
    min-height: 220px;
  }
}

@media (min-width: 992px) {
  .menu-toggle,
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 6.5rem 0 2rem;
    gap: 2rem;
  }

  .hero-copy {
    background: rgba(10, 12, 16, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 7vw, 3rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-cards {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .hero-cards::-webkit-scrollbar {
    display: none;
  }

  .hero-card {
    min-width: 230px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .hero-logos {
    gap: 1.25rem;
    padding: 0 1.5rem;
    bottom: 1.5rem;
    justify-content: center;
  }

  .hero-logos img {
    height: 24px;
  }

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

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

  .team-header {
    align-items: flex-start;
  }

  .contact-grid {
    gap: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-social {
    gap: 0.6rem;
  }

  .footer-legal {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .navbar-brand {
    gap: 0.4rem;
  }

  .brand-logo {
    height: 28px;
  }

  .brand-name {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stats span {
    font-size: 1.2rem;
  }

  .hero-card {
    padding: 1rem 1.1rem;
  }

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

  .services-header,
  .portfolio-header {
    gap: 1rem;
  }

  .team-card {
    min-height: 200px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.25rem;
  }
}
