/* МЕГАХЕНД, Новосибирск — static layout (schema v2 batch-driver)
   Breakpoints: desktop 1440 / tablet 768 / mobile 390
   All assets relative; no remote fonts or CDNs. */

:root {
  --ink: #081B42;
  --blue: #0B2A6F;
  --yellow: #F4C430;
  --cyan: #31C5F4;
  --muted: #53657F;
  --muted-dark: #C9D6EC;
  --page: #F7F9FD;
  --white: #FFFFFF;
  --card-bg: #F3F6FB;
  --line-light: #DDE4F2;
  --line-dark: #3F5B91;
  --rule-footer: #29406D;
  --footer-dim: #90A6CE;
  --footer-links: #D8E2F5;
  --arrow-blue: #007A92;
  --font-display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --font-ui: "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background: var(--page);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }

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

[hidden] { display: none !important; }

.container {
  width: 100%;
  max-width: 1312px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ---------- Header ---------- */

.site-header {
  position: relative;
  background: var(--white);
}

.header-top {
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  white-space: nowrap;
}

.topbar-call { color: var(--white); }

.header-main {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100px;
}

.burger {
  display: none;
  font-size: 27px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 188px;
  height: 68px;
  background: var(--blue);
  border-radius: 5px;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--yellow);
  line-height: 1.05;
}

.logo-tag {
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--white);
  line-height: 1.1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
}

.main-nav a { white-space: nowrap; }

.search {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
}

.search input {
  width: 330px;
  height: 46px;
  border: none;
  border-radius: 23px;
  background: var(--card-bg);
  padding: 0 26px;
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--ink);
}

.search input::placeholder { color: var(--muted); }

.search input:focus {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.compact-utils { display: none; }

.header-icons {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--blue);
}

.icon-heart {
  font-size: 27px;
  line-height: 1;
  color: var(--blue);
}

.cart {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
}

.cart svg {
  width: 36px;
  height: 27px;
  color: var(--blue);
}

.nav-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--white);
  border-top: 2px solid var(--blue);
  padding: 14px 32px 20px;
  box-shadow: 0 12px 24px rgba(8, 27, 66, 0.12);
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  z-index: 20;
}

.nav-panel a { white-space: nowrap; }

/* ---------- Hero ---------- */

.hero { padding: 32px 0 0; }

.hero-shell {
  position: relative;
  height: 650px;
  border-radius: 34px;
  background: linear-gradient(135deg, #EAF8FF 0%, #FFF5B8 100%);
}

.hero-copy {
  position: absolute;
  left: 48px;
  top: 57px;
  z-index: 2;
  max-width: 560px;
}

.eyebrow {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  line-height: 18px;
  margin-bottom: 26px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  line-height: 73px;
  color: var(--ink);
  margin-bottom: 26px;
}

.hero-sub {
  font-size: 22px;
  font-weight: 500;
  line-height: 24px;
  color: #253858;
  margin-bottom: 31px;
}

.hero-sub-line-2 { display: block; }

.st-tablet, .st-mobile { display: none; }
.hero-sub-short { display: none; }
.ss-compact { display: none; }
.fl-mobile { display: none; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  border-radius: 28px;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.btn svg { width: 26px; height: 16px; flex-shrink: 0; }

.btn-primary {
  padding: 0 24px 0 30px;
  background: var(--yellow);
  color: var(--ink);
}

.btn-outline {
  padding: 0 30px;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
}

.btn-dark {
  padding: 0 24px 0 30px;
  background: var(--blue);
  color: var(--white);
}

.hero-art {
  position: absolute;
  top: 52px;
  right: 156px;
  z-index: 1;
}

.art-vignette {
  position: relative;
  width: 300px;
  height: 360px;
  border-radius: 150px;
  background: var(--blue);
}

.v-hanger {
  position: absolute;
  top: 12.5px;
  left: 31.3px;
  width: 137.5px;
  height: 126.3px;
}

.v-row {
  position: absolute;
  top: 268px;
  left: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.v-shirt { width: 101px; height: 82.8px; }
.v-jacket { width: 97.6px; height: 32px; }

.v-only-tablet, .v-only-mobile { display: none; }

.discount-ticket {
  position: absolute;
  right: 156px;
  bottom: 52px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 410px;
  height: 112px;
  background: var(--white);
  border-radius: 20px;
  padding: 0 26px;
}

.ticket-big {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1.1;
}

.ticket-sub {
  font-size: 17px;
  font-weight: 600;
  color: var(--muted);
}

.ticket-text { flex: 1; }

.ticket-arrow { width: 34px; height: 22px; flex-shrink: 0; }

/* ---------- Sections common ---------- */

.section-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 55px;
}

.head-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
}

.head-link svg { width: 24px; height: 14px; }

/* ---------- Categories ---------- */

.categories { padding: 101px 0 110px; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cat-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 126px;
  background: var(--white);
  border: 2px solid var(--line-light);
  border-radius: 24px;
  padding: 18px;
}

.cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 44px;
  background: var(--card-bg);
  flex-shrink: 0;
}

.cat-label {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.25;
}

.card-arrow {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 16px;
}

/* ---------- Why ---------- */

.why {
  background: var(--blue);
  padding: 80px 0 85px;
}

.why-label {
  font-size: 18px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 22px;
  margin-bottom: 41px;
}

.why-title {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 800;
  line-height: 57px;
  color: var(--white);
  margin-bottom: 125px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-item {
  border-top: 2px solid var(--line-dark);
  padding-top: 22px;
}

.why-num {
  font-size: 15px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 18px;
  margin-bottom: 15px;
}

.why-item-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 34px;
  margin-bottom: 7px;
}

.why-item-sub {
  font-size: 17px;
  color: var(--muted-dark);
}

/* ---------- Steps ---------- */

.steps { padding: 100px 0 110px; }

.steps-title { margin-bottom: 60px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--white);
  border: 2px solid var(--line-light);
  border-radius: 26px;
  padding: 50px 26px 34px;
  min-height: 250px;
}

.step-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--arrow-blue);
  line-height: 20px;
  margin-bottom: 16px;
}

.step-title {
  font-size: 27px;
  font-weight: 800;
  color: var(--blue);
  line-height: 33px;
  margin-bottom: 7px;
}

.step-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 22px;
}

/* ---------- Stores ---------- */

.stores { padding: 100px 0 0; }

.stores-shell {
  position: relative;
  height: 410px;
  background: var(--yellow);
  border-radius: 34px;
}

.stores-copy {
  position: absolute;
  left: 48px;
  top: 80px;
  max-width: 820px;
}

.stores-eyebrow {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  line-height: 18px;
  margin-bottom: 24px;
}

.stores-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  line-height: 47px;
  color: var(--ink);
}

.stores-cta {
  position: absolute;
  right: 48px;
  bottom: 64px;
  padding: 0 20px 0 30px;
  font-size: 18px;
}

.stores-hanger {
  position: absolute;
  right: 270px;
  top: 120px;
  width: 105.6px;
  height: 85.4px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  padding: 56px 0 36px;
}

.logo-footer { width: 190px; height: 68px; }

.footer-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--footer-dim);
  margin: 41px 0 16px;
}

.footer-phone {
  display: inline-block;
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-email {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.footer-rule {
  border: none;
  border-top: 1px solid var(--rule-footer);
  margin: 46px 0 40px;
}

.footer-links {
  font-size: 16px;
  font-weight: 600;
  color: var(--footer-links);
  margin-bottom: 36px;
}

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

.footer-links .sep { color: var(--footer-links); }

.footer-bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.footer-copy {
  font-size: 14px;
  font-weight: 600;
  color: var(--footer-dim);
}

.footer-city {
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow);
}

/* ---------- Focus & motion ---------- */

a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Tablet (768) ---------- */

@media (max-width: 1024px) {
  .container { max-width: 704px; padding: 0 32px; }

  .header-top { height: 38px; font-size: 13px; }
  .topbar-call { display: none; }

  .header-main { height: 90px; gap: 20px; }
  .burger { display: inline-block; }
  .main-nav { display: none; }
  .search { display: none; }
  .header-icons { display: none; }
  .tablet-utils {
    display: inline;
    margin-left: auto;
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
    white-space: nowrap;
  }
  .mobile-utils { display: none; }

  .logo { width: 178px; height: 64px; }
  .logo-name { font-size: 25px; }
  .logo-tag { font-size: 6px; }

  .hero { padding-top: 28px; }
  .hero-shell { height: 720px; border-radius: 32px; }
  .hero-copy { left: 40px; top: 56px; }
  .eyebrow { font-size: 14px; line-height: 17px; margin-bottom: 18px; }
  .hero-title { font-size: 55px; line-height: 56px; margin-bottom: 18px; }
  .hero-sub { font-size: 20px; line-height: 22px; margin-bottom: 20px; }
  .st-desktop, .st-mobile { display: none; }
  .st-tablet { display: inline; }
  .hero-sub-short { display: none; }
  .ss-desktop { display: none; }
  .ss-compact { display: inline; }
  .hero-actions .btn { height: 56px; }

  .v-only-desktop { display: none; }
  .v-only-tablet { display: block; }
  .hero-art { top: 200px; right: 112px; }
  .art-vignette { width: 210px; height: 250px; border-radius: 105px; }
  .v-hanger { top: 12.2px; left: 50.5px; width: 99px; height: 91px; }
  .v-row { top: 172.6px; left: 63.2px; }
  .v-shirt { width: 63.4px; height: 52px; }

  .discount-ticket {
    right: 40px;
    bottom: 40px;
    width: 330px;
    height: 112px;
    border-radius: 20px;
  }
  .ticket-big { font-size: 34px; }
  .ticket-sub { font-size: 15px; }
  .ticket-arrow { display: none; }

  .section-title { font-size: 38px; }
  .section-head { margin-bottom: 40px; }

  .categories { padding: 95px 0 95px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-card { height: 124px; }
  .cat-label { font-size: 22px; }

  .why { padding: 80px 0 112px; }
  .why-label { font-size: 16px; line-height: 20px; margin-bottom: 35px; }
  .why-title { font-size: 46px; line-height: 48px; margin-bottom: 122px; }
  .why-grid { grid-template-columns: 1fr; gap: 13px; }
  .why-item { padding-top: 26px; }
  .why-num { display: none; }
  .why-item-title { font-size: 27px; line-height: 33px; margin-bottom: 7px; }
  .why-item-sub { font-size: 17px; }

  .steps { padding: 110px 0 110px; }
  .steps-title { font-size: 38px; margin-bottom: 60px; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .step-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 38px;
    min-height: 142px;
    border-radius: 24px;
    padding: 30px 24px;
  }
  .step-num { margin: 2px 0 0; line-height: 20px; }
  .step-title { font-size: 25px; line-height: 31px; margin-bottom: 4px; }
  .step-sub { font-size: 17px; line-height: 22px; }

  .stores { padding-top: 110px; }
  .stores-shell { height: 300px; border-radius: 30px; }
  .stores-copy { left: 32px; top: 57px; }
  .stores-eyebrow { font-size: 14px; line-height: 17px; margin-bottom: 16px; }
  .stores-title { font-size: 37px; line-height: 38px; }
  .stores-cta { right: 32px; bottom: 32px; }
  .stores-hanger { display: none; }

  .site-footer { padding: 56px 0 30px; }
  .footer-label { margin: 41px 0 16px; }
  .footer-rule { margin: 46px 0 40px; }
}

/* ---------- Mobile (390) ---------- */

@media (max-width: 480px) {
  .container { max-width: 350px; padding: 0 20px; }

  .header-top { height: 34px; font-size: 12px; }
  .header-main { height: 76px; gap: 14px; }
  .burger { font-size: 24px; }
  .tablet-utils { display: none; }
  .mobile-utils {
    display: inline;
    margin-left: auto;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--blue);
    white-space: nowrap;
  }

  .logo { width: 156px; height: 56px; }
  .logo-name { font-size: 22px; }
  .logo-tag { font-size: 7px; }

  .hero { padding-top: 22px; }
  .hero-shell { height: 850px; border-radius: 28px; }
  .hero-copy { left: 20px; top: 58px; }
  .eyebrow { font-size: 12px; line-height: 15px; margin-bottom: 18px; }
  .hero-title { font-size: 45px; line-height: 45px; margin-bottom: 28px; }
  .hero-sub { font-size: 17px; line-height: 24px; margin-bottom: 30px; }
  .st-desktop, .st-tablet { display: none; }
  .st-mobile { display: inline; }
  .fl-full { display: none; }
  .fl-mobile { display: inline; }
  .hero-sub-line-2 { display: none; }
  .hero-sub-short { display: inline; }
  .ss-desktop { display: none; }
  .ss-compact { display: inline; }
  .hero-actions .btn { height: 56px; }
  .hero-actions .btn-primary { padding: 0 20px 0 24px; }
  .btn-outline { display: none; }

  .v-only-desktop, .v-only-tablet { display: none; }
  .v-only-mobile { display: block; }
  .hero-art { top: 478px; right: 65px; }
  .art-vignette { width: 220px; height: 220px; border-radius: 110px; }
  .v-hanger { top: 12.2px; left: 27px; width: 85.8px; height: 78.8px; }
  .v-row { top: 252px; left: 38px; }
  .v-shirt { width: 51.4px; height: 63.2px; }

  .discount-ticket {
    right: 20px;
    bottom: 44px;
    width: 284px;
    height: 100px;
    border-radius: 18px;
    padding: 0 20px;
  }
  .ticket-big { font-size: 30px; }
  .ticket-sub { font-size: 14px; }

  .section-title { font-size: 35px; }
  .section-head { margin-bottom: 40px; }

  .categories { padding: 88px 0 80px; }
  .cat-grid { grid-template-columns: 1fr; gap: 18px; }
  .cat-card { height: 106px; }
  .cat-label { font-size: 20px; }

  .why { padding: 70px 0 190px; }
  .why-label { font-size: 13px; line-height: 16px; margin-bottom: 41px; }
  .why-title { font-size: 38px; line-height: 39px; margin-bottom: 160px; }
  .why-item { padding-top: 40px; }
  .why-num { font-size: 14px; line-height: 17px; margin-bottom: 21px; }
  .why-item-title { font-size: 27px; line-height: 33px; margin-bottom: 6px; }
  .why-item-sub { font-size: 15px; }

  .steps { padding: 105px 0 60px; }
  .steps-title { font-size: 36px; margin-bottom: 52px; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; }
  .step-card {
    display: block;
    min-height: 172px;
    border-radius: 22px;
    padding: 44px 22px 30px;
  }
  .step-num { font-size: 14px; line-height: 17px; margin-bottom: 10px; }
  .step-title { font-size: 22px; line-height: 27px; margin-bottom: 10px; }
  .step-sub { font-size: 14px; line-height: 18px; }

  .stores { padding-top: 60px; }
  .stores-shell { height: 470px; border-radius: 28px; }
  .stores-copy { left: 20px; top: 55px; max-width: none; }
  .stores-eyebrow { font-size: 12px; line-height: 15px; margin-bottom: 28px; }
  .stores-title { font-size: 34px; line-height: 34px; }
  .stores-cta { right: 20px; bottom: 44px; }
  .stores-hanger { display: none; }

  .site-footer { padding: 40px 0 30px; }
  .logo-footer { width: 176px; height: 63px; }
  .footer-label { font-size: 15px; margin: 24px 0 12px; }
  .footer-phone { font-size: 25px; margin-bottom: 8px; }
  .footer-email { font-size: 16px; }
  .footer-rule { margin: 34px 0 40px; }
  .footer-links { font-size: 14px; margin-bottom: 30px; }
  .footer-copy { font-size: 13px; }
  .footer-city { font-size: 13px; }
}
