﻿:root {
  --bg: #03050b;
  --bg-soft: #0a1224;
  --accent: #6cf0ff;
  --accent-strong: #4fe3d1;
  --accent-secondary: #7a8bff;
  --text: #f8fbff;
  --text-muted: #b5c0cf;
  --card: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --gradient: linear-gradient(135deg, #83ffe8 0%, #51a7ff 45%, #d770ff 100%);
  --gradient-soft: linear-gradient(
    135deg,
    rgba(99, 255, 246, 0.25),
    rgba(149, 118, 255, 0.25)
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at 20% 0%, rgba(0, 125, 255, 0.55), transparent), radial-gradient(circle at 80% 0%, rgba(109, 48, 135, 0.45), transparent), var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 20;
  backdrop-filter: blur(6px);
}

.scroll-indicator span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gradient);
  transition: width 0.15s ease-out;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.4;
  }
  70% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}

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

.skip-link {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -150%);
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #041521;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.skip-link:focus {
  transform: translate(-50%, 20%);
}

.noise-layer,
.grid-overlay,
.orb {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.noise-layer {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160"%3E%3Cfilter id="n" x="0" y="0" width="1" height="1"%3E%3CfeTurbulence baseFrequency="0.8"/%3E%3C/filter%3E%3Crect width="160" height="160" filter="url(%23n)" opacity="0.08"/%3E%3C/svg%3E');
  opacity: 0.15;
}

.grid-overlay {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    );
  background-size: 80px 80px;
}

.orb {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.orb--one {
  top: 10%;
  left: 5%;
  background: #5be4ff;
}

.orb--two {
  bottom: 15%;
  right: 10%;
  background: #b16dff;
}

.orb--three {
  bottom: 5%;
  left: 20%;
  background: #67ffc1;
}

.container {
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0;
  color: var(--text);
}

h1 span {
  color: var(--accent);
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.btn {
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn--primary {
  background: var(--gradient);
  color: #041521;
  box-shadow: 0 15px 40px rgba(108, 240, 255, 0.3);
}

.btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text);
  background: transparent;
}

.btn--ghost {
  border: 1px solid transparent;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
}

.btn:hover {
  transform: translateY(-3px);
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(3, 5, 11, 0.85);
  z-index: 10;
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 0.2rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

section {
  padding: 4rem 0;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.hero__meta article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.2rem;
  background: rgba(4, 8, 18, 0.6);
}

.hero__pill-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero__pill {
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__award {
  margin-top: 1.8rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 12, 24, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.hero__award-rating {
  display: flex;
  align-items: flex-end;
  gap: 0.15rem;
  font-weight: 600;
}

.hero__award-rating span {
  font-size: 2.4rem;
  line-height: 1;
}

.hero__award-rating small {
  color: var(--text-muted);
}

.hero__media {
  position: relative;
}

.hero__visual {
  background: rgba(8, 17, 33, 0.8);
  border-radius: 32px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  animation: float 9s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(2, 12, 24, 0.5);
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--gradient-soft);
  opacity: 0.25;
  pointer-events: none;
}

.hero__ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto 2rem;
  position: relative;
}

.hero__ring::before,
.hero__ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.hero__ring::after {
  inset: -15px;
  border: 1px solid rgba(108, 240, 255, 0.35);
  animation: pulse-ring 4s ease-out infinite;
}

.hero__window-grid {
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 260px;
  z-index: 2;
}

.hero__window-grid img {
  position: absolute;
  width: 150px;
  height: 210px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  filter: saturate(1.1);
  animation: float 8s ease-in-out infinite;
}

.hero__window-grid img:nth-child(1) {
  top: 15px;
  left: 10px;
  transform: rotate(-6deg);
}

.hero__window-grid img:nth-child(2) {
  top: -5px;
  left: 120px;
  transform: rotate(4deg);
}

.hero__window-grid img:nth-child(3) {
  top: 35px;
  right: 5px;
  transform: rotate(-2deg);
}

.hero__window-grid img:nth-child(4) {
  bottom: 10px;
  left: 40px;
  transform: rotate(5deg);
}

.hero__window-grid img:nth-child(5) {
  bottom: -5px;
  left: 150px;
  transform: rotate(-4deg);
}

.hero__window-grid img:nth-child(6) {
  bottom: 20px;
  right: 20px;
  transform: rotate(3deg);
}

.hero__badge {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: rgba(108, 240, 255, 0.15);
  border-radius: 16px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(108, 240, 255, 0.3);
  text-align: right;
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
}

.hero__card {
  margin-top: 2rem;
  background: rgba(4, 21, 33, 0.85);
  border-radius: 28px;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  color: var(--text-muted);
}

.hero__card li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.hero__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

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

.hero__play {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  border-radius: 999px;
  padding: 0.6rem 1.4rem 0.6rem 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero__play:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero__play-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(108, 240, 255, 0.35);
}

.hero__play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid #041521;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}

.progress {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress span {
  display: block;
  height: 100%;
  background: var(--gradient);
}

.featured-highlights {
  padding-top: 0;
}

.featured-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.featured-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 26px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(108, 240, 255, 0.15),
    rgba(215, 112, 255, 0.05)
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.featured-card * {
  position: relative;
  z-index: 1;
}

.featured-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.featured-card:hover::after {
  opacity: 1;
}

.featured-card__tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-secondary);
}

.screen {
  padding: 4rem 0;
}

.screen__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.screen__highlights {
  margin: 1.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.screen__frame {
  position: relative;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem;
  background: rgba(4, 21, 33, 0.85);
  box-shadow: 0 25px 60px rgba(3, 5, 11, 0.55);
}

.screen__frame img {
  border-radius: 24px;
  border: 4px solid rgba(255, 255, 255, 0.05);
}

.screen__caption {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--text-muted);
}

.badge-strip {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  margin-top: -1rem;
}

.badge-strip .container {
  overflow: hidden;
}

.badge-strip__list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  width: max-content;
  animation: marquee 22s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.badge-strip__list li {
  padding: 0.55rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.trust__grid,
.services__grid,
.timeline,
.stats__grid,
.contact__grid {
  display: grid;
  gap: 2rem;
}

.trust__grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.trust__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.trust__logos span {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.services__grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  min-height: 320px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card__index {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card__media {
  margin: -1.5rem -1.5rem 1rem;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(108, 240, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.18);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card ul {
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.approach {
  background: radial-gradient(circle at bottom, rgba(15, 23, 42, 0.9), transparent);
}

.timeline {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 3rem;
}

.timeline article {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.stats__grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stats__grid article {
  padding: 1.8rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.panorama {
  padding: 5rem 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02), transparent);
}

.panorama__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.panorama__media {
  position: relative;
  min-height: 360px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 8, 18, 0.7);
  overflow: hidden;
  padding: 2rem;
}

.panorama__pane {
  position: absolute;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(130deg, rgba(108, 240, 255, 0.18), rgba(215, 112, 255, 0.08));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.panorama__pane--one {
  top: 15%;
  left: 10%;
  width: 45%;
  height: 55%;
  transform: rotate(-8deg);
}

.panorama__pane--two {
  bottom: 12%;
  left: 30%;
  width: 50%;
  height: 45%;
  transform: rotate(6deg);
}

.panorama__pane--three {
  top: 18%;
  right: 8%;
  width: 32%;
  height: 60%;
}

.panorama__glow {
  position: absolute;
  inset: 30%;
  background: radial-gradient(circle, rgba(108, 240, 255, 0.4), transparent);
  filter: blur(60px);
  opacity: 0.4;
}

.panorama__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  color: var(--text-muted);
}

.panorama__list li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.panorama__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.cases {
  background: rgba(255, 255, 255, 0.01);
}

.cases__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.cases__note {
  color: var(--text-muted);
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.cases__fallback {
  grid-column: 1 / -1;
  padding: 1rem 1.5rem;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
}

.faq__fallback {
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}

.case-card {
  border-radius: 28px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(4, 21, 33, 0.75);
  position: relative;
  overflow: hidden;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(120deg, rgba(108, 240, 255, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.case-card__media {
  border-radius: 18px;
  overflow: hidden;
  margin: 1rem 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-card__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.case-card:hover::after {
  opacity: 1;
}

.case-card__tag {
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.case-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.testimonials {
  background: radial-gradient(circle at top, rgba(20, 184, 166, 0.15), transparent);
}

.testimonials__header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.testimonial__viewport {
  position: relative;
  min-height: 220px;
}

.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  background: rgba(4, 21, 33, 0.8);
  border-radius: 30px;
  padding: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial[data-active="true"] {
  opacity: 1;
  transform: translateX(0);
}

.cta .container {
  background: rgba(4, 21, 33, 0.85);
  border-radius: 32px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.faq__list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1rem;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
}

.faq-item.is-open .faq-item__content {
  max-height: 220px;
  padding-bottom: 1rem;
}

.seo-panel {
  background: rgba(255, 255, 255, 0.02);
}

.seo-panel__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.seo-panel__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  color: var(--text);
  font-weight: 500;
}

.seo-panel__note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact__grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.contact__info {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  color: var(--text-muted);
}

.contact__map {
  margin-top: 1.5rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact__map img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.contact__social {
  margin-top: 1.5rem;
}

.contact__social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.contact__social-links a {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact__social-links a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.contact__social-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact__side-card {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__side-card span {
  color: var(--text-muted);
}

.contact__side-card .btn {
  align-self: flex-start;
}

.contact__form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(4, 21, 33, 0.6);
  color: var(--text);
  font-family: inherit;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer__admin-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.site-footer__admin-link:hover {
  text-decoration: underline;
}


@media (prefers-reduced-motion: reduce) {
  .hero__visual,
  .hero__badge,
  .hero__window-grid img,
  .badge-strip__list {
    animation: none;
  }
}

@media (max-width: 768px) {
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonial {
    position: relative;
    transform: translateX(0);
  }

  .testimonial__viewport {
    min-height: auto;
  }

  .hero__ring {
    width: 220px;
    height: 220px;
  }

  .hero__window-grid {
    width: 260px;
    height: 200px;
    top: 3rem;
  }

  .hero__window-grid img {
    width: 110px;
    height: 150px;
  }

  .hero__visual {
    padding-bottom: 4.5rem;
  }

  .hero__play {
    position: static;
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
  }

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

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

  .panorama__media {
    min-height: 280px;
  }

}
