:root {
  --ink: #18131f;
  --ink-2: #42384f;
  --muted: #746a80;
  --soft: #f7f4f8;
  --paper: #fff;
  --line: #e8e0ec;
  --line-strong: #d7cadf;
  --brand: #8b2fc0;
  --brand-2: #c740e0;
  --brand-dark: #531b73;
  --green: #109875;
  --gold: #b78b2f;
  --dark: #120e17;
  --dark-2: #1d1725;
  --dark-line: rgba(255, 255, 255, 0.12);
  --white: #fff;
  --shadow: 0 24px 70px rgba(46, 31, 59, 0.12);
  --shadow-soft: 0 14px 42px rgba(46, 31, 59, 0.09);
  --radius: 8px;
  --radius-lg: 14px;
  --max: 1180px;
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--soft);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

::selection {
  background: rgba(139, 47, 192, 0.18);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 5000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 1000;
  width: min(calc(100% - 32px), var(--max));
  transform: translateX(-50%);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(232, 224, 236, 0.9);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(28, 18, 38, 0.08);
  backdrop-filter: blur(22px);
}

.site-nav.is-dark .nav-shell,
.site-nav.scrolled .nav-shell {
  background: rgba(18, 14, 23, 0.86);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

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

.brand img {
  height: 26px;
  width: auto;
}

.site-nav.is-dark .brand img,
.site-nav.scrolled .brand img,
.utility-page .brand img {
  filter: none;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  justify-content: center;
}

.nav-link,
.lang-btn,
.nav-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav.is-dark .nav-link,
.site-nav.is-dark .lang-btn,
.site-nav.is-dark .nav-back,
.site-nav.scrolled .nav-link,
.site-nav.scrolled .lang-btn,
.site-nav.scrolled .nav-back {
  color: rgba(255, 255, 255, 0.68);
}

.nav-link:hover,
.nav-link.active,
.lang-btn.active,
.nav-back:hover {
  background: rgba(139, 47, 192, 0.1);
  color: var(--brand);
}

.site-nav.is-dark .nav-link:hover,
.site-nav.is-dark .nav-link.active,
.site-nav.is-dark .lang-btn.active,
.site-nav.is-dark .nav-back:hover,
.site-nav.scrolled .nav-link:hover,
.site-nav.scrolled .nav-link.active,
.site-nav.scrolled .lang-btn.active,
.site-nav.scrolled .nav-back:hover {
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.lang-group {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.site-nav.is-dark .lang-group,
.site-nav.scrolled .lang-group {
  border-color: rgba(255, 255, 255, 0.1);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger span {
  position: relative;
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger span::before {
  top: -6px;
}

.hamburger span::after {
  top: 6px;
}

.hamburger.open span {
  background: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  padding: 110px 28px 36px;
  background: rgba(18, 14, 23, 0.96);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-menu-inner {
  display: grid;
  gap: 18px;
  width: min(100%, 420px);
  text-align: center;
}

.mobile-menu a {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section,
.hero-section,
.dark-section,
.legal-hero,
.utility-section {
  padding-inline: 24px;
}

.container {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 56px;
  background:
    radial-gradient(circle at 74% 20%, rgba(199, 64, 224, 0.18), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fbf8fc 44%, #eee5f3 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title,
.page-title,
.section-title,
.legal-title,
.utility-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-title {
  max-width: 830px;
  font-size: clamp(3.3rem, 8.2vw, 7.8rem);
}

.page-title,
.legal-title {
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.section-title {
  max-width: 760px;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 1;
}

.utility-title {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
}

.gradient-text {
  background: linear-gradient(110deg, var(--brand-dark), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy,
.page-copy,
.section-copy,
.utility-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions,
.section-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-light,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary,
.btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--white);
  box-shadow: 0 14px 34px rgba(139, 47, 192, 0.22);
}

.btn-secondary {
  background: var(--ink);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.dark-section .btn-outline,
.utility-dark .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-light:hover,
.btn-outline:hover {
  transform: translateY(-2px);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink-2);
  font-size: 0.8rem;
  font-weight: 800;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.phone-stage::before {
  content: "";
  position: absolute;
  width: min(82vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 47, 192, 0.16), rgba(16, 152, 117, 0.08));
  filter: blur(8px);
}

.hero-phone {
  position: relative;
  z-index: 1;
  width: min(78vw, 330px);
  filter: drop-shadow(0 36px 70px rgba(28, 18, 38, 0.28));
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: min(230px, 48vw);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.floating-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.88rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.floating-card.one {
  top: 16%;
  left: 2%;
}

.floating-card.two {
  right: 0;
  bottom: 18%;
}

.section {
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.5fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head .section-copy {
  margin: 0;
}

.trust-strip {
  background: var(--dark);
  color: var(--white);
  padding: 26px 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--dark-line);
}

.trust-item {
  padding: 24px;
  background: var(--dark-2);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
}

.card-grid,
.feature-grid,
.value-grid,
.team-grid,
.timeline-grid {
  display: grid;
  gap: 16px;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid {
  grid-template-columns: repeat(12, 1fr);
}

.feature-card,
.info-card,
.value-card,
.team-card,
.timeline-card,
.partner-card,
.contact-card,
.legal-card,
.utility-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.feature-card {
  grid-column: span 4;
  min-height: 250px;
  padding: 28px;
}

.feature-card.large {
  grid-column: span 7;
}

.feature-card.medium {
  grid-column: span 5;
}

.feature-card.dark {
  background: var(--dark);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-card h3,
.info-card h3,
.value-card h3,
.team-card h3,
.timeline-card h3,
.partner-card h3,
.contact-card h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
  line-height: 1.15;
}

.feature-card p,
.info-card p,
.value-card p,
.team-card p,
.timeline-card p,
.partner-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.feature-card.dark p {
  color: rgba(255, 255, 255, 0.68);
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(139, 47, 192, 0.1);
  color: var(--brand);
  font-weight: 900;
}

.dark-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
  background:
    radial-gradient(circle at 20% 10%, rgba(199, 64, 224, 0.18), transparent 32%),
    linear-gradient(135deg, var(--dark), #201429);
  color: var(--white);
}

.dark-section .section-copy,
.dark-section .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.dark-section .form-card,
.dark-section .info-card,
.dark-section .contact-card,
.dark-section .timeline-card {
  color: var(--ink);
}

.dark-section .form-card .eyebrow,
.dark-section .info-card .eyebrow,
.dark-section .contact-card .eyebrow,
.dark-section .timeline-card .eyebrow {
  color: var(--brand);
}

.dark-section .form-card p,
.dark-section .info-card p,
.dark-section .contact-card p,
.dark-section .timeline-card p {
  color: var(--muted);
}

.showcase-grid,
.business-grid,
.about-grid,
.contact-grid,
.utility-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.mockup-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 420px;
}

.mockup-row img {
  width: min(28vw, 180px);
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.32));
}

.mockup-row img + img {
  margin-left: -58px;
}

.mockup-row img:nth-child(1) {
  transform: rotate(-8deg) translateY(24px);
  opacity: 0.76;
}

.mockup-row img:nth-child(2) {
  transform: rotate(-2deg) translateY(6px);
}

.mockup-row img:nth-child(3) {
  transform: rotate(4deg);
}

.mockup-row img:nth-child(4) {
  transform: rotate(10deg) translateY(26px);
  opacity: 0.76;
}

.venue-section {
  overflow: hidden;
}

.venue-track-wrap {
  position: relative;
  margin-inline: -24px;
  overflow: hidden;
}

.venue-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 6px 24px 12px;
  animation: venue-scroll 45s linear infinite;
}

.venue-track:hover {
  animation-play-state: paused;
}

@keyframes venue-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.venue-card {
  width: min(76vw, 300px);
}

.venue-card-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
}

.venue-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-badge,
.rating-badge {
  position: absolute;
  top: 12px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(18, 14, 23, 0.72);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.venue-badge {
  left: 12px;
}

.rating-badge {
  right: 12px;
  color: #f0cc76;
}

.venue-card h3 {
  margin: 14px 0 2px;
  font-size: 1.05rem;
}

.venue-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.map-panel {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #17111f;
}

#mink-map {
  width: 100%;
  height: 520px;
}

.business-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.benefit-list,
.clean-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li,
.clean-list li {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.light-list li {
  background: var(--soft);
  color: var(--ink-2);
}

.form-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field,
.field.full {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 124px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(139, 47, 192, 0.1);
}

.partner-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.partner-mark {
  display: grid;
  place-items: center;
  min-height: 110px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f4edf8, #fff);
  color: var(--brand);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.partner-logo {
  display: block;
  width: min(100%, 190px);
  height: auto;
}

.page-hero {
  padding: 160px 24px 86px;
  background:
    radial-gradient(circle at 80% 20%, rgba(199, 64, 224, 0.16), transparent 30%),
    linear-gradient(135deg, #fff, #f3edf7);
}

.page-hero.dark {
  background:
    radial-gradient(circle at 18% 20%, rgba(199, 64, 224, 0.2), transparent 34%),
    linear-gradient(135deg, var(--dark), #23172d);
  color: var(--white);
}

.page-hero.dark .page-copy {
  color: rgba(255, 255, 255, 0.72);
}

.about-grid {
  align-items: start;
}

.info-card,
.value-card,
.team-card,
.timeline-card,
.contact-card {
  padding: 26px;
}

.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.timeline-grid {
  grid-template-columns: repeat(4, 1fr);
}

.avatar {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #f1e8f7;
  color: var(--brand);
  font-weight: 900;
}

.contact-grid {
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  max-width: min(360px, calc(100% - 48px));
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: none;
}

.toast.success {
  border-color: rgba(16, 152, 117, 0.28);
  color: var(--green);
}

.toast.error {
  border-color: rgba(220, 52, 90, 0.28);
  color: #c33155;
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding-top: 160px;
  padding-bottom: 66px;
  background: var(--dark);
  color: var(--white);
}

.legal-hero .page-copy {
  color: rgba(255, 255, 255, 0.7);
}

.legal-shell {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 68px 24px 96px;
}

.legal-shell h2 {
  margin: 44px 0 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--brand-dark);
  font-size: 1.55rem;
}

.legal-shell h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.legal-shell p,
.legal-shell li {
  color: var(--ink-2);
}

.legal-shell a {
  color: var(--brand);
  font-weight: 700;
}

.legal-shell table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 26px;
  font-size: 0.9rem;
}

.legal-shell th,
.legal-shell td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-shell th {
  background: var(--soft);
  color: var(--brand-dark);
}

.highlight-box,
.legal-note {
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  background: var(--soft);
}

.lang-switch {
  display: inline-flex;
  gap: 6px;
  margin-top: 18px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.lang-switch a {
  padding: 7px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-switch a.active,
.lang-switch a:hover {
  background: var(--white);
  color: var(--ink);
}

.utility-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 15%, rgba(199, 64, 224, 0.18), transparent 30%),
    linear-gradient(135deg, var(--dark), #21162a);
  color: var(--white);
}

.utility-section {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 48px;
}

.utility-card {
  padding: clamp(28px, 5vw, 52px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.utility-card p {
  color: rgba(255, 255, 255, 0.7);
}

.status-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  color: var(--green);
  font-size: 2rem;
  font-weight: 900;
}

.status-icon.error {
  color: #ff6b8d;
}

.site-footer {
  padding: 64px 24px 28px;
  background: var(--dark);
  color: var(--white);
}

.site-footer a {
  color: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
}

.footer-logo img {
  height: 34px;
  margin-bottom: 16px;
}

.footer-copy,
.footer-tagline,
.footer-links a,
.footer-partner {
  color: rgba(255, 255, 255, 0.62);
}

.footer-partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-partner img {
  width: 54px;
  height: auto;
  padding: 5px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.footer-tagline {
  max-width: 260px;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions .btn-primary {
    display: none;
  }

  .site-nav {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 58px;
    padding: 8px 10px 8px 14px;
    border-radius: 28px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    max-width: 92px;
    height: 24px;
  }

  .nav-actions {
    justify-self: end;
    gap: 6px;
  }

  .nav-actions .lang-group {
    display: inline-flex;
  }

  .lang-group {
    padding: 2px;
  }

  .lang-btn {
    min-height: 32px;
    padding: 0 8px;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .hamburger {
    display: inline-flex;
    width: 38px;
    height: 38px;
  }

  body.nav-open .site-nav .nav-shell {
    background: rgba(18, 14, 23, 0.94);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
  }

  body.nav-open .site-nav .lang-group {
    border-color: rgba(255, 255, 255, 0.12);
  }

  body.nav-open .site-nav .lang-btn {
    color: rgba(255, 255, 255, 0.72);
  }

  body.nav-open .site-nav .lang-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  body.nav-open .site-nav .hamburger {
    background: rgba(255, 255, 255, 0.1);
  }

  .hero-grid,
  .showcase-grid,
  .business-grid,
  .about-grid,
  .contact-grid,
  .utility-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .phone-stage {
    min-height: 430px;
  }

  .card-grid,
  .value-grid,
  .team-grid,
  .timeline-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card,
  .feature-card.large,
  .feature-card.medium {
    grid-column: span 6;
  }

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

@media (max-width: 680px) {
  .hero-section {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-title,
  .page-title,
  .legal-title {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  .hero-actions,
  .section-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-light,
  .btn-outline {
    width: 100%;
  }

  .phone-stage {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 10px;
    min-height: 430px;
    padding-bottom: 6px;
  }

  .phone-stage::before {
    align-self: start;
    width: min(92vw, 340px);
  }

  .hero-phone {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: center;
  }

  .floating-card {
    position: relative;
    inset: auto;
    grid-row: 2;
    width: 100%;
    min-height: 98px;
    margin-top: 8px;
    padding: 14px 12px;
    border-color: rgba(139, 47, 192, 0.16);
    background: rgba(255, 255, 255, 0.92);
    text-align: left;
  }

  .floating-card strong {
    font-size: 0.82rem;
    line-height: 1.15;
  }

  .floating-card span {
    display: block;
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .floating-card.one,
  .floating-card.two {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .floating-card.one {
    grid-column: 1;
  }

  .floating-card.two {
    grid-column: 2;
  }

  .hero-phone {
    width: min(76vw, 260px);
  }

  .card-grid,
  .value-grid,
  .team-grid,
  .timeline-grid,
  .trust-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card.large,
  .feature-card.medium {
    grid-column: 1 / -1;
    min-height: auto;
  }

  .mockup-row {
    min-height: 330px;
  }

  .mockup-row img {
    width: min(38vw, 130px);
  }

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

  .legal-shell table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
