@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Nunito:wght@400;600;700&display=swap');

body {
    background-color: #101216;
    color: #f0f2f5;
    font-family: 'Nunito', sans-serif;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
  }
  .navbar {
    background-color: #14161b;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #f0f2f5;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .navbar-brand:hover {
    color: hsl(211, 50%, 72%);
  }
  .navbar-nav .nav-link {
    color: #e6e9ef;
    font-weight: 600;
    padding: 0.5rem 1.1rem !important;
  }
  .navbar-nav .nav-link:hover {
    color: hsl(211, 50%, 72%);
  }
  .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
  }
  .navbar-toggler-icon {
    filter: invert(1);
  }

footer {
    background: #14161b;
    color: #e8eaf0;
    font-family: 'Nunito', sans-serif;
    padding: 64px 0 24px;
    border-top: 1px solid hsl(225, 21%, 74%, 0.2);
  }
  footer h5, footer h6 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-bottom: 16px;
  }
  footer p, footer a {
    color: #c9ccd4;
  }
  footer a {
    text-decoration: none;
    transition: color 0.2s ease;
  }
  footer a:hover {
    color: hsl(211, 50%, 72%);
  }
  footer .footer-divider {
    border-color: hsl(225, 21%, 74%, 0.2);
    margin: 32px 0 20px;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    border: 1px solid hsl(225, 21%, 74%, 0.3);
    color: #e8eaf0;
    font-size: 1.1rem;
    margin-right: 10px;
    transition: all 0.25s ease;
  }
  .footer-social a:hover {
    background: hsl(219, 30%, 56%);
    border-color: hsl(219, 30%, 56%);
    color: #fff;
  }
  .footer-bottom {
    font-size: 0.9rem;
    color: #9aa0ac;
  }
  .footer-contact-item {
    margin-bottom: 12px;
    font-size: 0.95rem;
  }

  #consentBox {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #14161b;
    color: #e8eaf0;
    border-top: 1px solid hsl(225, 21%, 74%, 0.3);
    font-family: 'Nunito', sans-serif;
    padding: 18px 0;
    max-height: 60vh;
    overflow-y: auto;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
  }
  #consentBox h6 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-bottom: 6px;
  }
  #consentBox p, #consentBox li {
    font-size: 0.85rem;
    color: #c9ccd4;
    margin-bottom: 6px;
  }
  #consentBox ul {
    padding-left: 18px;
    margin-bottom: 10px;
  }
  .consent-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 14px;
    padding: 10px 18px;
    font-size: 0.9rem;
    border: none;
    transition: all 0.2s ease;
    width: 100%;
  }
  .btn-accept-all {
    background: hsl(219, 30%, 56%);
    color: #fff;
  }
  .btn-accept-all:hover {
    background: hsl(219, 30%, 46%);
    color: #fff;
  }
  .btn-reject-optional {
    background: transparent;
    color: #e8eaf0;
    border: 1px solid hsl(225, 21%, 74%, 0.5);
  }
  .btn-reject-optional:hover {
    background: hsl(225, 21%, 74%, 0.15);
    color: #fff;
  }
  .btn-manage {
    color: hsl(211, 50%, 72%);
    font-size: 0.85rem;
    text-decoration: underline;
  }
  .btn-manage:hover {
    color: #fff;
  }

.thankyou-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, hsl(225, 21%, 74%, 0.15) 0%, hsl(211, 50%, 72%, 0.15) 100%);
    padding: 2rem 1rem;
    font-family: 'Nunito', sans-serif;
  }

  .thankyou-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 3rem 2.5rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  }

  .thankyou-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(219, 30%, 56%) 0%, hsl(211, 50%, 72%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1.5rem hsla(219, 30%, 56%, 0.35);
    animation: popIn 0.5s ease-out;
  }

  .thankyou-icon-wrapper svg {
    width: 50px;
    height: 50px;
    stroke: #ffffff;
  }

  @keyframes popIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    70% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .thankyou-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: hsl(219, 30%, 56%);
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .thankyou-text {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
  }

  .thankyou-note {
    background: hsl(211, 50%, 72%, 0.12);
    border-left: 4px solid hsl(219, 30%, 56%);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    text-align: left;
  }

  .thankyou-note p {
    margin: 0;
    color: #3d3d3d;
    font-size: 0.98rem;
  }

  .btn-thankyou {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background-color: hsl(219, 30%, 56%);
    border: none;
    color: #ffffff;
    padding: 0.75rem 2.25rem;
    border-radius: 0.65rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.35rem 1rem hsla(219, 30%, 56%, 0.3);
  }

  .btn-thankyou:hover {
    background-color: hsl(219, 30%, 46%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.25rem hsla(219, 30%, 56%, 0.4);
  }

  .btn-thankyou:active {
    transform: translateY(0);
  }

  @media (max-width: 576px) {
    .thankyou-card {
      padding: 2rem 1.5rem;
    }

    .thankyou-heading {
      font-size: 1.5rem;
    }

    .thankyou-icon-wrapper {
      width: 80px;
      height: 80px;
    }

    .thankyou-icon-wrapper svg {
      width: 40px;
      height: 40px;
    }
  }

#contact-page {
  background: #14161b;
  color: #e8e9ec;
  padding: 96px 0;
  font-family: 'Nunito', sans-serif;
}
#contact-page h1,
#contact-page h2,
#contact-page h3 {
  font-family: 'Poppins', sans-serif;
}
#contact-page .cp-eyebrow {
  color: hsl(211, 50%, 72%);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
}
#contact-page .cp-title {
  color: #fff;
  font-weight: 700;
}
#contact-page .cp-lead {
  color: hsl(225, 21%, 74%);
  font-size: 1.05rem;
  max-width: 640px;
}
#contact-page .cp-panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
}
#contact-page .cp-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact-page .cp-info-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #e8e9ec;
}
#contact-page .cp-info-list li:last-child {
  border-bottom: none;
}
#contact-page .cp-info-list strong {
  display: block;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
#contact-page .cp-info-list a {
  color: hsl(211, 50%, 72%);
  text-decoration: none;
}
#contact-page .cp-info-list a:hover {
  text-decoration: underline;
}
#contact-page .cp-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: hsl(219, 30%, 56%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
#contact-page .cp-find {
  background: rgba(211, 50%, 72%, 0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 20px;
  font-size: 0.95rem;
  color: hsl(225, 21%, 74%);
}
#contact-page .cp-find a {
  color: hsl(211, 50%, 72%);
  font-weight: 700;
  text-decoration: none;
}
#contact-page .cp-find a:hover {
  text-decoration: underline;
}
#contact-page .form-label {
  color: #e8e9ec;
  font-weight: 600;
  font-size: 0.92rem;
}
#contact-page .form-control {
  background: #101216;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 12px;
  padding: 12px 16px;
}
#contact-page .form-control:focus {
  background: #101216;
  color: #fff;
  border-color: hsl(211, 50%, 72%);
  box-shadow: 0 0 0 0.2rem rgba(126, 160, 210, 0.25);
}
#contact-page .form-control::placeholder {
  color: rgba(232,233,236,0.4);
}
#contact-page .cp-btn {
  background: hsl(219, 30%, 56%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 32px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s ease;
}
#contact-page .cp-btn:hover {
  background: hsl(211, 50%, 72%);
  color: #101216;
}
#contact-page .cp-cta {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 64px;
  padding-top: 48px;
  text-align: center;
}
#contact-page .cp-cta a.cp-btn-lg {
  display: inline-block;
  background: hsl(219, 30%, 56%);
  color: #fff;
  border-radius: 16px;
  padding: 16px 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s ease;
}
#contact-page .cp-cta a.cp-btn-lg:hover {
  background: hsl(211, 50%, 72%);
  color: #101216;
}
#contact-page .cp-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 6px 0;
  color: #e8e9ec;
}
#contact-page .cp-hours-row span:last-child {
  color: hsl(225, 21%, 74%);
}
@media (max-width: 767px) {
  #contact-page .cp-panel {
    padding: 26px;
  }
}

#portfolio-body {
  background: #14161b;
  color: #e8eaed;
  font-family: 'Nunito', sans-serif;
  padding: 96px 0;
}
#portfolio-body h1, #portfolio-body h2, #portfolio-body h3, #portfolio-body h4 {
  font-family: 'Poppins', sans-serif;
}
#portfolio-body .intro-block {
  max-width: 780px;
  margin: 0 auto 56px auto;
  text-align: center;
}
#portfolio-body .intro-block h1 {
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 20px;
}
#portfolio-body .intro-block p {
  color: hsl(225, 21%, 84%);
  font-size: 1.05rem;
  line-height: 1.7;
}
#portfolio-body .stats-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}
#portfolio-body .stats-strip .stat-item {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px 24px;
  min-width: 150px;
  text-align: center;
  background: #1a1d23;
}
#portfolio-body .stats-strip .stat-item .num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  color: hsl(211, 50%, 72%);
  font-weight: 600;
}
#portfolio-body .stats-strip .stat-item .lbl {
  font-size: 0.85rem;
  color: hsl(225, 21%, 74%);
}
#portfolio-body .project-card {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
#portfolio-body .project-card:hover {
  border-color: hsl(219, 30%, 56%);
  transform: translateY(-4px);
}
#portfolio-body .project-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #101216;
}
#portfolio-body .project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio-body .project-body {
  padding: 20px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#portfolio-body .badge-category {
  display: inline-block;
  background: hsl(219, 30%, 56%);
  color: #fff;
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
  align-self: flex-start;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.03em;
}
#portfolio-body .project-body h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
#portfolio-body .project-body p {
  color: hsl(225, 21%, 78%);
  font-size: 0.92rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 16px;
}
#portfolio-body .btn-detail {
  background: transparent;
  border: 1px solid hsl(211, 50%, 72%);
  color: hsl(211, 50%, 72%);
  border-radius: 12px;
  padding: 8px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  align-self: flex-start;
  transition: background 0.2s ease, color 0.2s ease;
}
#portfolio-body .btn-detail:hover {
  background: hsl(211, 50%, 72%);
  color: #101216;
}
#portfolio-body .modal-content {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  color: #e8eaed;
}
#portfolio-body .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
#portfolio-body .modal-header .modal-title {
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
#portfolio-body .modal-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
}
#portfolio-body .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}
#portfolio-body .modal-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}
#portfolio-body .details-table {
  width: 100%;
  color: hsl(225, 21%, 78%);
  font-size: 0.92rem;
}
#portfolio-body .details-table th {
  color: #fff;
  font-weight: 600;
  padding: 6px 10px 6px 0;
  width: 40%;
  vertical-align: top;
}
#portfolio-body .details-table td {
  padding: 6px 0;
}
#portfolio-body .table-wrap {
  max-width: 900px;
  margin: 64px auto 0 auto;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px;
  background: #1a1d23;
}
#portfolio-body .table-wrap h2 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 18px;
  text-align: center;
}
#portfolio-body table.legend {
  color: hsl(225, 21%, 82%);
}
#portfolio-body table.legend th {
  color: hsl(211, 50%, 72%);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 10px 12px;
}
#portfolio-body table.legend td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
#portfolio-body .cta-final {
  max-width: 700px;
  margin: 72px auto 0 auto;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 48px 32px;
  background: linear-gradient(180deg, #1a1d23 0%, #14161b 100%);
}
#portfolio-body .cta-final h2 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 14px;
}
#portfolio-body .cta-final p {
  color: hsl(225, 21%, 78%);
  margin-bottom: 24px;
}
#portfolio-body .btn-cta {
  background: hsl(219, 30%, 56%);
  color: #fff;
  border-radius: 14px;
  padding: 12px 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s ease;
}
#portfolio-body .btn-cta:hover {
  background: hsl(211, 50%, 72%);
  color: #101216;
}
@media (max-width: 767px) {
  #portfolio-body .intro-block h1 { font-size: 2rem; }
  #portfolio-body { padding: 64px 0; }
}



.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-image: url('../images/hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Nunito', sans-serif;
  color: #f5f5f5;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,18,22,0.75) 0%, rgba(16,18,22,0.55) 45%, rgba(16,18,22,0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid hsl(225, 21%, 74%);
  color: hsl(211, 50%, 72%);
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: #f5f5f5;
  margin-bottom: 18px;
}

.hero-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: hsl(211, 50%, 72%);
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 1.1rem;
  color: hsl(225, 21%, 84%);
  margin-bottom: 36px;
  max-width: 620px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: hsl(219, 30%, 56%);
  color: #f5f5f5;
  border: 1px solid hsl(219, 30%, 56%);
  padding: 16px 36px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background: transparent;
  color: hsl(211, 50%, 72%);
  border-color: hsl(211, 50%, 72%);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .hero-content {
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

#about-us {
  background: #14161b;
  color: #e8eaef;
  padding: 96px 0;
  font-family: 'Nunito', sans-serif;
}
#about-us h2, #about-us h3, #about-us h4 {
  font-family: 'Poppins', sans-serif;
}
#about-us .section-title {
  color: #f4f6f9;
  font-weight: 600;
  margin-bottom: 24px;
}
#about-us .lead-text {
  color: hsl(211, 50%, 72%);
  font-size: 1.1rem;
}
#about-us p {
  color: #cdd2db;
  line-height: 1.7;
}
#about-us .about-img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid hsl(225, 21%, 74%, 0.2);
}
#about-us .values-panel {
  background: #1a1d23;
  border: 1px solid hsl(225, 21%, 74%, 0.2);
  border-radius: 20px;
  padding: 28px;
  height: 100%;
}
#about-us .values-panel h4 {
  color: hsl(211, 50%, 72%);
  font-weight: 600;
  margin-bottom: 10px;
}
#about-us .values-panel p {
  color: #b8bfcb;
  margin-bottom: 0;
  font-size: 0.95rem;
}
#about-us .team-card {
  background: #1a1d23;
  border: 1px solid hsl(225, 21%, 74%, 0.2);
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  text-align: center;
}
#about-us .team-card .name {
  font-family: 'Poppins', sans-serif;
  color: #f4f6f9;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
#about-us .team-card .role {
  color: hsl(219, 30%, 56%);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
#about-us .team-card .desc {
  color: #b8bfcb;
  font-size: 0.95rem;
  margin-bottom: 0;
}
#about-us .divider {
  border-top: 1px solid hsl(225, 21%, 74%, 0.2);
  margin: 56px 0;
}
#about-us .stat-inline {
  display: inline-block;
  color: hsl(211, 50%, 72%);
  font-weight: 700;
}

#cases {
  background: #14161b;
  padding: 96px 0;
  font-family: 'Nunito', sans-serif;
  color: #e8e9ec;
}
#cases h2, #cases .modal-title {
  font-family: 'Poppins', sans-serif;
}
#cases .section-intro {
  max-width: 720px;
  margin: 0 auto 56px;
}
#cases .section-intro h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #f2f3f5;
}
#cases .section-intro p {
  color: hsl(225, 21%, 74%);
  font-size: 1.05rem;
}
#cases .stat-line {
  color: hsl(211, 50%, 72%);
  font-weight: 700;
}
#cases .case-card {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
#cases .case-card:hover {
  transform: translateY(-4px);
  border-color: hsl(211, 50%, 72%);
}
#cases .case-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
#cases .case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#cases .case-body {
  padding: 20px 22px 24px;
}
#cases .case-badge {
  display: inline-block;
  background: hsl(219, 30%, 56%);
  color: #f5f6f8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
#cases .case-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #f2f3f5;
  margin-bottom: 8px;
}
#cases .case-body p {
  color: hsl(225, 21%, 74%);
  font-size: 0.94rem;
  margin-bottom: 16px;
  line-height: 1.5;
}
#cases .case-link {
  color: hsl(211, 50%, 72%);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
#cases .case-link:hover {
  color: #f2f3f5;
  border-bottom-color: hsl(211, 50%, 72%);
}
#cases .modal-content {
  background: #1a1d23;
  color: #e8e9ec;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
}
#cases .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#cases .modal-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
}
#cases .modal-title {
  color: #f2f3f5;
  font-weight: 600;
}
#cases .btn-close-light {
  filter: invert(1) grayscale(100%) brightness(200%);
}
#cases .modal .case-badge {
  margin-bottom: 14px;
}
#cases .modal-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}
#cases .modal-body p {
  color: hsl(225, 21%, 74%);
  line-height: 1.6;
}
#cases .btn-modal-close {
  background: hsl(219, 30%, 56%);
  border: none;
  color: #f5f6f8;
  font-weight: 700;
  border-radius: 12px;
  padding: 8px 22px;
}
#cases .btn-modal-close:hover {
  background: hsl(211, 50%, 72%);
  color: #14161b;
}

#numbers {
  background: linear-gradient(180deg, #14161b 0%, #1a1d23 100%);
  padding: 96px 0;
  font-family: 'Nunito', sans-serif;
}

#numbers .section-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #f5f6f8;
  font-size: 2.2rem;
}

#numbers .section-sub {
  color: hsl(225, 21%, 74%);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

#numbers .stat-card {
  background: #1c1f26;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 24px;
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
  animation: fadeInUp 0.7s ease both;
}

#numbers .stat-card:hover {
  transform: translateY(-6px);
  border-color: hsl(211, 50%, 72%);
}

#numbers .stat-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: hsl(219, 30%, 56%);
  color: #f5f6f8;
  font-size: 1.9rem;
}

#numbers .stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: #f5f6f8;
  line-height: 1;
  margin-bottom: 6px;
  animation: countPulse 1.8s ease-out both;
}

#numbers .stat-label {
  color: hsl(225, 21%, 74%);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

#numbers .stat-context {
  color: hsl(211, 50%, 72%);
  font-size: 0.88rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countPulse {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  60% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

#numbers .stat-card:nth-child(1) { animation-delay: 0.05s; }
#numbers .stat-card:nth-child(2) { animation-delay: 0.15s; }
#numbers .stat-card:nth-child(3) { animation-delay: 0.25s; }
#numbers .stat-card:nth-child(4) { animation-delay: 0.35s; }

#contacts {
  background: #14161c;
  padding: 96px 0;
  font-family: 'Nunito', sans-serif;
  color: #e8e9ec;
}
#contacts h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #f2f3f5;
}
#contacts .lead-text {
  color: hsl(225, 21%, 74%);
  max-width: 640px;
}
#contacts .panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
}
#contacts label {
  font-weight: 600;
  color: #dcdfe4;
  margin-bottom: 6px;
}
#contacts .form-control {
  background: #101216;
  border: 1px solid rgba(255,255,255,0.12);
  color: #f0f1f3;
  border-radius: 12px;
  padding: 12px 16px;
}
#contacts .form-control:focus {
  background: #101216;
  color: #f0f1f3;
  border-color: hsl(211, 50%, 72%);
  box-shadow: 0 0 0 0.2rem rgba(107, 140, 197, 0.25);
}
#contacts .form-control::placeholder {
  color: hsl(225, 21%, 60%);
}
#contacts .btn-submit {
  background: hsl(219, 30%, 56%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: background 0.25s ease;
}
#contacts .btn-submit:hover {
  background: hsl(219, 30%, 46%);
  color: #ffffff;
}
#contacts .info-panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}
#contacts .info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
#contacts .info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(107, 140, 197, 0.15);
  color: hsl(211, 50%, 72%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
#contacts .info-item h6 {
  font-family: 'Poppins', sans-serif;
  color: #f2f3f5;
  margin-bottom: 4px;
  font-weight: 600;
}
#contacts .info-item p, #contacts .info-item a {
  color: hsl(225, 21%, 74%);
  margin-bottom: 0;
  text-decoration: none;
}
#contacts .info-item a:hover {
  color: hsl(211, 50%, 72%);
}
#contacts .map-link {
  display: inline-block;
  margin-top: 8px;
  color: hsl(211, 50%, 72%);
  font-weight: 600;
  border-bottom: 1px solid hsl(211, 50%, 72%);
}
#contacts .map-link:hover {
  color: hsl(219, 30%, 56%);
  border-color: hsl(219, 30%, 56%);
}
#contacts hr {
  border-color: rgba(255,255,255,0.1);
  margin: 24px 0;
}

#legal {
  background-color: #14161b;
  padding: 96px 0;
  font-family: 'Nunito', sans-serif;
  color: #e6e8ec;
}
#legal .disclaimer-panel {
  background-color: #1a1d23;
  border: 1px solid hsl(225, 21%, 74%, 0.25);
  border-radius: 20px;
  padding: 48px 40px;
}
#legal h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #f5f6f8;
  margin-bottom: 24px;
}
#legal .bi-info-circle-fill {
  color: hsl(211, 50%, 72%);
  font-size: 2rem;
  margin-right: 16px;
}
#legal p {
  color: hsl(225, 21%, 84%);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #legal .disclaimer-panel {
    padding: 32px 24px;
  }
}
