  * { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --bg: #090b0c;
    --bg-soft: #0f1417;
    --panel: rgba(17, 22, 25, 0.78);
    --panel-strong: rgba(10, 13, 15, 0.94);
    --line: rgba(255,255,255,0.08);
    --line-soft: rgba(255,255,255,0.05);
    --line-strong: rgba(164,254,27,0.22);
    --text: #f4f7f8;
    --muted: rgba(244,247,248,0.72);
    --muted-2: rgba(244,247,248,0.5);
    --accent: #A4FE1B;
    --accent-soft: rgba(164,254,27,0.12);
    --accent-glow: rgba(164,254,27,0.26);
    --shadow: 0 30px 90px rgba(0,0,0,0.5);
    --shadow-soft: 0 18px 46px rgba(0,0,0,0.28);
    --radius-xl: 36px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --container: 1380px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    background:
      radial-gradient(circle at 18% 0%, rgba(164,254,27,0.08), transparent 22%),
      radial-gradient(circle at 82% 10%, rgba(255,255,255,0.04), transparent 18%),
      linear-gradient(180deg, #070809 0%, #0b0e10 100%);
    color: var(--text);
    line-height: 1.45;
    overflow-x: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.34), rgba(0,0,0,0));
    opacity: 0.34;
  }

  a { color: inherit; text-decoration: none; }

  img,
  video,
  picture,
  svg {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  h1, h2, h3, .logo-text strong, .direction-number {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-weight: 400;
    letter-spacing: 0.03em;
  }

  p, a, div, span, small, strong, button {
    font-family: 'Oswald', Arial, sans-serif;
  }

  .hero h1,
  .section-head h2,
  .direction h3,
  .about-panel h3,
  .feature h3,
  .cta-panel h2,
  .hero-badge h3 {
    text-wrap: balance;
  }

  .hero p,
  .section-head p,
  .direction p,
  .about-panel p,
  .feature p,
  .cta-panel p,
  .about-list div,
  .direction-footer small {
    text-wrap: pretty;
  }

  .container {
    width: min(var(--container), calc(100% - 44px));
    margin: 0 auto;
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 8, 9, 0.7);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .logo-center{
    max-width:400px;
    display: flex;
    align-items: center;
      justify-content: center;

  }

  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;

  }

  .logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(164,254,27,0.24);
    background: linear-gradient(180deg, rgba(164,254,27,0.2), rgba(164,254,27,0.05));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 22px rgba(0,0,0,0.26), 0 0 26px rgba(164,254,27,0.12);
    position: relative;
    overflow: hidden;
  }

.logo-mark::before {
  content: "V";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #d9d9d9 40%,
    #a8a8a8 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 18px rgba(164,254,27,0.1);
}

.logo-mark:hover::before {
  color: #fff;
  text-shadow:
    0 0 18px rgba(164,254,27,0.18),
    0 0 28px rgba(164,254,27,0.12);
}

  .logo-text strong {
    display: block;
    font-size: 32px;
    line-height: 0.9;
    letter-spacing: 0.14em;
  }

  .logo-text span {
    display: block;
    margin-top: 2px;
    color: var(--muted-2);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .nav a {
    position: relative;
    transition: color .25s ease;
  }

  .nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
    transition: width .25s ease;
  }

  .nav a:hover { color: var(--text); }
  .nav a:hover::after { width: 100%; }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: .28s ease;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
  }

  .btn-accent {
    background: var(--accent);
    color: #0b0e0f;
    box-shadow: 0 12px 30px rgba(164,254,27,0.16), 0 0 22px rgba(164,254,27,0.12);
  }

  .btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(164,254,27,0.22), 0 0 36px rgba(164,254,27,0.18);
  }

  .btn-glass {
    color: var(--text);
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
  }

  .btn-glass:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
    border-color: rgba(164,254,27,0.18);
    box-shadow: 0 0 22px rgba(164,254,27,0.1);
  }

  .hero {
    position: relative;
    padding: 6px 0 4px;
  }

  .hero-tel {
    text-align: center;
    font-size: 20px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 26px;
    align-items: stretch;
  }

  .hero-copy,
  .hero-visual {
    position: relative;
    min-height: 720px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: linear-gradient(180deg, rgba(17,22,25,0.88), rgba(9,11,12,0.97));
  }

  .hero-copy {
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    isolation: isolate;
  }

  .hero-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(164,254,27,0.08), transparent 34%),
      linear-gradient(180deg, rgba(255,255,255,0.03), transparent 56%);
    z-index: -1;
  }

  .hero-copy::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(164,254,27,0.18), transparent 70%);
    filter: blur(24px);
    z-index: -1;
  }

  .eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(164,254,27,0.08);
    border: 1px solid rgba(164,254,27,0.22);
    color: var(--accent);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(36px, 3.8vw, 60px);
    line-height: 1.02;
    max-width: 720px;
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(255,255,255,0.035);
  }

  .hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 6px;
  }

  .meta-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-soft);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  }

  .meta-card:hover {
    transform: translateY(-4px);
    border-color: rgba(164,254,27,0.18);
    box-shadow: var(--shadow-soft), 0 0 28px rgba(164,254,27,0.1);
  }

  .meta-card strong {
    display: block;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 6px;
  }

  .meta-card span {
    display: block;
    color: var(--muted-2);
    font-size: 13px;
    line-height: 1.35;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.76) saturate(0.88);
    transform: scale(1.03);
    transition: transform 1.2s ease;
  }

  .hero-visual:hover img {
    transform: scale(1.08);
  }

  .hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.18)),
      linear-gradient(135deg, rgba(164,254,27,0.16), transparent 34%);
  }

  .hero-badge {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    z-index: 2;
    padding: 24px;
    border-radius: 24px;
    background: rgba(10,12,13,0.62);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
  }

  .hero-badge small {
    display: inline-block;
    color: var(--accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 10px;
  }

  .hero-badge h3 {
    font-size: 42px;
    line-height: 0.96;
    margin-bottom: 8px;
  }

  .hero-badge p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
    max-width: none;
  }

  .section {
    padding: 34px 0 110px;
  }

  .section-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
  }

  .section-head h2 {
    font-size: clamp(34px, 3.8vw, 58px);
    line-height: 0.98;
    margin-bottom: 10px;
  }

  .section-head p {
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
  }

  .section-note {
    color: var(--muted-2);
    font-size: 13px;
    max-width: 280px;
    text-align: right;
    line-height: 1.35;
  }

  .directions {
    display: flex;
    gap: 24px;
    align-items: stretch;
  }

  .direction {
    position: relative;
    max-height: 380px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    isolation: isolate;
    flex: 1 1 0;
    transform: translateY(-4px);
    border-color: rgba(164,254,27,0.16);
    box-shadow: var(--shadow-soft), 0 0 28px rgba(164,254,27,0.08);
  }

  .direction img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.2) saturate(0.80);
    transition: transform .85s ease, filter .45s ease;
  }

  .direction::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.18)),
      linear-gradient(180deg, transparent 32%, rgba(8,10,11,0.15) 55%, rgba(8,10,11,0.56) 100%);
  }

  .direction::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    z-index: 1;
    pointer-events: none;
    transition: border-color .35s ease, box-shadow .35s ease;
  }

  .directions.is-hovered .direction {
    opacity: 0.94;
  }

  .directions.is-hovered .direction.is-active {
    opacity: 1;
  }

  .direction:hover {
    transform: translateY(-4px);
    border-color: rgba(164,254,27,0.18);
    box-shadow: var(--shadow), 0 0 40px rgba(164,254,27,0.08);
  }

  .direction:hover img,
  .direction.is-active img {
    transform: scale(1.08);
    filter: brightness(0.8) saturate(0.92);
  }

  .direction:hover::after,
  .direction.is-active::after {
    border-color: rgba(164,254,27,0.18);
    box-shadow: inset 0 0 0 1px rgba(164,254,27,0.08), 0 0 30px rgba(164,254,27,0.06);
  }

  .direction-glow {
    position: absolute;
    inset: auto -8% -18% auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(164,254,27,0.18), transparent 68%);
    filter: blur(24px);
    opacity: 0;
    z-index: 1;
    transition: opacity .35s ease, transform .45s ease;
    transform: translateY(30px);
  }

  .direction:hover .direction-glow,
  .direction.is-active .direction-glow {
    opacity: 1;
    transform: translateY(0);
  }

  .direction-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 34px;
    transition: transform .35s ease;
  }

  .direction:hover .direction-content,
  .direction.is-active .direction-content {
    transform: translateY(-8px);
  }

  .direction-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
  }

  .direction-tag {
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .direction-number {
    color: rgba(255,255,255,0.22);
    font-size: 78px;
    line-height: 0.85;
    transition: color .35s ease, text-shadow .35s ease;
  }

  .direction:hover .direction-number,
  .direction.is-active .direction-number {
    color: rgba(164,254,27,0.4);
    text-shadow: 0 0 22px rgba(164,254,27,0.12);
  }

  .direction h3 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1;
    margin-bottom: 15%;
    max-width: 520px;
  }

  .direction p {
    max-width: 560px;
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    margin-bottom: 18px;
  }

  .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
  }

  .chip {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: border-color .28s ease, background .28s ease, box-shadow .28s ease;
  }

  .direction:hover .chip,
  .direction.is-active .chip {
    border-color: rgba(164,254,27,0.16);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 18px rgba(164,254,27,0.05);
  }

  .direction-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
  }

  .direction-footer small {
    color: var(--muted-2);
    font-size: 13px;
    max-width: 320px;
    line-height: 1.35;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    margin-top: 30px;
  }

  .about-panel,
  .feature,
  .gallery-item,
  .cta-panel {
    background: linear-gradient(180deg, rgba(17,22,25,0.82), rgba(9,11,12,0.94));
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
  }

  .about-panel {
    padding: 34px;
    position: relative;
    overflow: hidden;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  }

  .about-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(164,254,27,0.16);
    box-shadow: var(--shadow-soft), 0 0 28px rgba(164,254,27,0.08);
  }

  .about-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(164,254,27,0.08), transparent 38%);
    pointer-events: none;
  }

  .about-panel h3 {
    position: relative;
    font-size: 42px;
    line-height: 0.96;
    margin-bottom: 16px;
  }

  .about-panel p {
    position: relative;
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 18px;
    max-width: 700px;
  }

  .about-list {
    position: relative;
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }

  .about-list div {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    transition: border-color .28s ease, transform .28s ease;
  }

  .about-list div:hover {
    border-color: rgba(164,254,27,0.16);
    transform: translateX(4px);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 28px;
  }

  .feature {
    padding: 26px 22px;
    position: relative;
    overflow: hidden;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  }

  .feature:hover {
    transform: translateY(-4px);
    border-color: rgba(164,254,27,0.16);
    box-shadow: var(--shadow-soft), 0 0 28px rgba(164,254,27,0.08);
  }

  .feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.7;
    box-shadow: 0 0 14px rgba(164,254,27,0.18);
  }

  .feature small {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .feature h3 {
    font-size: 34px;
    line-height: 0.95;
    margin-bottom: 10px;
  }

  .feature p {
    color: var(--muted);
    font-size: 15px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.75fr;
    gap: 18px;
    margin-top: 30px;
  }

  .gallery-item {
    overflow: hidden;
    min-height: 260px;
    position: relative;
    transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
  }

  .gallery-item.large {
    min-height: 540px;
    grid-row: span 2;
  }

  .gallery-item:hover {
    transform: translateY(-4px);
    border-color: rgba(164,254,27,0.16);
    box-shadow: var(--shadow-soft), 0 0 28px rgba(164,254,27,0.08);
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.86) saturate(0.92);
    transition: transform .7s ease;
  }

  .gallery-item:hover img { transform: scale(1.06); }

  .gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 45%);
  }

  .cta {
    padding: 0 0 110px;
  }

  .cta-panel {
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: border-color .28s ease, box-shadow .28s ease;
  }

  .cta-panel:hover {
    border-color: rgba(164,254,27,0.16);
    box-shadow: var(--shadow-soft), 0 0 34px rgba(164,254,27,0.08);
  }

  .cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(164,254,27,0.12), transparent 40%);
    pointer-events: none;
  }

  .cta-panel h2 {
    position: relative;
    font-size: clamp(34px, 3.8vw, 60px);
    line-height: 0.98;
    margin-bottom: 10px;
  }

  .cta-panel p {
    position: relative;
    color: var(--muted);
    font-size: 17px;
    max-width: 760px;
  }

  .cta-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
  }

  .footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 32px 0 42px;
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--muted-2);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
  }

  @media (min-width: 1201px) {
    .directions.is-hovered .direction:not(.is-active) .direction-content {
      transform: translateY(4px);
    }
  }

  @media (max-width: 1200px) {
    .container {
      width: min(var(--container), calc(100% - 40px));
    }

    .hero-grid,
    .about-grid,
    .cta-panel {
      grid-template-columns: 1fr;
    }

    .hero-grid {
      gap: 20px;
    }

    .hero-copy,
    .hero-visual,
    .direction {
      min-height: 560px;
    }

    .hero-copy {
      padding: 32px;
    }

    .hero-badge {
      left: 20px;
      right: 20px;
      bottom: 20px;
      padding: 20px;
    }

    .hero-badge h3 {
      font-size: 32px;
      line-height: 1;
    }

    .hero-meta {
      grid-template-columns: 1fr;
    }

    .section {
      padding: 28px 0 84px;
    }

    .section-note {
      text-align: left;
      max-width: none;
    }

    .directions {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .direction {
      flex: unset;
    }

    .directions.is-hovered .direction,
    .directions.is-hovered .direction.is-active {
      flex: unset;
      opacity: 1;
    }

    .about-grid {
      gap: 18px;
    }

    .features-grid {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .gallery-item.large {
      min-height: 320px;
      grid-row: auto;
    }

    .cta-panel {
      gap: 18px;
    }

    .cta-actions {
      justify-content: flex-start;
    }
  }

  @media (max-width: 900px) {
    .header-inner {
      flex-direction: column;
      justify-content: center;
      min-height: auto;
      padding: 14px 0;
    }

    .nav {
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 16px;
      font-size: 12px;
    }

    .logo-text strong {
      font-size: 26px;
    }

    .hero-copy,
    .hero-visual,
    .direction {
      min-height: 500px;
    }

    .hero-copy,
    .about-panel,
    .cta-panel {
      padding: 28px;
    }

    .direction-content {
      padding: 26px;
    }

    .section-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 22px;
    }

    .direction-number {
      font-size: 52px;
    }
  }

  @media (max-width: 768px) {
    .container {
      width: calc(100% - 32px);
    }

    .header {
      position: static;
    }

    .hero {
      padding: 28px 0 20px;
    }

    .hero-copy,
    .hero-visual {
      min-height: auto;
      border-radius: 26px;
    }

    .hero-copy {
      padding: 24px;
    }

    .hero-visual {
      min-height: 420px;
    }

    .hero h1 {
      font-size: clamp(30px, 9vw, 46px);
      line-height: 1.02;
      max-width: 100%;
      margin-bottom: 14px;
    }

    .hero p {
      font-size: 15px;
      line-height: 1.5;
      margin-bottom: 20px;
      max-width: 100%;
    }

    .eyebrow {
      font-size: 10px;
      padding: 8px 12px;
      margin-bottom: 16px;
    }

    .hero-actions,
    .cta-actions {
      flex-direction: column;
      gap: 10px;
    }

    .hero-actions .btn,
    .cta-actions .btn,
    .direction-footer .btn,
    .btn {
      width: 100%;
    }

    .hero-badge {
      left: 16px;
      right: 16px;
      bottom: 16px;
      padding: 16px;
      border-radius: 18px;
    }

    .hero-badge h3 {
      font-size: 26px;
      line-height: 1.02;
    }

    .hero-badge p {
      font-size: 13px;
      line-height: 1.4;
    }

    .section {
      padding: 20px 0 64px;
    }

    .section-head h2,
    .cta-panel h2 {
      font-size: clamp(30px, 8vw, 44px);
      line-height: 1;
      margin-bottom: 8px;
    }

    .section-head p,
    .cta-panel p {
      font-size: 15px;
      line-height: 1.5;
      max-width: 100%;
    }

    .section-note {
      font-size: 12px;
    }

    .direction {
      min-height: 480px;
      border-radius: 26px;
    }

    .direction::after {
      inset: 12px;
      border-radius: 20px;
    }

    .direction-content {
      padding: 22px;
    }

    .direction-head {
      margin-bottom: 14px;
    }

    .direction-number {
      font-size: 44px;
    }

    .direction h3 {
      font-size: clamp(30px, 8vw, 42px);
      line-height: 0.98;
      margin-bottom: 10px;
      max-width: 100%;
    }

    .direction p {
      font-size: 15px;
      line-height: 1.45;
      margin-bottom: 14px;
      max-width: 100%;
    }

    .chips {
      gap: 8px;
      margin-bottom: 18px;
    }

    .chip {
      font-size: 12px;
      padding: 8px 12px;
    }

    .direction-footer {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }

    .direction-footer small {
      max-width: 100%;
      font-size: 12px;
    }

    .direction-glow {
      width: 180px;
      height: 180px;
      filter: blur(20px);
      opacity: 0.55;
    }

    .about-panel {
      padding: 22px;
      border-radius: 22px;
    }

    .about-panel h3 {
      font-size: clamp(28px, 7vw, 38px);
      line-height: 1;
      margin-bottom: 12px;
    }

    .about-panel p {
      font-size: 15px;
      line-height: 1.5;
      margin-bottom: 14px;
    }

    .about-list {
      gap: 10px;
    }

    .about-list div {
      padding: 12px 14px;
      font-size: 14px;
      line-height: 1.4;
    }

    .features-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .feature {
      padding: 20px 18px;
      border-radius: 20px;
    }

    .feature h3 {
      font-size: clamp(26px, 7vw, 34px);
      line-height: 1;
      margin-bottom: 8px;
    }

    .feature p {
      font-size: 14px;
      line-height: 1.5;
    }

    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .gallery-item,
    .gallery-item.large {
      min-height: 220px;
      border-radius: 20px;
    }

    .cta {
      padding: 0 0 72px;
    }

    .cta-panel {
      padding: 22px;
      border-radius: 22px;
    }

    .hero-copy,
    .hero-visual,
    .direction,
    .about-panel,
    .feature,
    .gallery-item,
    .cta-panel {
      box-shadow: 0 14px 34px rgba(0,0,0,0.22);
    }

    .hero-copy::after {
      opacity: 0.55;
    }

    .btn-accent,
    .btn-glass,
    .meta-card,
    .feature,
    .about-panel,
    .gallery-item,
    .cta-panel {
      transition: 0.2s ease;
    }
  }

  @media (max-width: 640px) {
    .container {
      width: calc(100% - 24px);
    }

    .nav {
      gap: 10px 14px;
      font-size: 11px;
    }

    .logo-text strong {
      font-size: 24px;
    }

    .hero h1 {
      font-size: clamp(28px, 8.8vw, 40px);
    }

    .hero-badge h3 {
      font-size: 24px;
    }

    .section-head h2,
    .cta-panel h2 {
      font-size: clamp(28px, 8vw, 38px);
    }

    .direction h3,
    .about-panel h3 {
      font-size: clamp(28px, 8vw, 36px);
    }

    .feature h3 {
      font-size: clamp(24px, 7vw, 30px);
    }
  }


  .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 8, 0.72);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.28s ease;
  z-index: 9999;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, rgba(17,22,25,0.96), rgba(9,11,12,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.45), 0 0 30px rgba(164,254,27,0.06);
  padding: 32px;
}

.modal-head {
  margin-bottom: 22px;
}

.modal-head h3 {
  font-size: 42px;
  line-height: 0.95;
  margin-bottom: 8px;
}

.modal-head p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: 0.2s ease;
}

.modal-close:hover {
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 18px rgba(164,254,27,0.08);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group label span {
  color: var(--accent);
}

.form-group input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.2s ease;
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.35);
}

.form-group input:focus {
  border-color: rgba(164,254,27,0.28);
  box-shadow: 0 0 0 3px rgba(164,254,27,0.08);
  background: rgba(255,255,255,0.06);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .modal-box {
    padding: 24px;
    border-radius: 22px;
  }

  .modal-head h3 {
    font-size: 34px;
  }

  .form-group input {
    height: 50px;
    font-size: 14px;
  }
}

.form-group-checkbox {
  margin-top: 4px;
}

.checkbox-wrap {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  column-gap: 12px;
  cursor: pointer;
  user-select: none;
}

.checkbox-wrap input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  position: relative;
  transition: 0.2s ease;
  margin-top: 1px;
}

.checkbox-custom::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #0b0e0f;
  border-bottom: 2px solid #0b0e0f;
  transform: rotate(45deg) scale(0);
  transition: 0.2s ease;
}

.checkbox-wrap input:checked + .checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 14px rgba(164,254,27,0.14);
}

.checkbox-wrap input:checked + .checkbox-custom::after {
  transform: rotate(45deg) scale(1);
}

.checkbox-wrap input:focus + .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(164,254,27,0.08);
  border-color: rgba(164,254,27,0.28);
}

.checkbox-text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

.checkbox-text span {
  color: var(--accent);
}

.hero-visual {
  position: relative;
}

/* Логотип справа */
.hero-logo-visual {
  position: absolute;
  top: 5%;
  right: 40px;
  transform: translateY(-50%);

  height: 220px;
  max-height: 220px;
  width:220px;
  max-width: 220px;

  opacity: 0.95;

  filter:
    drop-shadow(0 0 20px rgba(164,254,27,0.08))
    drop-shadow(0 0 40px rgba(164,254,27,0.04));

  z-index: 3;
  pointer-events: none;
}



/* =========================
   CONTACT SECTION / VIKING
========================= */

.contact-section {
  position: relative;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: stretch;
}

.form-card,
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(17,22,25,0.86), rgba(9,11,12,0.96));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.34),
    0 0 24px rgba(164,254,27,0.04);
  backdrop-filter: blur(12px);
}

.form-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(164,254,27,0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent 58%);
  pointer-events: none;
}

.form-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.2;
  pointer-events: none;
}

.form-card > *,
.contact-card > * {
  position: relative;
  z-index: 2;
}

.form-card h3,
.contact-card h3 {
  font-size: clamp(34px, 3vw, 48px);
  line-height: 0.96;
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 10px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.68);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 16px 18px;
  font-size: 15px;
  outline: none;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.field input,
.field select {
  height: 56px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.field select {
  appearance: none;
  cursor: pointer;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(164,254,27,0.26);
  background: rgba(255,255,255,0.06);
  box-shadow:
    0 0 0 4px rgba(164,254,27,0.06),
    0 0 24px rgba(164,254,27,0.04);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox input {
  margin-top: 4px;
  accent-color: var(--accent);
  transform: scale(1.12);
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn-row .btn {
  min-width: 220px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-lines span {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}

.contact-card .btn-row .btn {
  flex: 1;
}

@media (max-width: 1100px) {
  .form-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-card,
  .contact-card {
    padding: 24px;
    border-radius: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-card h3,
  .contact-card h3 {
    font-size: 36px;
  }

  .field input,
  .field select {
    height: 52px;
  }

  .btn-row .btn {
    width: 100%;
    min-width: 0;
  }
}