:root {
  --bg: #06120f;
  --bg-soft: #0b1c17;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --text: #f5fbf7;
  --muted: #b7c7bf;
  --emerald: #0f8f67;
  --emerald-light: #35d39a;
  --gold: #d8b46a;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/Manrope-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope" !important;
  background:transparent;
  color: var(--text);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section-pad{
    position:relative;
    padding: 75px 0;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(6, 18, 15, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 45px rgba(0,0,0,0.22);
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .02em; }
.logo-mark {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald));
  color: #03110d;
}
.nav { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 14px; }
.nav a:hover { color: var(--text); }
.header-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(53, 211, 154, 0.14);
  border: 1px solid rgba(53, 211, 154, 0.35);
  color: var(--emerald-light);
  font-weight: 700;
}

.mobile-menu-btn {
    display: none;
}

.mobile-title {
    display: none;
}

.hero{
    position:relative;
    overflow:hidden;
    min-height:100vh;
    display:flex;
    align-items:center;
    margin-top:-108px;     /* поднимает видео под шапку */
    padding-top:188px;     /* возвращает контент вниз */
    padding-bottom:120px;
}

.hero-video-bg{
    position:fixed;
    inset:0;
    z-index:-2;
    overflow:hidden;
    pointer-events:none;
}

.hero-video-bg video{
    width:100vw;
    height:100vh;
    object-fit:cover;
    object-position:center center;
}

.hero-overlay{
    position:fixed;
    inset:0;
    z-index:-1;
    pointer-events:none;

    background:
        linear-gradient(
            180deg,
            rgba(6,18,15,.45) 0%,
            rgba(6,18,15,.55) 50%,
            rgba(6,18,15,.85) 100%
        );
}

.hero-video-bg iframe{
    position:absolute;
    top:0;
    left:50%;
    width:100%;
    height:100%;
    min-width:100%;
    min-height:100%;
    transform:translateX(-50%);
    object-fit:cover;
    object-position:center top;
}

.hero-overlay{
    position:fixed;
    inset:0;
    z-index:-1;
    pointer-events:none;

    background:
        linear-gradient(
            90deg,
            rgba(5,10,8,.18) 0%,
            rgba(5,10,8,.18) 55%,
            rgba(5,10,8,.44) 100%
        ),
        linear-gradient(
            180deg,
            rgba(6,18,15,.15) 0%,
            rgba(6,18,15,.15) 75%,
            #06120f 100%
        );
}

.google-map {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.hero-content{
    position:relative;
    z-index:2;

    min-height:60vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    max-width:1000px;
    margin:auto;

    padding:40px 20px;
}

.hero-logo img{
    width:320px;
    max-width:80vw;
    margin-bottom:20px;
}

.hero-city{
    font-size:1.5rem;
    margin-bottom:24px;
}

.hero h1{
    font-size:clamp(2.5rem,6vw,2.5rem);
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:24px;
}

.hero-slogan{
    font-size:1.6rem;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: 54px; align-items: center; z-index:2;}
.eyebrow { margin: 0 0 14px; color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; font-size: clamp(44px, 7vw, 86px); line-height: .96; letter-spacing: -0.06em; margin-bottom: 26px; }
h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1.04; letter-spacing: -0.045em; margin-bottom: 22px; }
h3 { font-size: 24px; line-height: 1.15; margin-bottom: 12px; }
.hero-text, .split p, .contact-section p { color: var(--muted); font-size: 18px; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 800; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--emerald-light), var(--emerald)); color: #03110d; box-shadow: 0 12px 35px rgba(53, 211, 154, 0.25); }
.btn-secondary { border: 1px solid var(--border); color: var(--text); background: rgba(255,255,255,0.04); }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 620px; }
.hero-stats div, .feature-card, .price-card, .benefits div, .quote-box, .map-card, .hero-card {
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.hero-stats div { padding: 18px; border-radius: var(--radius-md); }
.hero-stats strong { display: block; font-size: 28px; color: var(--emerald-light); line-height: 1; }
.hero-stats span { color: var(--muted); font-size: 13px; }
.hero-card { position: relative; overflow: hidden; min-height: 520px; padding: 34px; border-radius: var(--radius-xl); display: flex; flex-direction: column; justify-content: flex-end; z-index: 2;}
.hero-card:before { content: ""; position: absolute; inset: 22px; border-radius: 28px; border: 1px solid rgba(216,180,106,.18); pointer-events: none; }
.hero-card:after { content: "PIKO\A VOICE"; white-space: pre; position: absolute; top: 48px; left: 34px; color: rgba(255,255,255,.04); font-weight: 900; font-size: 82px; line-height: .86; letter-spacing: -.08em; }
.card-kicker { color: var(--gold); font-weight: 800; }
.hero-card p { color: var(--muted); }
.sound-wave { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; height: 110px; margin-bottom: 70px; }
.sound-wave span { width: 15%; border-radius: 999px; background: linear-gradient(180deg, var(--emerald-light), var(--emerald)); opacity: .9; }
.sound-wave span:nth-child(1) { height: 42px; } .sound-wave span:nth-child(2) { height: 86px; } .sound-wave span:nth-child(3) { height: 118px; } .sound-wave span:nth-child(4) { height: 70px; } .sound-wave span:nth-child(5) { height: 98px; }
.mini-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.mini-list span { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.08); color: var(--text); font-size: 13px; }

.section-head { max-width: 760px; margin-bottom: 34px; }
.cards.three, .pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.feature-card, .price-card { border-radius: var(--radius-lg); padding: 28px; }
.feature-card p, .price-card li, .per-lesson { color: var(--muted); }
.icon { font-size: 34px; display: inline-block; margin-bottom: 24px; }
/* .about-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,.035), transparent); } */
.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.benefits { display: grid; gap: 14px; }
.benefits div { display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: center; padding: 22px; border-radius: var(--radius-md); }
.benefits strong { color: var(--gold); }
.benefits span { font-weight: 700; }
.quote-section { padding-top: 40px; padding-bottom: 40px; }
.quote-box { border-radius: var(--radius-xl); padding: 44px; text-align: center; }
.quote-box p { margin: 0; font-size: clamp(26px, 4vw, 46px); line-height: 1.12; letter-spacing: -.04em; }
.price-card { position: relative; display: flex; flex-direction: column; gap: 18px; }
.price-card.popular { border-color: rgba(53,211,154,.55); background: linear-gradient(180deg, rgba(53,211,154,.15), rgba(255,255,255,.075)); transform: translateY(-12px); }
.badge { position: absolute; top: 20px; right: 20px; padding: 7px 12px; border-radius: 999px; background: rgba(216,180,106,.16); color: var(--gold); font-size: 12px; font-weight: 800; }
.price { font-size: 42px; line-height: 1; font-weight: 900; letter-spacing: -.05em; color: var(--emerald-light); }
ul { padding-left: 18px; margin: 0 0 8px; }
.price-card .btn { margin-top: auto; }
.contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 22px; align-items: stretch; }
.socials { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 28px; }
.socials a { padding: 12px 16px; border-radius: 999px; background: var(--card); border: 1px solid var(--border); color: var(--text); font-weight: 700; }
.map-card {
  overflow: hidden;
  padding: 0;
}

.map-card p {
  position: absolute;
  z-index: 2;
  top: 32px;
  left: 0;
  right: 0;
  text-align: center;
}

.mobile-title {
    display: none;
}

.map-card span {
  width: 100%;
  height: 100%;
  display: block;
}
.footer { padding: 28px 0 44px; color: var(--muted); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--border); padding-top: 24px; }
.footer a { color: var(--emerald-light); font-weight: 800; }

@media (max-width: 900px) {
  .nav {
  display: none;
}
    .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(45, 211, 159, 0.35);
    border-radius: 50%;
    background: rgba(45, 211, 159, 0.12);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    }
  .hero-grid, .split, .contact-grid, .cards.three, .pricing-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .section-pad { padding: 68px 0; }
  .hero-card { min-height: 420px; }
  .price-card.popular { transform: none; }

  .nav.nav-open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 12px;
    right: 12px;

    flex-direction: column;
    gap: 18px;

    padding: 22px;
    border-radius: 22px;

    background: rgba(3, 24, 18, 0.96);
    border: 1px solid rgba(45, 211, 159, 0.25);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    }

    .nav.nav-open a {
    font-size: 17px;
    color: #fff;
    }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .site-header { width: calc(100% - 20px); border-radius: 24px; }
  .header-cta { display: none; }
  h1 { font-size: 46px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-card, .feature-card, .price-card, .quote-box { padding: 24px; }
  .benefits div { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }

  .desktop-title {
        display: none;
    }

    .mobile-title {
        display: block;
        font-size: 36px;
        line-height: 1.15;
    }

    .hero-city {
        font-size: 18px;
    }

    .hero-slogan {
        font-size: 18px;
        margin-bottom: 30px;
    }
     .hero h1 {
    font-size: 45px;
    line-height: 1.3;
    letter-spacing: 0;
    }
    .hero-logo img {
    margin-top: 20px;
    width: 220px;
    }
}
