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

:root {
  --midnight: #0f1c3f;
  --midnight-light: #1a2d5a;
  --midnight-dark: #091229;
  --mint: #5ec9b6;
  --mint-light: #7edfc7;
  --mint-dark: #3db8a3;
  --mint-pale: #e8f7f4;
  --cream: #faf8f5;
  --warm-gray: #f5f2ed;
  --text: #1a1a2e;
  --text-light: #5a5a7a;
  --text-muted: #8888a0;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(15, 28, 63, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 28, 63, 0.1);
  --shadow-lg: 0 8px 40px rgba(15, 28, 63, 0.12);
  --shadow-xl: 0 16px 60px rgba(15, 28, 63, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 28, 63, 0.06);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--midnight);
  font-weight: 400;
}

.nav__logo-icon {
  font-size: 1.4rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--midnight);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__links a:hover {
  color: var(--midnight);
}

.nav__links a:hover::after {
  width: 100%;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn__icon {
  width: 18px;
  height: 18px;
}

.btn--mint {
  background: var(--mint);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(94, 201, 182, 0.35);
}

.btn--mint:hover {
  background: var(--mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(94, 201, 182, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--midnight);
  border: 2px solid var(--midnight);
}

.btn--outline:hover {
  background: var(--midnight);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--midnight);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--midnight);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}

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

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero__blob--1 {
  width: 500px;
  height: 500px;
  background: var(--mint);
  top: -100px;
  right: -100px;
  opacity: 0.15;
}

.hero__blob--2 {
  width: 350px;
  height: 350px;
  background: var(--midnight);
  bottom: -50px;
  left: -50px;
  opacity: 0.06;
}

.hero__blob--3 {
  width: 200px;
  height: 200px;
  background: var(--mint-light);
  top: 40%;
  left: 45%;
  opacity: 0.12;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mint-pale);
  color: var(--mint-dark);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--midnight);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__sub em {
  color: var(--mint-dark);
  font-style: italic;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero__trust-icon {
  width: 20px;
  height: 20px;
  color: var(--mint);
  flex-shrink: 0;
}

.hero__image {
  position: relative;
}

.hero__image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--mint);
  border-radius: var(--radius-xl);
  z-index: 0;
  opacity: 0.4;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint-pale);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--midnight);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 400;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(94, 201, 182, 0.2);
  background: var(--white);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--mint-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--mint-dark);
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--midnight);
  margin-bottom: 12px;
  font-weight: 400;
}

.card__body {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--cream);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  transition: var(--transition);
}

.gallery__item:nth-child(2) {
  aspect-ratio: auto;
  height: 100%;
}

.gallery__item:nth-child(3) {
  aspect-ratio: auto;
  height: 100%;
}

.gallery__item:nth-child(5) {
  aspect-ratio: auto;
  height: 100%;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images {
  position: relative;
}

.about__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

.about__img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--mint);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.4;
  max-width: 160px;
  text-align: center;
}

.about__content {
  max-width: 480px;
}

.about__content .section-title {
  text-align: left;
}

.about__body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(15, 28, 63, 0.08);
  border-bottom: 1px solid rgba(15, 28, 63, 0.08);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about__stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--mint-dark);
}

.about__stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--cream);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(15, 28, 63, 0.08);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--midnight);
  transition: var(--transition);
}

.faq__question:hover {
  color: var(--mint-dark);
}

.faq__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mint-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq__icon svg {
  width: 16px;
  height: 16px;
  color: var(--mint-dark);
  transition: var(--transition);
}

.faq__item.active .faq__icon {
  background: var(--mint);
}

.faq__item.active .faq__icon svg {
  color: var(--white);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq__answer p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta__content {
  flex: 1;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 400;
}

.cta__body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 480px;
}

.cta__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__info .section-title,
.contact__info .section-tag {
  text-align: left;
}

.contact__body {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail-icon {
  width: 48px;
  height: 48px;
  background: var(--mint-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mint-dark);
}

.contact__detail-icon svg {
  width: 22px;
  height: 22px;
}

.contact__detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

.contact__detail a:hover {
  color: var(--mint-dark);
}

.contact__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact__form-wrap {
  max-width: 480px;
  margin-left: auto;
}

.contact__form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(15, 28, 63, 0.06);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--midnight);
  margin-bottom: 8px;
  font-weight: 400;
}

.contact__form-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(15, 28, 63, 0.08);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(94, 201, 182, 0.15);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__success {
  text-align: center;
  padding: 20px 0;
}

.contact__success-icon {
  width: 64px;
  height: 64px;
  background: var(--mint-pale);
  color: var(--mint-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.contact__success-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--midnight);
  margin-bottom: 8px;
  font-weight: 400;
}

.contact__success-body {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--midnight-dark);
  padding: 60px 0 32px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.footer__brand {
  max-width: 400px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__logo-icon {
  font-size: 1.4rem;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--mint);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner {
    gap: 40px;
  }

  .about__inner {
    gap: 50px;
  }

  .about__img-float {
    right: -20px;
    bottom: -20px;
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__image {
    max-width: 480px;
    margin: 0 auto;
  }

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

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

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

  .about__images {
    max-width: 480px;
    margin: 0 auto;
  }

  .about__content {
    max-width: 100%;
  }

  .about__content .section-title {
    text-align: center;
  }

  .about__stats {
    justify-content: center;
  }

  .cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta__body {
    max-width: 100%;
  }

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

  .contact__info .section-title,
  .contact__info .section-tag {
    text-align: center;
  }

  .contact__form-wrap {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 24px;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links a {
    font-size: 1rem;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero__headline {
    font-size: 2rem;
  }

  .hero__image-accent {
    display: none;
  }

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

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

  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(5) {
    aspect-ratio: 1;
    height: auto;
  }

  .about__img-float {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 16px;
    max-width: 280px;
    margin-left: auto;
  }

  .about__badge {
    position: relative;
    top: 0;
    left: 0;
    display: inline-block;
    margin-bottom: 16px;
  }

  .about__images {
    text-align: center;
  }

  .cta__actions {
    justify-content: center;
  }

  .contact__form-card {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

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

  .hero__trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .services__grid {
    gap: 16px;
  }

  .card {
    padding: 28px 22px;
  }

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

  .about__stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .cta__actions {
    flex-direction: column;
    width: 100%;
  }

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

  .footer__links {
    flex-direction: column;
    gap: 16px;
  }
}
