/* ===================================
   E-SURFING · PREMIUM · LIGHT THEME
   =================================== */

:root {
  --bg:       #f8f6f2;
  --bg-white: #ffffff;
  --surface:  #f0ede7;
  --text:     #111827;
  --muted:    #5f6b78;
  --line:     rgba(17,24,39,.09);
  --gold:     #b59462;
  --gold-dk:  #8d6c3e;
  --gold-lt:  #c9a878;
  --radius:   6px;
  --shadow:   0 20px 56px rgba(17,24,39,.10);
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Manrope', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  background: var(--bg-white);
  color: var(--text);
  font-family: var(--ff-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::-webkit-scrollbar { height: 4px; width: 4px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ===================================
   NAV
   =================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem, 3.5vw, 3.5rem);
  height: 64px;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid rgba(255,255,255,0);
  transition: background .35s, border-color .35s, backdrop-filter .35s;
}
.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav-logo {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .2em;
  color: #fff;
  transition: color .35s;
}
.nav.scrolled .nav-logo { color: var(--text); }

.nav-links { display: flex; gap: 1.75rem; }
.nav-links a {
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.75);
  transition: color .2s;
}
.nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: var(--text); }

/* desktop contact icons in nav */
.nav-contact-actions {
  display: flex; align-items: center; gap: .1rem;
}
.nma-tg svg { color: #2aabee; }
.nma-wa svg { color: #25d366; }
.nma-mx svg { color: #0077ff; }
.nav-contact-actions .nma-btn span { display: none; }
.nav-contact-actions .nma-mx span {
  display: inline;
  font-size: .72rem; font-weight: 700; letter-spacing: .03em;
}

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative; width: 100%; height: 100svh; min-height: 600px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 177.78vh; /* 16/9 */
  height: 100vh;
  min-width: 100vw;
  min-height: 56.25vw;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10,12,16,.28) 0%,
    rgba(10,12,16,.45) 50%,
    rgba(10,12,16,.70) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 clamp(1.5rem, 6vw, 8rem);
}
.hero-eyebrow {
  font-size: .72rem; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold-lt);
  margin-bottom: 1.5rem;
  display: block;
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5.5vw, 5.2rem);
  font-weight: 600; line-height: 1.1;
  color: #fff;
  margin: 0 auto 2.5rem;
  max-width: 1000px;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.5);
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-block; font-family: var(--ff-sans);
  font-size: .76rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: .85em 2.2em; border-radius: 2px;
  transition: all .22s; cursor: pointer; border: none;
}
.btn-light { background: #fff; color: var(--text); }
.btn-light:hover { background: var(--gold-lt); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dk); }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: #000; }

/* ===================================
   EQUIPMENT SECTIONS
   =================================== */
.equipment-section { background: var(--bg-white); padding: clamp(2.5rem,4vw,4rem) 0 2rem; }
.equipment-section--alt { background: var(--bg); }

.section-header { padding: 0 clamp(1.5rem,5vw,5rem); max-width: 1280px; margin: 0 auto 1.5rem; }
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem,4vw,3.8rem); font-weight: 600; line-height: 1.1;
  color: var(--text);
}
.title-sub { font-weight: 400; font-style: italic; color: var(--muted); font-size: .78em; }

/* ===================================
   GALLERY (arrows + dots)
   =================================== */
.gallery-wrap {
  padding: 0 clamp(1.5rem,5vw,5rem);
  max-width: 1280px; margin: 0 auto 1.5rem;
}
.gallery { display: grid; gap: 12px; }
.gallery-stage {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
}
.gallery-stage img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .35s ease;
}
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.88); backdrop-filter: blur(8px);
  color: var(--text); border: none; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(17,24,39,.14);
  transition: background .2s, transform .2s;
}
.gallery-nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-counter {
  position: absolute; right: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center;
  padding: 7px 14px; border-radius: 999px;
  color: #fff; background: rgba(10,12,16,.55); backdrop-filter: blur(10px);
  font-size: .82rem; font-weight: 500; letter-spacing: .05em;
}
/* dots strip */
.gallery-thumbs {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 6px; padding: 4px 0;
}
.gallery-thumb {
  width: 8px; height: 8px; border-radius: 50%;
  padding: 0; border: none; cursor: pointer;
  background: var(--line);
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.gallery-thumb.is-active {
  background: var(--gold);
  transform: scale(1.4);
}
/* mobile: full-width, no arrows */
@media (max-width: 960px) {
  .gallery-wrap { padding: 0; max-width: none; margin-bottom: 1rem; }
  .gallery-stage { border-radius: 0; }
  .gallery-nav { display: none; }
  .gallery-thumbs { padding: 8px clamp(1.5rem,5vw,5rem); }
}

.section-desc {
  padding: 0 clamp(1.5rem,5vw,5rem);
  max-width: 1280px; margin: 0 auto;
}
.section-desc p {
  font-size: clamp(.95rem,1.5vw,1.15rem); font-weight: 300;
  line-height: 1.8; color: var(--muted);
}
.section-desc em { font-style: normal; color: var(--text); font-weight: 500; }

/* ===================================
   FEATURES
   =================================== */
.features-section {
  background: var(--surface);
  padding: clamp(3rem,5vw,5rem) clamp(1.5rem,5vw,5rem);
}
.features-inner { max-width: 1280px; margin: 0 auto; }
.features-heading { text-align: center; margin-bottom: 2.5rem; }
.eyebrow-sm {
  display: block; font-size: .68rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .75rem;
}
.features-heading h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem,3.5vw,3.5rem); font-weight: 600;
  line-height: 1.15; color: var(--text);
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1px; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.feature-card {
  background: var(--bg-white); padding: 1.75rem 2rem;
  transition: background .22s;
}
.feature-card:hover { background: #fff9f0; }
.feature-icon { width: 36px; height: 36px; margin-bottom: 1rem; color: var(--gold); }
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 {
  font-family: var(--ff-serif); font-size: 1.3rem;
  font-weight: 600; color: var(--text); margin-bottom: .6rem;
}
.feature-card p { font-size: .87rem; line-height: 1.75; color: var(--muted); }

/* ===================================
   PRICING
   =================================== */
.pricing-section {
  background: var(--bg-white);
  padding: clamp(3rem,5vw,5rem) clamp(1.5rem,5vw,5rem);
}
.pricing-inner { max-width: 1280px; margin: 0 auto; }
.pricing-heading { margin-bottom: 2rem; }
.pricing-heading h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem,3.5vw,3.5rem); font-weight: 600; color: var(--text);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap: 1.25rem; margin-bottom: 4rem;
}
.pricing-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  transition: border-color .22s, transform .22s, box-shadow .22s;
}
.pricing-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(181,148,98,.14);
}
.pricing-card--featured { border-color: rgba(181,148,98,.35); background: #fff; }
.pricing-category {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}
.pricing-price {
  font-family: var(--ff-serif); font-size: 3rem;
  font-weight: 600; line-height: 1; color: var(--text); margin-bottom: .2rem;
}
.pricing-price span { font-size: 1.75rem; font-weight: 400; }
.pricing-unit {
  font-size: .78rem; color: var(--muted);
  margin-bottom: 1.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line);
}
.pricing-includes li {
  font-size: .84rem; color: var(--muted);
  padding: .38rem 0 .38rem 1.25rem; position: relative;
}
.pricing-includes li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}

.pricing-extra { border-top: 1px solid var(--line); padding-top: 3rem; }
.pricing-extra h3 {
  font-family: var(--ff-serif); font-size: 1.75rem;
  font-weight: 600; color: var(--text); margin-bottom: 1.5rem;
}
.pricing-table { width: 100%; }
.pt-row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); align-items: center;
}
.pt-header {
  font-size: .68rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted);
}
.pt-row:not(.pt-header) { font-size: .9rem; color: var(--muted); }
.pt-row:not(.pt-header):last-child { border-bottom: none; }
.pt-row div:last-child {
  font-family: var(--ff-serif); font-size: 1.2rem;
  font-weight: 600; color: var(--text); text-align: right;
}

/* ===================================
   PRICING TABS
   =================================== */
.pricing-tabs {
  display: flex; gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pricing-tabs::-webkit-scrollbar { display: none; }

.ptab {
  font-family: var(--ff-sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .7em 1.4em; border: none; background: transparent;
  color: var(--muted); cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .2s, border-color .2s; flex-shrink: 0;
}
.ptab:hover { color: var(--text); }
.ptab.active { color: var(--text); border-bottom-color: var(--gold); }

.ptab-panel { display: none; }
.ptab-panel.active { display: block; }

.price-table {
  width: 100%; border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.price-table th {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  padding: .75rem 1rem; text-align: left;
  border-bottom: 2px solid var(--line); white-space: nowrap;
}
.price-table td {
  padding: .9rem 1rem; font-size: 1rem; color: var(--text);
  border-bottom: 1px solid var(--line);
}
.price-table td:first-child { font-family: var(--ff-serif); font-size: clamp(1.3rem,2vw,1.6rem); font-weight: 600; color: var(--text); }
.price-table td:not(:first-child) {
  font-size: 1.1rem; font-weight: 700;
  white-space: nowrap;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td { background: #faf8f4; }

/* Mobile: stack into card rows */
@media (max-width: 640px) {
  .price-table thead { display: none; }
  .price-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: .75rem 0;
    border-bottom: 1px solid var(--line);
    position: relative;
  }
  .price-table tbody tr:last-child { border-bottom: none; }
  .price-table td {
    padding: .2rem 0; border-bottom: none; font-size: .95rem;
  }
  .price-table td:first-child {
    grid-column: 1 / -1;
    font-weight: 600; color: var(--text);
    font-size: 1rem; padding-bottom: .4rem;
  }
  .price-table td:not(:first-child) {
    font-size: 1.1rem;
  }
  .price-table td:nth-child(2)::before { content: 'Будни: '; font-family: var(--ff-sans); font-size: .7rem; font-weight: 700; color: var(--muted); display: block; text-transform: uppercase; letter-spacing: .08em; }
  .price-table td:nth-child(3)::before { content: 'Выходные: '; font-family: var(--ff-sans); font-size: .7rem; font-weight: 700; color: var(--muted); display: block; text-transform: uppercase; letter-spacing: .08em; }
}

.price-note {
  font-size: .88rem; color: var(--muted); line-height: 1.7;
  padding: 1.25rem 1.5rem; background: var(--bg);
  border-radius: var(--radius); border-left: 3px solid var(--gold);
  margin: 0 0 1.25rem;
}
.price-from {
  font-family: var(--ff-serif); font-size: clamp(1.8rem,3vw,3rem);
  font-weight: 600; color: var(--gold-dk);
  margin-bottom: 1.5rem;
}

/* ===================================
   FAQ
   =================================== */
.faq-section {
  background: var(--bg);
  padding: clamp(3rem,5vw,5rem) clamp(1.5rem,5vw,5rem);
}
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-heading { margin-bottom: 2rem; }
.faq-heading h2 {
  font-family: var(--ff-serif); font-size: clamp(2rem,3.5vw,3.5rem);
  font-weight: 600; color: var(--text); margin-top: .5rem;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 1.4rem 0;
  font-size: 1.05rem; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  color: var(--gold); flex-shrink: 0; transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: .95rem; color: var(--muted); line-height: 1.8;
  padding-bottom: 1.4rem;
}
.faq-item p a { color: var(--gold-dk); }
.faq-item p strong { color: var(--text); font-weight: 600; }

/* ===================================
   CORPORATE / CERTIFICATES
   =================================== */
.corporate-section {
  background: var(--surface);
  padding: clamp(3rem,5vw,5rem) clamp(1.5rem,5vw,5rem);
}
.corporate-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  border-top: 1px solid var(--line); padding-top: 3rem;
}
.corporate-block h2 {
  font-family: var(--ff-serif); font-size: clamp(1.8rem,3vw,3rem);
  font-weight: 600; color: var(--text); margin-bottom: 1rem; margin-top: .5rem;
}
.corporate-block p {
  font-size: .95rem; font-weight: 300; line-height: 1.8;
  color: var(--muted); margin-bottom: 2rem;
}

/* ===================================
   CONTACTS
   =================================== */
.contacts-section {
  background: var(--bg-white);
  padding: clamp(3rem,5vw,5rem) clamp(1.5rem,5vw,5rem);
}
.contacts-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
}
.contacts-info h2 {
  font-family: var(--ff-serif); font-size: clamp(2rem,3.5vw,3.5rem);
  font-weight: 600; color: var(--text); margin-bottom: 2.5rem; margin-top: .5rem;
}
.contacts-detail {
  display: flex; flex-direction: column; gap: 1.5rem;
  margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line);
}
.contacts-item { display: flex; flex-direction: column; gap: .2rem; }
.contacts-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
}
.contacts-item a { color: var(--text); }
.contacts-item a:hover { color: var(--gold-dk); }
.contacts-item span:not(.contacts-label) { font-size: .93rem; color: var(--muted); line-height: 1.5; }
.contacts-messengers { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .15rem; }
.c-msg-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .88rem; font-weight: 600;
  text-decoration: none; color: var(--text);
  transition: opacity .2s;
}
.c-msg-btn:hover { opacity: .7; }
.c-msg-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.c-msg-tg svg { color: #2aabee; }
.c-msg-wa svg { color: #25d366; }
.c-msg-mx svg { color: #0077ff; }
.contacts-map { height: 460px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--text);
  padding: clamp(3rem,5vw,5rem) clamp(1.5rem,5vw,5rem) 1.5rem;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 3rem; align-items: start;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-family: var(--ff-sans); font-weight: 800; font-size: .95rem;
  letter-spacing: .2em; display: block; color: #fff; margin-bottom: .6rem;
}
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .4rem 1.75rem; align-content: start; }
.footer-nav a { font-size: .8rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-nav a:hover { color: var(--gold-lt); }
.footer-contact {
  display: flex; flex-direction: column; gap: .35rem;
  text-align: right; font-size: .83rem;
}
.footer-contact a { color: #fff; }
.footer-contact a:hover { color: var(--gold-lt); }
.footer-contact span { color: rgba(255,255,255,.45); }
.footer-copy { max-width: 1280px; margin: 0 auto; font-size: .72rem; color: rgba(255,255,255,.22); }

/* ===================================
   FADE-IN
   =================================== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.feature-card.fade-in:nth-child(2) { transition-delay: .08s; }
.feature-card.fade-in:nth-child(3) { transition-delay: .16s; }
.feature-card.fade-in:nth-child(4) { transition-delay: .24s; }
.feature-card.fade-in:nth-child(5) { transition-delay: .32s; }
.feature-card.fade-in:nth-child(6) { transition-delay: .40s; }
.pricing-card.fade-in:nth-child(2) { transition-delay: .08s; }
.pricing-card.fade-in:nth-child(3) { transition-delay: .16s; }
.pricing-card.fade-in:nth-child(4) { transition-delay: .24s; }

/* ===================================
   MOBILE NAV ACTIONS (call + message)
   =================================== */
.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: .25rem;
}
.nma-btn {
  display: flex; align-items: center; justify-content: center;
  padding: .4rem .45rem;
  background: transparent; border: none; cursor: pointer;
  color: #fff; transition: color .35s; text-decoration: none;
}
.nav.scrolled .nma-btn { color: var(--text); }
.nma-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.nma-btn span { display: none; }

/* Dropdown */
.nma-wrap { position: relative; }
.msg-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(17,24,39,.12);
  min-width: 160px; z-index: 200;
  overflow: hidden;
  transform: translateY(-4px); opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
}
.msg-dropdown.open {
  transform: translateY(0); opacity: 1;
  pointer-events: auto;
}
.msg-option {
  display: flex; align-items: center; gap: .75rem;
  padding: .9rem 1.1rem;
  font-family: var(--ff-sans); font-size: .9rem;
  font-weight: 600; color: var(--text);
  text-decoration: none;
  transition: background .15s;
  border-bottom: 1px solid var(--line);
}
.msg-option:last-child { border-bottom: none; }
.msg-option:hover { background: var(--bg); }
.msg-option svg { width: 20px; height: 20px; flex-shrink: 0; }
/* Per-brand colours */
.msg-option:nth-child(1) svg { color: #2aabee; }  /* Telegram */
.msg-option:nth-child(2) svg { color: #25d366; }  /* WhatsApp */
.msg-option:nth-child(3) svg { color: #0077ff; }  /* Max/VK */

/* ===================================
   BURGER + MOBILE MENU
   =================================== */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: space-between;
  width: 24px; height: 18px;
  background: transparent; border: none; cursor: pointer;
  padding: 0; flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 100%; height: 2px;
  background: #fff; border-radius: 1px;
  transition: transform .3s, opacity .3s, background .35s;
  transform-origin: center;
}
.nav.scrolled .nav-burger span { background: var(--text); }

/* Burger → X */
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0; z-index: 99;
  background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem clamp(1.25rem,5vw,3rem) 2rem;
  overflow-y: auto;
  transform: translateY(-8px); opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0); opacity: 1;
  pointer-events: auto;
}
.mobile-menu__links {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 1.5rem;
}
.mobile-menu__links a {
  font-size: 1.05rem; font-weight: 600; color: var(--text);
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s;
}
.mobile-menu__links a:hover { color: var(--gold-dk); }
.mobile-menu__phone {
  display: inline-block; margin-top: .5rem;
  font-size: 1rem; font-weight: 700;
  color: var(--gold-dk); letter-spacing: .03em;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 960px) {
  .nav-burger { display: flex; }
  .mobile-menu { display: block; }
  .nav-mobile-actions { display: flex; }
  .nav-contact-actions { display: none; }
  .nav-links { display: none; }
  .corporate-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contacts-inner { grid-template-columns: 1fr; }
  .contacts-map { height: 300px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-contact { text-align: left; }
  .pt-row { grid-template-columns: 1fr; gap: .2rem; }
  .pt-header { display: none; }
  .pt-row div:last-child { text-align: left; }
}
@media (max-width: 600px) {
  .nav-cta { display: none; }
  .hero-title { font-size: clamp(1.75rem,7vw,2.8rem); }
  .pricing-grid { grid-template-columns: 1fr; }
}
