:root {
  --bg: #ffffff;
  --surface: #f5f5f5;
  --text: #222222;
  --accent: #ff3b3b;
  --muted: rgba(34, 34, 34, 0.68);
  --border: rgba(34, 34, 34, 0.08);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.06);
  --radius: 24px;
  --radius-lg: 28px;
  --container: 1120px;
  --font: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 35%, var(--bg) 100%);
}

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

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(34, 34, 34, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-logo {
  display: none;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(34, 34, 34, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.06);
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), rgba(255, 59, 59, 0.25));
  box-shadow: 0 10px 16px rgba(255, 59, 59, 0.24);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 34, 34, 0.06);
  background: rgba(255, 255, 255, 0.7);
}

.nav-link {
  font-size: 14px;
  color: var(--muted);
  transition: color 160ms ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px) scale(1.01);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(255, 59, 59, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(255, 59, 59, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(34, 34, 34, 0.08);
  color: var(--text);
}

.play {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 59, 59, 0.12);
  position: relative;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.06);
}

.play::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--accent);
}

.hero {
  padding-top: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 10px 16px rgba(255, 59, 59, 0.28);
}

.hero-title {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 52ch;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  border-radius: 18px;
  border: 1px solid rgba(34, 34, 34, 0.06);
  background: rgba(255, 255, 255, 0.72);
  padding: 14px 14px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 2px;
}

.stat-value {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.slider-shell {
  border-radius: var(--radius-lg);
  background: rgba(245, 245, 245, 0.55);
  border: 1px solid rgba(34, 34, 34, 0.06);
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
}

.slider-shell::before {
  content: "";
  position: absolute;
  inset: -120px -140px auto auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 59, 59, 0.12), rgba(255, 59, 59, 0));
  pointer-events: none;
}

.wa-widget {
  --wa: #ff4da6;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.wa-widget[data-enabled="true"] {
  pointer-events: auto;
}

.wa-panel {
  width: min(320px, calc(100vw - 40px));
  border-radius: 20px;
  border: 1px solid rgba(34, 34, 34, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  padding: 14px 14px;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.wa-widget[data-open="true"] .wa-panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wa-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 2px 0 6px;
}

.wa-text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 12px;
}

.wa-actions {
  display: flex;
  gap: 10px;
}

.wa-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(255, 77, 166, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.wa-btn:hover {
  transform: translateY(-1px) scale(1.01);
  filter: brightness(1.02);
  box-shadow: 0 18px 38px rgba(255, 77, 166, 0.35);
}

.wa-close {
  width: 44px;
  border-radius: 999px;
  border: 1px solid rgba(34, 34, 34, 0.1);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: transform 160ms ease;
}

.wa-close:hover {
  transform: translateY(-1px);
}

.wa-fab {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.35), transparent 45%), var(--wa);
  box-shadow: 0 18px 42px rgba(255, 77, 166, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  transition: transform 180ms ease, filter 180ms ease;
}

.wa-fab:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.02);
}

.wa-fab::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: rgba(255, 77, 166, 0.16);
  animation: waPulse 1.8s ease-in-out infinite;
  z-index: -1;
}

.wa-fab svg {
  width: 26px;
  height: 26px;
}

@keyframes waPulse {
  0% {
    transform: scale(0.86);
    opacity: 0.55;
  }
  55% {
    transform: scale(1.08);
    opacity: 0.15;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.hero-swiper {
  padding: 14px 6px 10px;
}

.hero-swiper .swiper-slide {
  width: clamp(120px, 16vw, 160px);
  height: clamp(300px, 46vw, 420px);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.14);
  border: 8px solid rgba(255, 255, 255, 0.9);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-swiper--round {
  padding: 6px 2px 4px;
  opacity: 0.95;
}

.hero-swiper--round .swiper-slide {
  width: clamp(78px, 10vw, 108px);
  height: clamp(78px, 10vw, 108px);
  border-radius: 999px;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.hero-swiper .swiper-slide:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.18);
}

.slide-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform 220ms ease;
}

.hero-swiper .swiper-slide:hover .slide-img {
  transform: scale(1.06);
}

.hero-dots {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  opacity: 0.25;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.media-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(245, 245, 245, 0.55);
  border: 1px solid rgba(34, 34, 34, 0.06);
}

.media-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.media-card:hover img {
  transform: scale(1.04);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.section-title {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.6;
}

.section-text {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.pill-row {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 34, 34, 0.08);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 12px;
  color: rgba(34, 34, 34, 0.8);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(34, 34, 34, 0.06);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 18px;
  display: grid;
  gap: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-media {
  border-radius: 18px;
  overflow: hidden;
  height: 160px;
  background: rgba(245, 245, 245, 0.7);
  border: 1px solid rgba(34, 34, 34, 0.06);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.06);
}

.service-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.service-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 16px;
}

.filter {
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid rgba(34, 34, 34, 0.08);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
  color: rgba(34, 34, 34, 0.8);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.filter:hover {
  transform: translateY(-1px);
}

.filter.active {
  background: rgba(255, 59, 59, 0.12);
  border-color: rgba(255, 59, 59, 0.25);
  color: var(--text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  grid-column: span 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(34, 34, 34, 0.06);
  position: relative;
  background: rgba(245, 245, 245, 0.7);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.gallery-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-end;
}

.gallery-title {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 12px 22px rgba(0, 0, 0, 0.4);
}

.gallery-loc {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 12px 22px rgba(0, 0, 0, 0.4);
}

.badge {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 11px;
  color: rgba(34, 34, 34, 0.9);
  border: 1px solid rgba(34, 34, 34, 0.06);
}

.cta-card {
  border-radius: var(--radius-lg);
  background: rgba(245, 245, 245, 0.62);
  border: 1px solid rgba(34, 34, 34, 0.06);
  box-shadow: var(--shadow);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.cta-text {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.newsletter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.newsletter input {
  width: min(360px, 72vw);
}

.newsletter .form-hint {
  width: 100%;
}

.testi-swiper {
  padding: 8px 0 34px;
}

.testi-card {
  border-radius: var(--radius);
  border: 1px solid rgba(34, 34, 34, 0.06);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  height: 100%;
}

.testi-quote {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.testi-person {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

.person-name {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.person-role {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
}

.form {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(34, 34, 34, 0.85);
}

input,
textarea {
  border-radius: 14px;
  border: 1px solid rgba(34, 34, 34, 0.08);
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 12px;
  font-family: var(--font);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
textarea:focus {
  border-color: rgba(255, 59, 59, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 59, 59, 0.12);
}

.form-hint {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  min-height: 16px;
}

.info {
  padding: 18px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.info h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.info-row {
  display: grid;
  gap: 6px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(34, 34, 34, 0.06);
  background: rgba(245, 245, 245, 0.55);
}

.info-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(34, 34, 34, 0.72);
}

.info-value {
  font-weight: 700;
  font-size: 13px;
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 34, 34, 0.08);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 12px;
}

.footer {
  padding: 34px 0 44px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(34, 34, 34, 0.06);
  padding-top: 22px;
  color: rgba(34, 34, 34, 0.72);
  font-weight: 600;
  font-size: 13px;
}

.footer-links,
.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 60;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.modal-card {
  position: relative;
  width: min(920px, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000000;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .slider-shell {
    padding: 18px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .gallery-item {
    grid-column: span 6;
  }

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

@media (max-width: 560px) {
  .nav {
    display: none;
  }

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

  .gallery-item {
    grid-column: span 12;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
