﻿    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --pink: #D10373;
      --blue: #0DBDEE;
      --white: #fff;
      --dark: #1a1a2e;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Rubik', sans-serif;
      background: #fff;
      color: #333;
      overflow-x: hidden;
    }

    a:focus-visible,
    button:focus-visible {
      outline: 3px solid #fff;
      outline-offset: 2px;
    }

    /* ─── HEADER ─── */
    .header {
      background: var(--pink);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,.2);
    }

    .header__logo {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
      min-width: 0;
    }

    .header__logo img {
      height: 72px;
      width: auto;
      max-width: 330px;
      object-fit: contain;
      display: block;
    }

    .header__nav {
      display: flex;
      gap: 24px;
      list-style: none;
    }

    .header__nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      font-size: .95rem;
      transition: opacity .2s;
    }

    .header__nav a:hover { opacity: .75; }

    .header__burger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
      padding: 4px;
    }

    .header__burger span {
      display: block;
      width: 26px;
      height: 3px;
      background: #fff;
      border-radius: 2px;
      transition: .3s;
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      background: var(--pink);
      padding: 12px 20px 20px;
      gap: 16px;
    }

    .mobile-menu[hidden] { display: none !important; }
    .mobile-menu.open { display: flex; }

    .mobile-menu__link {
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      padding: 6px 0;
      border-bottom: 1px solid rgba(255,255,255,.2);
    }

    /* ─── HERO SECTION ─── */
    .hero {
      position: relative;
      overflow: hidden;
    }

    .hero__media {
      display: block;
      line-height: 0;
    }

    .hero__media img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Desktop banner */
    .hero__desktop {
      display: block;
      width: 100%;
      position: relative;
      line-height: 0;
    }

    /* Mobile banner */
    .hero__mobile {
      display: none;
      width: 100%;
      position: relative;
      line-height: 0;
    }

    .hero__desktop img,
    .hero__mobile img {
      width: 100%;
      height: auto;
      display: block;
    }

    .hero__desktop picture,
    .hero__mobile picture,
    .assortment-image picture,
    .wow-image picture {
      display: block;
      line-height: 0;
    }

    .assortment-image img,
    .wow-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Centered overlay panel */
    .hero__overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(209, 3, 115, 0.85);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      border-radius: 24px;
      padding: 34px 36px 32px;
      text-align: center;
      max-width: 540px;
      width: 88%;
      border: 3px solid rgba(255,255,255,.45);
      z-index: 10;
      box-shadow: 0 8px 32px rgba(0,0,0,.25);
    }

    .hero__title {
      font-size: 2rem;
      font-weight: 900;
      color: #fff;
      line-height: 1.2;
      text-shadow: 0 2px 8px rgba(0,0,0,.3);
      margin-bottom: 8px;
    }

    .hero__subtitle {
      font-size: 1rem;
      color: rgba(255,255,255,.92);
      font-weight: 500;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .btn-blue {
      display: inline-block;
      background: var(--blue);
      color: #fff;
      font-family: 'Rubik', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 14px 30px;
      border-radius: 50px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: filter .2s, transform .15s;
      box-shadow: 0 4px 16px rgba(13,189,238,.4);
    }

    .btn-blue:hover { filter: brightness(1.1); transform: translateY(-2px); }

    .keep-line { white-space: nowrap; }
    .mobile-break { white-space: nowrap; }

    .btn-pink {
      display: inline-block;
      background: var(--pink);
      color: #fff;
      font-family: 'Rubik', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 14px 30px;
      border-radius: 50px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: filter .2s, transform .15s;
      box-shadow: 0 4px 16px rgba(209,3,115,.4);
    }

    .btn-pink:hover { filter: brightness(1.1); transform: translateY(-2px); }

    /* ─── SECTION BASE ─── */
    .section {
      padding: 60px 20px;
    }

    .section--pink { background: var(--pink); }
    .section--blue { background: var(--blue); }
    .section--light-blue { background: #e8f8ff; }
    .section--white { background: #fff; }
    .section--dark-pink { background: #a8025c; }

    .section__title {
      font-size: 1.9rem;
      font-weight: 900;
      text-align: center;
      margin-bottom: 32px;
      line-height: 1.25;
    }

    .section__title--white { color: #fff; }
    .section__title--pink { color: var(--pink); }
    .section__title--dark { color: #222; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ─── VIDEO SECTION ─── */
    .video-section {
      background: var(--blue);
      padding: 60px 20px;
    }

    .video-section .section__title { color: #fff; }

    .video-wrapper {
      max-width: 860px;
      margin: 0 auto;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,0,0,.25);
      aspect-ratio: 16/9;
    }

    .video-wrapper iframe {
      width: 100%;
      height: 100%;
      display: block;
      border: none;
    }

    /* ─── ABOUT BRAND ─── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
    }

    .about-text h2 {
      font-size: 1.8rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 20px;
    }

    .about-text p {
      color: rgba(255,255,255,.92);
      font-size: 1rem;
      line-height: 1.75;
    }

    .wow-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 6px 30px rgba(0,0,0,.25);
      animation: wowFloat 5.2s ease-in-out infinite, wowGlow 3.6s ease-in-out infinite;
      will-change: transform, box-shadow, filter;
    }

    .wow-image picture {
      display: block;
      border-radius: 20px;
      overflow: hidden;
    }

    @keyframes wowFloat {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-10px) scale(1.015); }
    }

    @keyframes wowGlow {
      0%, 100% {
        box-shadow: 0 6px 30px rgba(0,0,0,.25);
        filter: saturate(1);
      }
      50% {
        box-shadow: 0 12px 42px rgba(209,3,115,.35);
        filter: saturate(1.08);
      }
    }

    /* ─── ASSORTMENT ─── */
    .assortment-section {
      background: var(--blue);
      padding: 60px 20px;
      text-align: center;
    }

    .assortment-section .section__title { color: #fff; }

    .assortment-image {
      max-width: 700px;
      margin: 0 auto 36px;
    }

    .assortment-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 6px 30px rgba(0,0,0,.2);
    }

    /* ─── WHERE TO BUY ─── */
    .buy-section {
      background:
        radial-gradient(circle at 10% 0%, #ffe8f4 0%, rgba(255, 232, 244, 0) 36%),
        radial-gradient(circle at 90% 100%, #e8f8ff 0%, rgba(232, 248, 255, 0) 34%),
        #fff;
      padding: 60px 20px;
    }

    .buy-section .section__title { color: var(--pink); }
    .buy-subtitle {
      text-align: center;
      color: #5e5a67;
      font-size: 1rem;
      margin-top: -20px;
      margin-bottom: 36px;
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      max-width: 980px;
      margin: 0 auto;
    }

    .partner-card {
      position: relative;
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      border-radius: 20px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 104px;
      transition: box-shadow .25s ease, transform .2s ease, border-color .2s ease;
      text-decoration: none;
      border: 1px solid #e8edf6;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.9),
        0 8px 20px rgba(29, 39, 70, .08);
    }

    .partner-card:hover {
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.95),
        0 14px 28px rgba(20, 35, 72, .14);
      border-color: #d7e2f2;
      transform: translateY(-4px);
    }

    .partner-card--inactive {
      cursor: default;
      pointer-events: none;
    }

    .partner-card img {
      max-height: 76px;
      max-width: 208px;
      width: auto;
      height: auto;
      object-fit: contain;
      transition: transform .2s ease, filter .2s ease, opacity .2s ease;
      filter: saturate(1.02);
    }

    .partner-card:hover img {
      transform: scale(1.04);
      filter: saturate(1.08);
    }

    /* ─── WHY SECTION ─── */
    .why-section {
      background: var(--pink);
      padding: 60px 20px;
    }

    .why-section .section__title {
      color: #fff !important;
      text-shadow: 0 2px 8px rgba(0,0,0,.2);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .why-card {
      background: rgba(255,255,255,.15);
      border: 2px solid rgba(255,255,255,.4);
      border-radius: 20px;
      padding: 28px 20px;
      text-align: center;
      transition: background .2s, transform .15s;
    }

    .why-card:hover {
      background: rgba(255,255,255,.25);
      transform: translateY(-4px);
    }

    .why-card__icon {
      font-size: 2.6rem;
      margin-bottom: 14px;
      display: block;
    }

    .why-card__title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }

    .why-card__text {
      font-size: .88rem;
      color: rgba(255,255,255,.88);
      line-height: 1.6;
    }

    /* ─── FOOTER ─── */
    .footer {
      background: var(--blue);
      padding: 48px 20px 28px;
      color: #fff;
    }

    .footer__inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255,255,255,.25);
    }

    .footer__brand-logo {
      height: 52px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
      margin-bottom: 14px;
      display: block;
    }

    .footer__brand-desc {
      font-size: .92rem;
      color: rgba(255,255,255,.85);
      line-height: 1.65;
      margin-bottom: 16px;
    }

    .footer__socials {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 2px;
    }

    .footer__social {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      text-decoration: none;
      background: rgba(255,255,255,.16);
      border: 1px solid rgba(255,255,255,.35);
      color: #fff;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .04em;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }

    .footer__social:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,.28);
      border-color: rgba(255,255,255,.55);
    }

    .footer__col-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .footer__contacts {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer__contacts li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .9rem;
      color: rgba(255,255,255,.88);
    }

    .footer__contacts li .ico {
      font-size: 1rem;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .footer__contacts a {
      color: rgba(255,255,255,.88);
      text-decoration: none;
      transition: color .2s;
    }

    .footer__contacts a:hover { color: #fff; text-decoration: underline; }

    .footer__links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer__links a {
      color: rgba(255,255,255,.85);
      text-decoration: none;
      font-size: .9rem;
      transition: color .2s;
    }

    .footer__links a:hover { color: #fff; text-decoration: underline; }

    .footer__bottom {
      max-width: 1100px;
      margin: 24px auto 0;
      text-align: center;
      font-size: .82rem;
      color: rgba(255,255,255,.7);
      line-height: 1.6;
    }

    .is-hidden { display: none !important; }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .header__nav { display: none; }
      .header__burger { display: flex; }

      .about-grid { grid-template-columns: 1fr; gap: 28px; }

      .why-grid { grid-template-columns: repeat(2, 1fr); }

      .footer__inner { grid-template-columns: 1fr; gap: 28px; }
    }

    @media (max-width: 600px) {
      .hero__desktop { display: none !important; }
      .hero__mobile { display: block !important; }

      .header__logo img {
        height: 63px;
        max-width: 270px;
      }

      .hero__overlay {
        top: 43%;
        width: 92%;
        max-width: 360px;
        padding: 16px 14px 14px;
        border-radius: 18px;
      }

      .hero__title { font-size: 1.5rem; }
      .hero__subtitle {
        font-size: .95rem;
        margin-bottom: 16px;
      }

      .hero__overlay .btn-blue {
        font-size: .96rem;
        line-height: 1.22;
        padding: 13px 24px;
      }

      .hero__overlay .btn-blue--hero .mobile-break {
        display: block;
      }

      .btn-pink--assortment {
        line-height: 1.22;
      }

      .btn-pink--assortment .mobile-break,
      .buy-section .section__title .mobile-break,
      .why-section .section__title .mobile-break {
        display: block;
      }

      .section__title { font-size: 1.45rem; }

      .why-grid { grid-template-columns: 1fr 1fr; }

      .why-card { padding: 20px 14px; }
      .why-card__icon { font-size: 2rem; }

      .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    }

    @media (min-width: 601px) {
      .hero__desktop { display: block !important; }
      .hero__mobile { display: none !important; }

      .hero__title { font-size: 3rem; }
      .hero__subtitle { font-size: 1.3rem; }

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

    @media (min-width: 992px) {
      .partners-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation: none !important;
        transition: none !important;
      }
      .fade-up {
        opacity: 1;
        transform: none;
      }
    }
