@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #111;
  text-decoration: none;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #ffffff;
  min-height: 100vh;
}

.navbar-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  padding: 2.5rem 2rem 0;
  z-index: 100;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 960px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 58px;
  background: #ffffff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='1000' height='58' viewBox='0 0 1000 58' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M0 0H442C470 0 472 42 500 42C528 42 530 0 558 0H1000V58H0Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='1000' height='58' viewBox='0 0 1000 58' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M0 0H442C470 0 472 42 500 42C528 42 530 0 558 0H1000V58H0Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-heading {
  font-size: 4.2rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 2rem;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #d11a2a;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateX(-50%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: opacity 0.3s ease;
}

.hero-scroll-cue:hover {
  opacity: 0.7;
}

.btn-icon svg,
.action-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.hero-scroll-cue svg {
  width: 22px;
  height: 22px;
  stroke-width: 3;
}


.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  height: 49px;
  border-radius: 9999px;
  padding: 0 8px 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.3s ease, all 0.3s ease;
}

.btn:hover {
  opacity: 0.7;
}

.btn-primary {
  background-color: #ffffff;
  color: #111;
  font-weight: 500;
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 300;
}

.btn-secondary span {
  font-size: 0.9rem;
  font-weight: 300;
  color: #ffffff;
  opacity: 0.9;
}

.btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-icon i {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.btn-icon-primary {
  background-color: #d11a2a;
  color: #ffffff;
}

.btn-icon-secondary {
  background-color: #ffffff;
  color: #d11a2a;
}

.nav-capsule {
  height: 48px;
  display: flex;
  align-items: center;
}

.logo-capsule {
  background-color: #ffffff;
  border-radius: 9999px;
  width: 140px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.logo-capsule:hover {
  opacity: 0.7;
}

.logo-image {
  max-height: 28px;
  width: auto;
  display: block;
}

.menu-capsule {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.116);
  border-radius: 9999px;
  gap: 2rem;
  padding: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.menu-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.menu-capsule:has(.menu-link:hover) .menu-link:not(:hover) {
  opacity: 0.5;
}

.menu-link:first-child {
  margin-left: 1.8rem;
}

.menu-link:last-child {
  margin-right: 1.8rem;
}

.action-capsule {
  background-color: #ffffff;
  border-radius: 9999px;
  width: 140px;
  padding: 0 8px 0 22px;
  gap: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.action-capsule:hover {
  opacity: 0.7;
}

.action-label {
  font-weight: 500;
  font-size: 0.88rem;
  color: #111;
}

.action-btn {
  width: 32px;
  height: 32px;
  background-color: #d11a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.action-btn i {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 2.2rem;
  max-width: 540px;
}

.section {
  padding: 6.5rem 2rem;
}

.section-tinted {
  background-color: #f7f7f8;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

.section-head {
  max-width: 660px;
  margin-bottom: 3.5rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid #e9e9eb;
  border-radius: 9999px;
  background: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 1.3rem;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d11a2a;
  flex: none;
}

.eyebrow-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.section-title {
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.14;
  color: #111;
}

.section-lead {
  margin-top: 1.1rem;
  color: #5f6368;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

a:focus-visible,
button:focus-visible,
.input:focus-visible {
  outline: 2px solid #d11a2a;
  outline-offset: 3px;
}

.brands-strip {
  padding: 3.2rem 2rem 1rem;
}

.brands-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

.brands-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #111;
}

.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3.2rem;
}

.brand-name {
  font-size: 1.7rem;
  font-weight: 800;
  color: #c9c9ce;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid #ececee;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: opacity 0.7s ease;
}

.service-media {
  position: relative;
  height: 210px;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.service-icon {
  position: absolute;
  left: 22px;
  bottom: -24px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d11a2a;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 5px #ffffff;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.service-body {
  padding: 2.6rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-body h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.6rem;
}

.service-body p {
  color: #5f6368;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #d11a2a;
  transition: gap 0.3s ease, opacity 0.3s ease;
}

.service-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.service-link:hover {
  gap: 12px;
  opacity: 0.75;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
}

.about-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.about-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d11a2a;
  color: #ffffff;
  display: grid;
  place-items: center;
  flex: none;
}

.about-badge-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.about-badge strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
}

.about-badge span {
  font-size: 0.8rem;
  font-weight: 400;
  color: #7a7a80;
}

.about-checklist {
  list-style: none;
  margin: 2rem 0 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
}

.check-dot {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(209, 26, 42, 0.1);
  color: #d11a2a;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.check-dot svg {
  width: 13px;
  height: 13px;
  stroke-width: 3.2;
}

.btn-red {
  background-color: #d11a2a;
  color: #ffffff;
  font-weight: 500;
}

.btn-red span {
  color: #ffffff;
}

.btn-icon-red {
  background-color: #ffffff;
  color: #d11a2a;
}

.btn-outline {
  border: 1px solid #e4e4e7;
  background: #ffffff;
  color: #111;
  font-weight: 500;
}

.price-btn-glass {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  color: #111;
  font-weight: 500;
  font-size: 0.92rem;
}

.price-btn-glass span {
  color: #111;
  opacity: 1;
}

.btn-icon-glass {
  background: #d11a2a;
  color: #ffffff;
}

.band-dark {
  position: relative;
  background: #101014;
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: 5rem 2rem;
  text-align: center;
}

.stat-value {
  font-size: 3.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 0.5rem;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(50% + 44px);
  width: calc(100% - 88px + 2.5rem);
  border-top: 2px dashed #e5e5e8;
}

.process-step:last-child::after {
  display: none;
}

.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: #d11a2a;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 8px rgba(209, 26, 42, 0.08);
}

.process-step h3 {
  font-size: 1.08rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.9rem;
  font-weight: 300;
  color: #5f6368;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.gallery-item {
  position: relative;
  display: block;
  height: 290px;
  border-radius: 22px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.68));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
}

.gallery-overlay strong {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
}

.gallery-overlay span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 300;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #ececee;
  border-radius: 28px;
  padding: 2.6rem 2.1rem 2.1rem;
  display: flex;
  flex-direction: column;
  transition: opacity 0.7s ease;
}

.price-card.featured {
  background: #101014;
  border-color: #101014;
  color: #ffffff;
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #d11a2a;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 9999px;
  white-space: nowrap;
}

.price-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.price-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: #7a7a80;
  margin-bottom: 1.6rem;
}

.featured .price-desc {
  color: rgba(255, 255, 255, 0.55);
}

.price-value {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.8rem;
}

.price-value small {
  font-size: 1.3rem;
  font-weight: 600;
  vertical-align: 6px;
  margin-right: 2px;
}

.price-value span {
  display: block;
  font-size: 0.8rem;
  font-weight: 300;
  color: #9a9aa0;
  margin-top: 0.5rem;
}

.featured .price-value span {
  color: rgba(255, 255, 255, 0.5);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.2rem;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 300;
  color: #444;
  line-height: 1.5;
}

.featured .price-features li {
  color: rgba(255, 255, 255, 0.85);
}

.price-features svg {
  flex: none;
  width: 16px;
  height: 16px;
  stroke-width: 3;
  color: #d11a2a;
  margin-top: 3px;
}

.price-btn {
  justify-content: space-between;
  width: 100%;
}

.btn-outline .btn-icon-red {
  background-color: #d11a2a;
  color: #ffffff;
}

.testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-viewport {
  overflow: hidden;
  flex: 1;
}

.testimonial-track {
  display: flex;
  gap: 1.6rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.07rem);
  background: #ffffff;
  border: 1px solid #ececee;
  border-radius: 26px;
  padding: 2.1rem 1.9rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.carousel-arrow {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e4e4e7;
  background: #ffffff;
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.carousel-arrow:hover {
  background: #d11a2a;
  color: #ffffff;
  border-color: #d11a2a;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.2rem;
}

.stars svg {
  width: 17px;
  height: 17px;
  fill: #d11a2a;
  stroke: #d11a2a;
  stroke-width: 1;
}

.testimonial-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: #444;
  line-height: 1.75;
  margin-bottom: 1.6rem;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #111;
}

.testimonial-author span {
  font-size: 0.78rem;
  font-weight: 300;
  color: #9a9aa0;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #ececee;
  border-radius: 20px;
  transition: border-color 0.3s ease, opacity 0.7s ease, transform 0.7s ease;
}

.faq-item.open {
  border-color: #d11a2a33;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.6rem;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f4f4f5;
  color: #111;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.6;
}

.faq-item.open .faq-icon {
  background: #d11a2a;
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-a-inner {
  overflow: hidden;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a p {
  padding: 0 1.6rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: #5f6368;
  line-height: 1.75;
}

.cta-band {
  background-image: linear-gradient(rgba(10, 10, 13, 0.78), rgba(10, 10, 13, 0.78)),
    url('https://images.unsplash.com/photo-1493238792000-8113da705763?auto=format&fit=crop&w=1800&q=70');
  background-size: cover;
  background-position: center;
}

.cta-inner {
  padding: 4rem 2rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-title {
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.16;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2.2rem;
}

.cta-buttons {
  justify-content: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #ececee;
  border-radius: 22px;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-icon {
  flex: none;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.85);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.contact-icon.contact-icon-red {
  background: #d11a2a;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.contact-icon.contact-icon-red svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.contact-icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.5;
}

.contact-card > div:not(.contact-icon) {
  flex: 1;
}

.contact-card strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.contact-card span,
.contact-card a {
  font-size: 0.85rem;
  font-weight: 300;
  color: #5f6368;
  line-height: 1.6;
}

.contact-card a:hover {
  color: #d11a2a;
}

.contact-map {
  flex: 1;
  min-height: 240px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #ececee;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
  display: block;
}

.contact-form {
  background: #f7f7f8;
  border: 1px solid #ececee;
  border-radius: 28px;
  padding: 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #333;
}

.input {
  width: 100%;
  height: 52px;
  border: 1px solid #e4e4e7;
  border-radius: 14px;
  padding: 0 1.1rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 400;
  color: #111;
  background: #ffffff;
  transition: border-color 0.3s ease;
  appearance: none;
}

.input::placeholder {
  color: #a5a5ab;
  font-weight: 300;
}

.input:focus {
  outline: none;
  border-color: #d11a2a;
}

select.input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

textarea.input {
  height: auto;
  min-height: 120px;
  padding: 0.9rem 1.1rem;
  resize: vertical;
  line-height: 1.6;
}

.form-submit {
  align-self: flex-start;
  justify-content: space-between;
  border: 0;
  font-family: inherit;
  margin-top: 0.3rem;
}

.form-note {
  font-size: 0.88rem;
  font-weight: 500;
  color: #1a7f37;
}

.footer {
  position: relative;
  background: #0a0a0d;
  color: #ffffff;
  padding: 0 2rem;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -270px;
  width: 900px;
  height: 480px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(209, 26, 42, 0.28), transparent 70%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding: 2.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  background-color: #ffffff;
  border-radius: 9999px;
  padding: 0 1.4rem;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.7;
}

.footer-logo-image {
  max-height: 26px;
  width: auto;
  display: block;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-nav a {
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.footer-social a:hover {
  background: #d11a2a;
  border-color: #d11a2a;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.footer-wordmark {
  font-size: clamp(3.4rem, 12.5vw, 11.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-align: center;
  user-select: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.02) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0.5rem 0 -0.15em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 1.4rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

.footer-top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-top-link:hover {
  color: #d11a2a;
}

.footer-top-link svg {
  width: 14px;
  height: 14px;
}

.footer-legal {
  display: flex;
  gap: 1.6rem;
}

.footer-legal a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .service-media img,
  .gallery-item img,
  .service-card,
  .price-card {
    transition: none;
  }
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  transition: background 0.3s ease;
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 14, 0.97);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateY(0);
}

.mobile-menu-link {
  font-size: 2.2rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 0.8rem 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(2) { transition-delay: 0.18s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(3) { transition-delay: 0.26s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(4) { transition-delay: 0.34s; }

.mobile-menu-link:hover {
  color: #d11a2a;
}

.mobile-menu-cta {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease 0.42s, transform 0.4s ease 0.42s;
}

.mobile-menu-overlay.active .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1002;
  opacity: 0;
  transform: rotate(-90deg);
  transition: opacity 0.3s ease 0.2s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, background 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-close {
  opacity: 1;
  transform: rotate(0deg);
}

.mobile-menu-close:hover {
  background: #d11a2a;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}
