@font-face {
  font-family: "TT Runs Trial";
  src: url("../fonts/ttrunstrialregular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Runs Trial";
  src: url("../fonts/ttrunstrialmedium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Runs Trial";
  src: url("../fonts/ttrunstrialbold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Runs Trial";
  src: url("../fonts/ttrunstrialextrabold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Runs Trial";
  src: url("../fonts/ttrunstrialblack.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}






:root {
  --bg: #050505;
  --bg-soft: #0d0d10;
  --bg-card: rgba(255, 255, 255, 0.07);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --pink: #ed217d;
  --pink-light: #ff4aa2;
  --pink-dark: #b80f58;
  --black: #000000;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "TT Runs Trial", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(237, 33, 125, 0.22), transparent 34%),
    radial-gradient(circle at top right, rgba(237, 33, 125, 0.13), transparent 30%),
    linear-gradient(180deg, #050505 0%, #12050b 46%, #050505 100%);
  line-height: 1.6;
  overflow-x: hidden;
}



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

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

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

.section {
  padding: 100px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(var(--container), calc(100% - 40px));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: 140px;
  height: auto;
  object-fit: contain;
}

.footer-logo img {
  width: 140px;
}

@media (max-width: 640px) {
  .logo img {
    width: 100px;
  }

  .footer-logo img {
    width: 130px;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--text-muted);
  font-size: 15px;
}

.nav-menu a {
  transition: color 0.25s ease;
}

.nav-menu a:hover {
  color: var(--pink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-btn {
 
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
  transition: 0.25s ease;
   min-width: 38px;
  height: 34px;
  padding: 0 10px;
  font-size: 12px;
  border-radius: 14px;
}

.lang-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.nav-partner-btn {
  min-height: 38px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #050505;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 1px 34px rgba(237, 33, 125, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.nav-partner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(237, 33, 125, 0.34);
}

.burger {
  width: 36px;
  height: 32px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  position: relative;
}

.burger span {
  position: absolute;
  width: 16px;
  height: 1px;
  background: var(--text);
  opacity: 90%;
  border-radius: 10px;
  transition: 0.3s ease;
}

.burger span:nth-child(1) {
  transform: translateY(-5px);
}

.burger span:nth-child(3) {
  transform: translateY(5px);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  padding-top: 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 44px;
}

.eyebrow {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 1px;
}

h1 span,
h2 span,
h3 span {
  color: var(--pink);
}



h1 {
   font-size: clamp(38px, 5.8vw, 74px);
  max-width: 900px;
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  font-size: 32px;
}

.hero-text {
  max-width: 780px;
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 20px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #050505;
  box-shadow: 0 12px 34px rgba(237, 33, 125, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 42px rgba(237, 33, 125, 0.38);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(237, 33, 125, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.visual-card {
  height: 100%;
  min-height: 480px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(237, 33, 125, 0.28), transparent 32%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.visual-card::before,
.visual-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.75;
}

.visual-card::before {
  width: 210px;
  height: 210px;
  border: 1px solid rgba(237, 33, 125, 0.25);
  top: 54px;
  right: -48px;
}

.visual-card::after {
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  bottom: 44px;
  left: -50px;
}

.visual-circle {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(237, 33, 125, 0.94), rgba(184, 15, 88, 0.38));
  box-shadow: 0 0 80px rgba(237, 33, 125, 0.30);
}

.visual-card p,
.visual-card span {
  position: relative;
  z-index: 2;
}

.visual-card p {
  margin-top: 260px;
  font-size: 24px;
  font-weight: 900;
}

.visual-card span {
  color: var(--text-muted);
  margin-top: -120px;
}

.benefits-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.benefits-row span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-muted);
  font-size: 14px;
}

.about {
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.narrow {
  max-width: 900px;
}

.text-block {
  margin-top: 28px;
  display: grid;
  gap: 20px;
  color: var(--text-muted);
  font-size: 20px;
}

.section-head {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-head p:last-child {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 19px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.accent-card {
  background:
    linear-gradient(145deg, rgba(237, 33, 125, 0.13), rgba(255, 255, 255, 0.055));
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(237, 33, 125, 0.14);
  color: var(--pink);
  font-weight: 900;
}

.info-card p {
  margin-top: 18px;
  color: var(--text-muted);
}

.info-card ul {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  list-style: none;
}

.info-card li {
  position: relative;
  padding-left: 28px;
  color: var(--text-muted);
}

.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--pink);
}

.card-btn {
  margin-top: 28px;
}

.contact-section {
  background:
    radial-gradient(circle at bottom right, rgba(237, 33, 125, 0.14), transparent 35%),
    rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.contact-content {
  position: sticky;
  top: 120px;
}

.contact-subtitle,
.contact-content p:last-child {
  color: var(--text-muted);
  font-size: 19px;
}

.contact-subtitle {
  margin-top: 24px;
  margin-bottom: 20px;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
}

.success-message {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(237, 33, 125, 0.16);
  color: var(--pink);
  font-weight: 800;
}

.success-message.active {
  display: block;
}

.contact-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.76);
  color: var(--text);
  outline: none;
  font-weight: 500;
  padding: 15px 16px;
  transition: border-color 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--pink);
}

.contact-form textarea {
  resize: vertical;
}

.form-btn {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
  width: 70%;
  margin-left:auto;
  margin-right: auto;
  opacity: 70%;
}

.footer {
  padding: 52px 0;
  border-top: 1px solid var(--line);
  background: #000000;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 0.7fr 0.7fr;
  gap: 40px;
}


.footer .logo img {
  width: 140px;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 16px;
  color: var(--text-muted);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h4 {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--pink);
}

.footer-col a {
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--pink);
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.socials a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;

  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-muted);

  transition: 0.25s ease;
}

.socials a:hover {
  color: var(--pink);
  border-color: var(--pink);
  box-shadow: 0 1px 34px rgba(237, 33, 125, 0.16);
}

.socials svg {
  width: 26px;
  height: 26px;
  display: block;
  fill: currentColor;
}

.socials a:first-child svg {
  transform: translateX(-1px);
}

.socials a:first-child svg {
  width: 22px;
  height: 22px;
  transform: translateX(-1px);
}

.socials a:nth-child(2) svg {
  width: 25px;
  height: 25px;
}

@media (max-width: 1024px) {
  .burger {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    width: min(390px, 86vw);
    height: 100vh;
    padding: 110px 28px 28px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    background:
      radial-gradient(circle at top right, rgba(237, 33, 125, 0.18), transparent 34%),
      #050505;
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateX(105%);
    transition: transform 0.42s ease;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 22px;
    color: var(--text);
  }

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

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
    min-height: 400px;
  }

  .visual-card {
    min-height: 360px;
  }

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

  .contact-content {
    position: static;
  }
}

@media (max-width: 640px) {
  .container,
  .navbar {
    width: calc(100% - 28px);
  }

  .navbar {
    height: 74px;
  }

  .logo {
    font-size: 24px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  .hero-text,
  .text-block,
  .section-head p:last-child,
  .contact-subtitle,
  .contact-content p:last-child {
    font-size: 17px;
  }

  .hero-buttons,
  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 320px;
    border-radius: 24px;
  }

  .visual-card {
    min-height: 290px;
  }

  .visual-circle {
    width: 160px;
    height: 160px;
  }

  .visual-card p {
    margin-top: 190px;
  }

  .visual-card span {
    margin-top: -80px;
  }

  .benefits-row span {
    width: 100%;
    text-align: center;
  }

  .info-card,
  .contact-form {
    padding: 22px;
    border-radius: 24px;
  }

  .footer {
    padding: 42px 0;
  }
}

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


.select-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 58px !important;
  cursor: pointer;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  pointer-events: none;

  border-right: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
  transform: translateY(-70%) rotate(45deg);

  /* filter: drop-shadow(0 0 8px rgba(237, 33, 125, 0.45)); */
}


.hero-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0 !important;
  margin: 0;
  display: block !important;
  overflow: hidden;
  border-radius: 34px;
  background: #050505;
  box-shadow: 0 30px 90px rgba(233, 30, 120, 0.25);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.visual-card,
.visual-circle {
  display: none !important;
}

@media (max-width: 768px) {
  .hero-visual {
    aspect-ratio: 4 / 3;
    border-radius: 24px;
  }
}
/* ===== FINAL MOBILE MENU FIX ===== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html.menu-open,
body.menu-open {
  height: 100%;
  overflow: hidden !important;
  overscroll-behavior: none;
}

body.menu-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  touch-action: none;
}


@media (max-width: 1024px) {
  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 4998;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu {
    position: fixed !important;
    inset: 0 !important;
    z-index: 4999;
    width: 100vw !important;
    max-width: none !important;
    height: 100vh;
    height: 100dvh;
    padding: 135px 28px 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background:
      radial-gradient(circle at top right, rgba(237, 33, 125, 0.24), transparent 34%),
      radial-gradient(circle at left center, rgba(237, 33, 125, 0.16), transparent 38%),
      #050505;
    border-left: 0 !important;
    box-shadow: none;
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .nav-menu.active {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu a {
    font-size: clamp(34px, 9vw, 52px);
    line-height: 1.12;
    color: var(--text);
  }

  .site-header {
    z-index: 5002;
  }

  .burger {
    position: relative;
    z-index: 5003;
  }

  .burger.active {
    z-index: 5003;
  }
}

@media (max-width: 640px) {
  .nav-menu {
    padding-top: 118px;
  }

  .lang-btn {
 
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
  transition: 0.25s ease;
  min-width: 34px;
  height: 32px;
  padding: 0 10px;
  font-size: 13px;
  border-radius: 14px;
}

}

/* ===== MOBILE MENU + HERO ORDER UPDATE ===== */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 18px;
    padding: 120px 28px 44px;
    background:
      radial-gradient(circle at 85% 12%, rgba(255, 74, 162, 0.34), transparent 28%),
      radial-gradient(circle at 8% 50%, rgba(237, 33, 125, 0.22), transparent 36%),
      linear-gradient(145deg, #050505 0%, #180711 46%, #050505 100%);
  }

  .nav-menu a {
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .nav-menu a:hover {
    color: var(--pink-light);
  }
}

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

  .hero-content {
    display: contents;
  }

  .hero-content .eyebrow {
    order: 1;
    margin-bottom: -10px;
  }

  .hero-content h1 {
    order: 2;
    font-size: clamp(36px, 10vw, 42px);
  }

  .hero-visual {
    order: 3;
    margin-top: 4px;
  }

  .hero-text {
    order: 4;
    margin-top: 0;
  }

  .hero-buttons {
    order: 5;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 4px;
  }

  .hero-buttons .btn {
    width: auto;
    flex: 1 1 0;
    min-height: 48px;
    padding: 0 10px;
    font-size: 13px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .nav-menu {
    padding-top: 108px;
    gap: 18px;
  }
}

@media (max-width: 370px) {
  .hero-buttons {
    gap: 8px;
  }

  .hero-buttons .btn {
    font-size: 12px;
    padding: 0 8px;
  }
}

/* ===== FINAL RESPONSIVE HERO + MENU OVERRIDE ===== */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 18px !important;
    padding: 118px 28px 44px !important;
    background:
      radial-gradient(circle at 88% 10%, rgba(255, 74, 162, 0.38), transparent 28%),
      radial-gradient(circle at 10% 44%, rgba(237, 33, 125, 0.24), transparent 36%),
      linear-gradient(145deg, #050505 0%, #1a0712 48%, #050505 100%) !important;
  }

  .nav-menu a {
    font-size: clamp(18px, 3vw, 24px) !important;
    line-height: 1.25 !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
  }

  .hero {
    padding-top: 44px !important;
  }

  .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .hero-content {
    display: contents !important;
  }

  .hero-content .eyebrow {
    order: 1 !important;
    margin-bottom: -8px !important;
  }

  .hero-content h1 {
    order: 2 !important;
    max-width: 100% !important;
    font-size: clamp(40px, 7vw, 58px) !important;
  }

  .hero-visual {
    order: 3 !important;
    width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    margin-top: 4px !important;
  }

  .hero-text {
    order: 4 !important;
    margin-top: 0 !important;
    max-width: 100% !important;
    font-size: clamp(16px, 2.4vw, 19px) !important;
  }

  .hero-buttons {
    order: 5 !important;
    width: 100% !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    margin-top: 4px !important;
  }

  .hero-buttons .btn {
    width: auto !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    min-height: 48px !important;
    padding: 0 12px !important;
    font-size: clamp(13px, 2.2vw, 16px) !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: clamp(34px, 10vw, 42px) !important;
  }

  .nav-menu a {
    font-size: 22px !important;
  }

  .hero-buttons {
    gap: 8px !important;
  }

  .hero-buttons .btn {
    padding: 0 8px !important;
    font-size: 12px !important;
  }
}

/* ===== REAL FINAL MOBILE LAYOUT FIX =====
   Uses a separate mobile hero image in the HTML, so the order is guaranteed:
   eyebrow -> title -> picture -> text -> buttons.
*/
.hero-visual--mobile {
  display: none !important;
}

.hero-visual--desktop {
  display: block !important;
}

@media (max-width: 1024px) {
  .site-header {
    z-index: 5002 !important;
  }

  .burger {
    position: relative !important;
    z-index: 5003 !important;
  }

  .burger.active {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 5003 !important;
  }

  .mobile-overlay {
    background: rgba(0, 0, 0, 0.58) !important;
  }

  .nav-menu {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    height: 100vh !important;
    height: 100dvh !important;
    padding: 112px 32px 44px !important;
    gap: 18px !important;
    background:
      radial-gradient(circle at 86% 12%, rgba(255, 74, 162, 0.34), transparent 30%),
      radial-gradient(circle at 14% 48%, rgba(237, 33, 125, 0.24), transparent 38%),
      linear-gradient(145deg, #090005 0%, #230713 48%, #050505 100%) !important;
    box-shadow: none !important;
    border-left: 0 !important;
  }

  .nav-menu a {
    font-size: clamp(20px, 4vw, 26px) !important;
    line-height: 1.25 !important;
    font-weight: 500 !important;
    letter-spacing: 0.01em !important;
  }

  .hero {
    padding-top: 44px !important;
  }

  .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .hero-content {
    display: block !important;
    order: 1 !important;
  }

  .hero-content .eyebrow {
    margin-bottom: 16px !important;
  }

  .hero-content h1 {
    max-width: 100% !important;
    font-size: clamp(40px, 7.6vw, 58px) !important;
    line-height: 1.08 !important;
    margin: 0 !important;
  }

  .hero-visual--desktop {
    display: none !important;
  }

  .hero-visual--mobile {
    display: block !important;
    width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    margin: 28px 0 30px !important;
    border-radius: 28px !important;
  }

  .hero-visual--mobile img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: inherit !important;
  }

  .hero-text {
    max-width: 100% !important;
    margin-top: 0 !important;
    font-size: clamp(17px, 2.6vw, 20px) !important;
  }

  .hero-buttons {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    margin-top: 28px !important;
  }

  .hero-buttons .btn {
    width: auto !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    min-height: 50px !important;
    padding: 0 10px !important;
    font-size: clamp(13px, 2.3vw, 16px) !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 36px !important;
  }

  .hero-content h1 {
    font-size: clamp(35px, 10.2vw, 44px) !important;
  }

  .hero-visual--mobile {
    margin: 24px 0 26px !important;
    border-radius: 24px !important;
  }

  .nav-menu {
    padding: 106px 28px 40px !important;
    gap: 16px !important;
  }

  .nav-menu a {
    font-size: 22px !important;
  }

  .hero-buttons {
    gap: 8px !important;
  }

  .hero-buttons .btn {
    min-height: 48px !important;
    padding: 0 8px !important;
    font-size: 12px !important;
  }
}


@media (max-width: 1024px) {
  .hero {
    background:
      radial-gradient(circle at top center, rgba(237, 33, 125, 0.16), transparent 32%),
      radial-gradient(circle at left center, rgba(237, 33, 125, 0.10), transparent 36%),
      linear-gradient(180deg, #050003 0%, #160009 45%, #0b0005 75%, #050505 100%);
  }
}

@media (max-width: 1024px) {
  .hero-visual {
    aspect-ratio: auto !important;
    height: clamp(430px, 78vw, 620px) !important;
    border-radius: 28px;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}



.benefits-row {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.benefits-row span {
  position: relative;
  min-height: 68px;
  padding: 16px 16px 16px 42px;
  display: flex;
  align-items: center;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 30px;

  background:
    linear-gradient(145deg, rgba(237, 33, 125, 0.10), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.28);

  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.18);

  transition: 0.25s ease;
}

.benefits-row span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  transform: translateY(-50%);
  box-shadow: 0 0 18px rgba(237, 33, 125, 0.75);
}

.benefits-row span:hover {
  transform: translateY(-3px);
  border-color: rgba(237, 33, 125, 0.35);
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(237, 33, 125, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(0, 0, 0, 0.34);
}

@media (max-width: 1024px) {
  .benefits-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .benefits-row {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .benefits-row span {
    min-height: 58px;
    border-radius: 16px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .benefits-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 24px !important;
  }

  .benefits-row span {
    width: auto !important;
    min-height: 46px !important;
    padding: 10px 10px 10px 28px !important;
    border-radius: 13px !important;

    font-size: 10.5px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    text-align: left !important;
  }

  .benefits-row span::before {
    left: 12px !important;
    width: 6px !important;
    height: 6px !important;
  }
}

@media (max-width: 380px) {
  .benefits-row {
    gap: 7px !important;
  }

  .benefits-row span {
    min-height: 42px !important;
    padding: 9px 8px 9px 24px !important;
    font-size: 9.8px !important;
    border-radius: 12px !important;
  }

  .benefits-row span::before {
    left: 10px !important;
    width: 5px !important;
    height: 5px !important;
  }
}


/* More top distance for benefits */
.benefits-row {
  margin-top: 70px !important;
}

@media (max-width: 1024px) {
  .benefits-row {
    margin-top: 52px !important;
  }
}

@media (max-width: 640px) {
  .benefits-row {
    margin-top: 42px !important;
  }
}

/* ===== BENEFITS IPHONE DELETE SHAKE — DESKTOP HOVER ONLY =====
   Works on desktop/laptop mouse hover. Disabled on touch devices.
   Important: do NOT put transform: ... !important on hover, because it stops keyframe shake.
*/
@media (hover: hover) and (pointer: fine) {
  .benefits-row span {
    transform-origin: center center;
    cursor: default;
    will-change: transform;
  }

  .benefits-row span:hover {
    animation: benefitIphoneDeleteShake 0.86s ease-in-out infinite !important;
    color: var(--text) !important;
    border-color: rgba(237, 33, 125, 0.68) !important;
    background:
      linear-gradient(145deg, rgba(237, 33, 125, 0.16), rgba(255, 255, 255, 0.045)),
      rgba(0, 0, 0, 0.34) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.10),
      0 18px 40px rgba(0, 0, 0, 0.18),
      0 0 24px rgba(237, 33, 125, 0.22) !important;
  }

  .benefits-row span:not(:hover),
  .benefits-row span.is-near {
    animation: none !important;
  }
}

@keyframes benefitIphoneDeleteShake {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  18% {
    transform: translate3d(-0.45px, -0.35px, 0) rotate(-0.75deg);
  }

  36% {
    transform: translate3d(0.45px, 0.35px, 0) rotate(0.75deg);
  }

  54% {
    transform: translate3d(-0.35px, 0.25px, 0) rotate(-0.55deg);
  }

  72% {
    transform: translate3d(0.35px, -0.25px, 0) rotate(0.55deg);
  }
}

@media (hover: none), (pointer: coarse) {
  .benefits-row span,
  .benefits-row span:hover,
  .benefits-row span:active,
  .benefits-row span.is-near {
    animation: none !important;
    transform: none !important;
  }
}

/* ===== MOBILE FOOTER CENTER + FOOTER MENU COLUMNS ===== */
@media (max-width: 640px) {
  .footer {
    padding: 46px 0 42px !important;
    text-align: center !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    align-items: center !important;
    gap: 34px !important;
    text-align: center !important;
  }

  .footer-brand,
  .footer-col {
    width: 100% !important;
    justify-items: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-brand .logo,
  .footer .logo {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-brand p {
    max-width: 330px !important;
    margin: 14px auto 0 !important;
  }

  .footer-col h4 {
    width: 100% !important;
    margin-bottom: 10px !important;
    text-align: center !important;
  }

  .footer-grid > .footer-col:nth-child(2) {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 28px !important;
    width: min(100%, 320px) !important;
  }

  .footer-grid > .footer-col:nth-child(2) h4 {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
  }

  .footer-grid > .footer-col:nth-child(2) a {
    width: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 0 !important;
    border: 0 !important;
    background: transparent !important;
    text-align: center !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  .socials {
    justify-content: center !important;
  }
}

@media (max-width: 380px) {
  .footer-grid > .footer-col:nth-child(2) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 11px 18px !important;
  }
}

/* ===== FINAL MOBILE FOOTER + MOBILE CARDS CLEAN FIX ===== */
@media (max-width: 640px) {
  /* Keep page content inside the phone width */
  .container,
  .navbar {
    width: calc(100% - 28px) !important;
    max-width: calc(100% - 28px) !important;
  }

  .cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .info-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 18px !important;
    border-radius: 26px !important;
    overflow: hidden !important;
  }

  .info-card h3 {
    font-size: clamp(28px, 8.5vw, 36px) !important;
    line-height: 1.08 !important;
  }

  .info-card p,
  .info-card li {
    font-size: 16px !important;
    line-height: 1.45 !important;
  }

  .info-card ul {
    gap: 10px !important;
  }

  .info-card li {
    padding-left: 24px !important;
  }

  .info-card li::before {
    width: 7px !important;
    height: 7px !important;
  }

  /* Footer centered */
  .footer {
    padding: 46px 0 42px !important;
    text-align: center !important;
  }

  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 34px !important;
    text-align: center !important;
  }

  .footer-brand,
  .footer-col {
    width: 100% !important;
    max-width: 340px !important;
    justify-items: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-brand .logo,
  .footer .logo {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-brand p {
    max-width: 330px !important;
    margin: 14px auto 0 !important;
    text-align: center !important;
  }

  .footer-col h4 {
    width: 100% !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }

  /* Footer menu: exactly 2 columns, no boxes/frames */
  .footer-grid > .footer-col:nth-child(2) {
    display: grid !important;
    grid-template-columns: repeat(2, max-content) !important;
    justify-content: center !important;
    justify-items: center !important;
    align-items: center !important;
    column-gap: 28px !important;
    row-gap: 12px !important;
    width: 100% !important;
    max-width: 340px !important;
  }

  .footer-grid > .footer-col:nth-child(2) h4 {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
  }

  .footer-col > a,
  .footer-grid > .footer-col:nth-child(2) > a {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-block !important;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--text-muted) !important;
    text-align: center !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
  }

  .footer-col > a:hover,
  .footer-grid > .footer-col:nth-child(2) > a:hover {
    color: var(--pink) !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .socials {
    justify-content: center !important;
  }
}

@media (max-width: 380px) {
  .footer-grid > .footer-col:nth-child(2) {
    column-gap: 20px !important;
    row-gap: 11px !important;
  }

  .footer-col > a,
  .footer-grid > .footer-col:nth-child(2) > a {
    font-size: 14px !important;
  }
}

/* ===== REAL FINAL FOOTER MOBILE FIX — CENTERED + 2 COLUMNS, NO BOXES ===== */
@media (max-width: 640px) {
  .footer {
    padding: 48px 0 46px !important;
    background: #000 !important;
    text-align: center !important;
    overflow: hidden !important;
  }

  .footer > .container,
  .footer .footer-grid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  .footer .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 42px !important;
    text-align: center !important;
  }

  .footer .footer-brand,
  .footer .footer-col {
    width: 100% !important;
    max-width: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    justify-items: center !important;
    align-items: center !important;
  }

  .footer .footer-brand .logo,
  .footer .logo {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .footer .footer-brand p {
    max-width: 340px !important;
    margin: 16px auto 0 !important;
    text-align: center !important;
    font-size: 17px !important;
    line-height: 1.45 !important;
  }

  .footer .footer-col h4 {
    width: 100% !important;
    margin: 0 0 16px !important;
    text-align: center !important;
    color: var(--pink) !important;
  }

  /* Menu links: exactly 2 columns */
  .footer .footer-grid > .footer-col:nth-child(2) {
    width: 100% !important;
    max-width: 340px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 22px !important;
    row-gap: 18px !important;
    justify-content: center !important;
    justify-items: center !important;
    align-items: start !important;
  }

  .footer .footer-grid > .footer-col:nth-child(2) h4 {
    grid-column: 1 / -1 !important;
    margin: 0 0 8px !important;
  }

  .footer .footer-grid > .footer-col:nth-child(2) > a {
    width: 100% !important;
    max-width: 150px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--text-muted) !important;
    text-align: center !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .footer .footer-grid > .footer-col:nth-child(2) > a:hover,
  .footer .footer-grid > .footer-col:nth-child(2) > a:focus {
    color: var(--pink) !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  /* Contacts centered */
  .footer .footer-grid > .footer-col:nth-child(3) {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
  }

  .footer .socials {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 18px !important;
  }
}

@media (max-width: 380px) {
  .footer > .container,
  .footer .footer-grid {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .footer .footer-grid > .footer-col:nth-child(2) {
    max-width: 310px !important;
    column-gap: 16px !important;
    row-gap: 16px !important;
  }

  .footer .footer-grid > .footer-col:nth-child(2) > a {
    max-width: 140px !important;
    font-size: 14px !important;
  }
}
