@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --primary: hsl(141, 33%, 59%);
  --secondary: hsl(147, 28%, 45%);
  --accent: hsl(133, 59%, 81%);
  --bg-dark: #101216;
  --bg-panel: #16191f;
  --color-primary: hsl(141, 33%, 59%);
  --color-secondary: hsl(147, 28%, 45%);
  --color-accent: hsl(133, 59%, 81%);
}

body{
    background-color: var(--bg-dark);
    color: #f2f2f2;
    font-family: 'Lora', serif;
  }
  h1, h2, h3, h4, h5, h6{
    font-family: 'Oswald', sans-serif;
  }
  .navbar{
    background-color: var(--bg-panel);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }
  .navbar-brand{
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #f2f2f2 !important;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .navbar-brand img{
    border-radius: 16px;
  }
  .navbar .nav-link{
    color: #d8dde2 !important;
    font-family: 'Lora', serif;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: color 0.2s ease;
  }
  .navbar .nav-link:hover{
    color: var(--primary) !important;
  }
  .navbar-toggler{
    border-color: rgba(255,255,255,0.3);
  }
  .navbar-toggler-icon{
    filter: invert(1) grayscale(100%) brightness(200%);
  }

footer.site-footer {
  background: #14171c;
  color: #e8ece9;
  font-family: 'Lora', serif;
  border-top: 1px solid hsl(141, 33%, 59%, 0.3);
  padding: 96px 0 32px;
}
footer.site-footer h5 {
  font-family: 'Oswald', sans-serif;
  color: hsl(133, 59%, 81%);
  margin-bottom: 20px;
}
footer.site-footer p, footer.site-footer li, footer.site-footer a {
  color: #cfd6d1;
}
footer.site-footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}
footer.site-footer a:hover {
  color: hsl(141, 33%, 59%);
}
footer.site-footer ul {
  list-style: none;
  padding-left: 0;
}
footer.site-footer ul li {
  margin-bottom: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid hsl(147, 28%, 45%);
  color: hsl(133, 59%, 81%);
  margin-right: 10px;
  font-size: 1.2rem;
}
.footer-social a:hover {
  background: hsl(141, 33%, 59%);
  color: #14171c;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
  padding-top: 24px;
  font-size: 0.9rem;
  color: #9aa39d;
}
#consentBar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #15181d;
  border-top: 2px solid hsl(141, 33%, 59%);
  z-index: 2000;
  padding: 18px 0;
  max-height: 60vh;
  overflow-y: auto;
  font-family: 'Lora', serif;
  color: #e8ece9;
}
#consentBar h6 {
  font-family: 'Oswald', sans-serif;
  color: hsl(133, 59%, 81%);
  margin-bottom: 8px;
}
#consentBar p, #consentBar li {
  font-size: 0.88rem;
  color: #cfd6d1;
}
#consentBar ul {
  padding-left: 18px;
  margin-bottom: 10px;
}
.consent-btn {
  font-family: 'Oswald', sans-serif;
  border-radius: 14px;
  padding: 10px 18px;
  font-size: 0.92rem;
  border: none;
  font-weight: 600;
  transition: transform 0.15s ease, opacity 0.15s ease;
  width: 100%;
}
.consent-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.btn-accept-all {
  background: hsl(141, 33%, 59%);
  color: #101216;
}
.btn-reject-optional {
  background: hsl(147, 28%, 45%);
  color: #ffffff;
}
.btn-manage {
  background: transparent;
  border: 1px solid hsl(133, 59%, 81%);
  color: hsl(133, 59%, 81%);
  border-radius: 14px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-family: 'Oswald', sans-serif;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: background 0.15s ease;
}
.btn-manage:hover {
  background: hsl(133, 59%, 81%);
  color: #101216;
}

#portfolio-section {
  background: #14171c;
  color: #f0f2f0;
  padding: 96px 0;
  font-family: 'Lora', serif;
}
#portfolio-section h2, #portfolio-section h3, #portfolio-section h4 {
  font-family: 'Oswald', sans-serif;
}
#portfolio-section .section-intro {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
#portfolio-section .section-intro h2 {
  font-size: 2.4rem;
  color: hsl(133, 59%, 81%);
  margin-bottom: 16px;
}
#portfolio-section .section-intro p {
  color: #cfd4d0;
  font-size: 1.05rem;
}
#portfolio-section .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.3s ease;
}
#portfolio-section .project-card:hover {
  border-color: hsl(141, 33%, 59%);
}
#portfolio-section .project-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #101216;
}
#portfolio-section .project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#portfolio-section .project-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#portfolio-section .badge-category {
  align-self: flex-start;
  background: hsl(147, 28%, 45%);
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
#portfolio-section .project-body h3 {
  font-size: 1.3rem;
  color: #f0f2f0;
  margin-bottom: 10px;
}
#portfolio-section .project-body p {
  color: #c2c7c3;
  font-size: 0.95rem;
  flex-grow: 1;
}
#portfolio-section .btn-details {
  margin-top: 16px;
  border: 1px solid hsl(141, 33%, 59%);
  color: hsl(133, 59%, 81%);
  background: transparent;
  border-radius: 12px;
  padding: 10px 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  text-align: center;
  align-self: flex-start;
}
#portfolio-section .btn-details:hover {
  background: hsl(141, 33%, 59%);
  color: #101216;
}
#portfolio-section .modal-content {
  background: #1a1d23;
  color: #f0f2f0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
}
#portfolio-section .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
#portfolio-section .modal-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
}
#portfolio-section .modal-title {
  font-family: 'Oswald', sans-serif;
  color: hsl(133, 59%, 81%);
}
#portfolio-section .modal .btn-close {
  filter: invert(1);
}
#portfolio-section .modal-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}
#portfolio-section .modal-meta {
  color: #a9afaa;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
#portfolio-section .btn-modal-cta {
  background: hsl(141, 33%, 59%);
  border: none;
  color: #101216;
  font-family: 'Oswald', sans-serif;
  border-radius: 12px;
  padding: 10px 20px;
}
#portfolio-section .btn-modal-cta:hover {
  background: hsl(147, 28%, 45%);
  color: #ffffff;
}
#portfolio-section .stats-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 80px 0;
  padding: 32px 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
#portfolio-section .stat-item {
  text-align: center;
  min-width: 140px;
}
#portfolio-section .stat-item .num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: hsl(141, 33%, 59%);
  display: block;
}
#portfolio-section .stat-item .label {
  color: #c2c7c3;
  font-size: 0.9rem;
}
#portfolio-section .qa-block {
  max-width: 820px;
  margin: 0 auto;
}
#portfolio-section .qa-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
#portfolio-section .qa-item h4 {
  color: hsl(133, 59%, 81%);
  font-size: 1.1rem;
  margin-bottom: 8px;
}
#portfolio-section .qa-item p {
  color: #c2c7c3;
  margin-bottom: 0;
}
#portfolio-section .cta-final {
  text-align: center;
  margin-top: 88px;
}
#portfolio-section .cta-final a {
  display: inline-block;
  background: hsl(141, 33%, 59%);
  color: #101216;
  font-family: 'Oswald', sans-serif;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 16px;
  font-size: 1.05rem;
}
#portfolio-section .cta-final a:hover {
  background: hsl(147, 28%, 45%);
  color: #ffffff;
}

#about-content {
  background: #14171c;
  color: #e8ebe6;
  font-family: 'Lora', serif;
  padding: 96px 0;
}
#about-content h1, #about-content h2, #about-content h3 {
  font-family: 'Oswald', sans-serif;
  color: hsl(133, 59%, 81%);
}
#about-content .lead-text {
  color: #cfd6cc;
  font-size: 1.1rem;
  line-height: 1.8;
}
#about-content .panel {
  background: #1a1d23;
  border: 1px solid rgba(133, 59%, 81%, 0.15);
  border: 1px solid hsl(141, 20%, 30%);
  border-radius: 20px;
  padding: 40px;
}
#about-content .img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid hsl(141, 20%, 30%);
  margin-bottom: 24px;
}
#about-content .img-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
#about-content .divider {
  height: 1px;
  background: hsl(141, 20%, 30%);
  margin: 80px 0;
  border: none;
}
#about-content .team-card {
  background: #1a1d23;
  border: 1px solid hsl(141, 20%, 30%);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
}
#about-content .team-card h4 {
  font-family: 'Oswald', sans-serif;
  color: hsl(141, 33%, 59%);
  margin-bottom: 4px;
}
#about-content .team-card .role {
  color: hsl(133, 59%, 81%);
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: block;
}
#about-content .team-card p {
  color: #cfd6cc;
  font-size: 0.95rem;
  margin-bottom: 0;
}
#about-content table {
  color: #e8ebe6;
  border-color: hsl(141, 20%, 30%);
}
#about-content table th {
  color: hsl(133, 59%, 81%);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  border-color: hsl(141, 20%, 30%);
}
#about-content table td {
  border-color: hsl(141, 20%, 30%);
}
#about-content .cta-box {
  background: hsl(147, 28%, 45%);
  border-radius: 20px;
  padding: 56px;
  text-align: center;
}
#about-content .cta-box h2 {
  color: #101216;
}
#about-content .cta-box p {
  color: #12261a;
  font-size: 1.05rem;
}
#about-content .btn-cta {
  background: #101216;
  color: hsl(133, 59%, 81%);
  border: none;
  border-radius: 14px;
  padding: 14px 36px;
  font-family: 'Oswald', sans-serif;
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
#about-content .btn-cta:hover {
  background: #1a1d23;
  color: hsl(133, 59%, 81%);
}
#about-content .badge-fact {
  border: 1px solid hsl(141, 20%, 30%);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}
#about-content .badge-fact strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: hsl(141, 33%, 59%);
}
#about-content .badge-fact span {
  color: #cfd6cc;
  font-size: 0.85rem;
}
@media (max-width: 767px) {
  #about-content { padding: 64px 0; }
  #about-content .panel { padding: 24px; }
  #about-content .cta-box { padding: 32px; }
}

#contact-body {
  background: #101216;
  color: #f0f2f0;
  font-family: 'Lora', serif;
  padding: 96px 0;
}
#contact-body h1, #contact-body h2, #contact-body h3 {
  font-family: 'Oswald', sans-serif;
}
#contact-body .intro-text {
  color: #c9cdc9;
  max-width: 720px;
}
#contact-body .panel {
  background: #181b20;
  border: 1px solid hsl(141, 33%, 59%, 0.25);
  border-radius: 20px;
  padding: 40px;
}
#contact-body .form-control {
  background: #101216;
  border: 1px solid hsl(147, 28%, 45%, 0.4);
  color: #f0f2f0;
  border-radius: 12px;
  padding: 12px 16px;
}
#contact-body .form-control:focus {
  background: #101216;
  color: #f0f2f0;
  border-color: hsl(141, 33%, 59%);
  box-shadow: 0 0 0 0.2rem hsl(141, 33%, 59%, 0.25);
}
#contact-body label {
  color: #d5d8d5;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
#contact-body .btn-submit {
  background: hsl(141, 33%, 59%);
  color: #101216;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.03em;
  transition: background 0.2s ease;
}
#contact-body .btn-submit:hover {
  background: hsl(133, 59%, 81%);
  color: #101216;
}
#contact-body .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#contact-body .info-list li {
  border-bottom: 1px solid hsl(147, 28%, 45%, 0.25);
  padding: 18px 0;
}
#contact-body .info-list li:last-child {
  border-bottom: none;
}
#contact-body .info-label {
  color: hsl(133, 59%, 81%);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}
#contact-body a {
  color: hsl(133, 59%, 81%);
  text-decoration: none;
}
#contact-body a:hover {
  color: hsl(141, 33%, 59%);
}
#contact-body .map-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.95rem;
  border-bottom: 1px solid hsl(133, 59%, 81%, 0.5);
}
#contact-body .hours-block {
  background: #101216;
  border: 1px solid hsl(147, 28%, 45%, 0.3);
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}
#contact-body .cta-final {
  border-top: 1px solid hsl(147, 28%, 45%, 0.3);
  padding-top: 56px;
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 767px) {
  #contact-body { padding: 64px 0; }
  #contact-body .panel { padding: 28px; }
}

.hero-onet {
  min-height: 100vh;
  background: linear-gradient(180deg, #101216 0%, #1a1d23 100%);
  color: #f4f7f5;
  font-family: 'Lora', serif;
  display: flex;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-onet h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #f4f7f5;
  line-height: 1.15;
}
.hero-onet h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: hsl(133, 59%, 81%);
  margin-bottom: 1.5rem;
}
.hero-onet p.lead-text {
  font-size: 1.05rem;
  color: #d5dad6;
  max-width: 520px;
}
.hero-cta-btn {
  background-color: hsl(141, 33%, 59%);
  border: none;
  color: #101216;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 18px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-cta-btn:hover {
  background-color: hsl(147, 28%, 45%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.hero-image-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-image-wrap img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.hero-badge {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 6px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: hsl(133, 59%, 81%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.2rem;
}
@media (max-width: 991px) {
  .hero-onet {
    text-align: center;
    padding-top: 40px;
  }
  .hero-onet p.lead-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

#works {
  background: #14171c;
  padding: 96px 0;
  font-family: 'Lora', serif;
  color: #f1f3f5;
}
#works h2 {
  font-family: 'Oswald', sans-serif;
  color: #f1f3f5;
  font-weight: 600;
}
#works .lead-text {
  color: #c7ccd1;
  max-width: 700px;
}
#works .portfolio-card {
  background: #1a1d23;
  border: 1px solid hsl(141, 20%, 30%);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
#works .portfolio-card:hover {
  transform: translateY(-6px);
  border-color: hsl(141, 33%, 59%);
}
#works .portfolio-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #101216;
}
#works .portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#works .portfolio-body {
  padding: 24px;
}
#works .portfolio-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  color: #f1f3f5;
  margin-bottom: 10px;
}
#works .portfolio-body p {
  color: #c7ccd1;
  font-size: 0.95rem;
  line-height: 1.6;
}
#works .category-badge {
  display: inline-block;
  background: hsl(133, 59%, 81%);
  color: #14251c;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
#works .btn-details {
  border: 1px solid hsl(141, 33%, 59%);
  color: hsl(141, 33%, 59%);
  background: transparent;
  font-family: 'Oswald', sans-serif;
  border-radius: 12px;
  padding: 8px 20px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
#works .btn-details:hover {
  background: hsl(141, 33%, 59%);
  color: #101216;
}
#works .modal-content {
  background: #1a1d23;
  color: #f1f3f5;
  border-radius: 20px;
  border: 1px solid hsl(141, 20%, 30%);
}
#works .modal-header, #works .modal-footer {
  border-color: hsl(141, 20%, 30%);
}
#works .modal-title {
  font-family: 'Oswald', sans-serif;
  color: #f1f3f5;
}
#works .modal-body img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}
#works .modal-body p {
  color: #c7ccd1;
  line-height: 1.7;
}
#works .btn-close {
  filter: invert(1);
}
#works .btn-modal-close {
  font-family: 'Oswald', sans-serif;
  border-radius: 12px;
  background: hsl(147, 28%, 45%);
  color: #101216;
  border: none;
  padding: 8px 22px;
}
#works .btn-modal-close:hover {
  background: hsl(141, 33%, 59%);
  color: #101216;
}

#figures {
  background: linear-gradient(180deg, #101216 0%, #1a1d23 100%);
  padding: 96px 0;
}

#figures .section-heading {
  font-family: 'Oswald', sans-serif;
  color: #f5f7f6;
  font-weight: 600;
  letter-spacing: 0.5px;
}

#figures .section-subtext {
  font-family: 'Lora', serif;
  color: #c7ccc9;
  max-width: 620px;
  margin: 0 auto;
}

#figures .stat-card {
  background-color: #15181d;
  border: 1px solid hsla(133, 59%, 81%, 0.25);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  height: 100%;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

#figures .stat-card:hover {
  border-color: hsl(141, 33%, 59%);
  transform: translateY(-4px);
}

#figures .stat-icon {
  font-size: 2.4rem;
  color: hsl(133, 59%, 81%);
  margin-bottom: 18px;
  display: inline-block;
  animation: pulseIcon 2.4s ease-in-out infinite;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}

#figures .stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #f5f7f6;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  animation: countReveal 1.2s ease-out;
}

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

#figures .stat-label {
  font-family: 'Lora', serif;
  color: hsl(141, 33%, 70%);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

#figures .stat-context {
  font-family: 'Lora', serif;
  color: #9aa19c;
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  #figures .stat-number { font-size: 2.4rem; }
  #figures { padding: 72px 0; }
}

#voices {
  background: #14171c;
  padding: 112px 0;
  font-family: 'Lora', serif;
  color: #e8e8e8;
}
#voices h2 {
  font-family: 'Oswald', sans-serif;
  color: #f2f5f2;
  font-weight: 600;
}
#voices .lead-sub {
  color: #b8c2bc;
  max-width: 640px;
}
#voices .voice-card {
  background: #1a1d23;
  border: 1px solid hsla(141, 33%, 59%, 0.25);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s ease;
}
#voices .voice-card:hover {
  border-color: hsl(141, 33%, 59%);
}
#voices .voice-stars {
  color: hsl(133, 59%, 81%);
  font-size: 1.05rem;
  letter-spacing: 2px;
}
#voices .voice-stars .dim {
  color: #4a4f4a;
}
#voices .voice-text {
  color: #d8dcd8;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}
#voices .voice-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #2a2e33;
  padding-top: 14px;
}
#voices .voice-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: hsl(147, 28%, 45%);
  color: #101216;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  flex-shrink: 0;
}
#voices .voice-name {
  font-family: 'Oswald', sans-serif;
  color: #f2f5f2;
  margin: 0;
  font-size: 0.98rem;
}
#voices .voice-loc {
  color: #939a94;
  font-size: 0.83rem;
  margin: 0;
}
#voices .voice-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: hsl(141, 33%, 59%);
  border: 1px solid hsla(141, 33%, 59%, 0.4);
  border-radius: 999px;
  padding: 3px 12px;
  width: fit-content;
}
#voices .voice-long {
  grid-column: span 2;
}
@media (max-width: 767px) {
  #voices .voice-long {
    grid-column: span 1;
  }
}
#voices .stats-strip {
  border-top: 1px solid #2a2e33;
  margin-top: 72px;
  padding-top: 40px;
}
#voices .stat-num {
  font-family: 'Oswald', sans-serif;
  color: hsl(133, 59%, 81%);
  font-size: 2.1rem;
  font-weight: 600;
}
#voices .stat-label {
  color: #939a94;
  font-size: 0.9rem;
}

#contacts {
  background: #14171c;
  color: #f1f3f5;
  padding: 96px 0;
  font-family: 'Lora', serif;
}
#contacts h2, #contacts h3 {
  font-family: 'Oswald', sans-serif;
}
#contacts .section-heading {
  color: hsl(133, 59%, 81%);
  font-weight: 600;
  margin-bottom: 16px;
}
#contacts .section-lead {
  color: #c9cdd3;
  max-width: 640px;
  margin-bottom: 64px;
}
#contacts .contact-panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
}
#contacts .contact-panel h3 {
  color: hsl(141, 33%, 59%);
  font-size: 1.4rem;
  margin-bottom: 24px;
}
#contacts .contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
#contacts .contact-info-list li {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 14px;
}
#contacts .contact-info-list li:last-child {
  border-bottom: none;
}
#contacts .contact-info-list span.label {
  color: #9aa1ab;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
#contacts .contact-info-list a {
  color: hsl(133, 59%, 81%);
  text-decoration: none;
  font-size: 1.05rem;
}
#contacts .contact-info-list a:hover {
  color: hsl(141, 33%, 59%);
  text-decoration: underline;
}
#contacts .contact-info-list p {
  margin: 0;
  color: #e6e8eb;
  font-size: 1.02rem;
}
#contacts .map-link {
  color: hsl(141, 33%, 59%);
  font-size: 0.95rem;
  display: inline-block;
  margin-top: 6px;
}
#contacts .map-link:hover {
  color: hsl(133, 59%, 81%);
}
#contacts .hours-box {
  background: #101216;
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}
#contacts .hours-box p {
  margin: 0 0 6px 0;
  color: #d5d9dd;
  font-size: 0.98rem;
}
#contacts .hours-box p:last-child {
  margin-bottom: 0;
}
#contacts .contact-form-panel {
  background: #1a1d23;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 40px;
}
#contacts .contact-form-panel .form-label {
  color: #d5d9dd;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
#contacts .contact-form-panel .form-control {
  background: #101216;
  border: 1px solid rgba(255,255,255,0.15);
  color: #f1f3f5;
  border-radius: 12px;
  padding: 12px 16px;
}
#contacts .contact-form-panel .form-control:focus {
  background: #101216;
  color: #f1f3f5;
  border-color: hsl(141, 33%, 59%);
  box-shadow: 0 0 0 0.2rem hsla(141, 33%, 59%, 0.25);
}
#contacts .contact-form-panel .form-control::placeholder {
  color: #6c727a;
}
#contacts .btn-send {
  background: hsl(141, 33%, 59%);
  color: #101216;
  border: none;
  border-radius: 14px;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s ease;
}
#contacts .btn-send:hover {
  background: hsl(147, 28%, 45%);
  color: #ffffff;
}
@media (max-width: 767px) {
  #contacts .contact-panel, #contacts .contact-form-panel {
    padding: 28px;
  }
  #contacts {
    padding: 64px 0;
  }
}

#legal-notice {
  background: linear-gradient(180deg, #14171c 0%, #1a1d23 100%);
  padding: 96px 0;
  font-family: 'Lora', serif;
  color: #e8ebe8;
}
#legal-notice h2 {
  font-family: 'Oswald', sans-serif;
  color: hsl(133, 59%, 81%);
  font-size: 2.2rem;
  margin-bottom: 32px;
}
#legal-notice .disclaimer-panel {
  background-color: #1e2228;
  border: 1px solid hsl(147, 28%, 45%);
  border-radius: 20px;
  padding: 48px;
}
#legal-notice .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: hsl(141, 33%, 59%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#legal-notice .icon-wrap i {
  font-size: 2rem;
  color: #101216;
}
#legal-notice p {
  color: #d5dad5;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
}
#legal-notice .meta-line {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #a9b3a9;
  font-size: 0.92rem;
}
@media (max-width: 767px) {
  #legal-notice .disclaimer-panel {
    padding: 32px 24px;
  }
  #legal-notice .icon-wrap {
    width: 52px;
    height: 52px;
  }
}





.thankyou-section {
  font-family: 'Lora', serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-accent) 0%, #ffffff 60%);
  padding: 3rem 1rem;
}

.thankyou-card {
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  padding: 3rem 2rem;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  border-top: 6px solid var(--color-primary);
}

.thankyou-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop-in 0.5s ease-out;
}

.thankyou-icon-wrapper svg {
  width: 52px;
  height: 52px;
  stroke: var(--color-secondary);
}

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

.thankyou-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

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

.thankyou-note {
  background-color: rgba(133, 59, 81, 0.08);
  background-color: hsla(133, 59%, 81%, 0.25);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  color: var(--color-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.btn-thankyou {
  font-family: 'Oswald', sans-serif;
  background-color: var(--color-primary);
  border: none;
  color: #ffffff;
  padding: 0.75rem 2.25rem;
  font-size: 1.05rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px hsla(141, 33%, 59%, 0.4);
}

.btn-thankyou:hover,
.btn-thankyou:focus {
  background-color: var(--color-secondary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px hsla(147, 28%, 45%, 0.5);
}

@media (max-width: 576px) {
  .thankyou-card {
    padding: 2rem 1.25rem;
  }
  .thankyou-heading {
    font-size: 1.6rem;
  }
}
