@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --dark: #0a0f1a;
  --dark2: #111827;
  --dark3: #1a2332;
  --blue: #0e719b;
  --blue-dark: #075579;
  --orange: #f5821f;
  --orange-dark: #d96a0e;
  --orange-glow: rgba(245,130,31,.18);
  --white: #ffffff;
  --gray: #8b9db5;
  --gray-light: #bfcfdf;
  --line: rgba(255,255,255,.08);
  --line-light: #e5ecf3;
  --max: 1220px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--white);
  background: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* ── HEADER ── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-light);
  box-shadow: 0 10px 34px rgba(10, 15, 26, .08);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 82px; gap: 28px;
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 52px; width: auto; max-width: 248px; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 14px; font-weight: 700; color: #304258; letter-spacing: .03em;
  transition: color .2s, background .2s, border-color .2s, transform .1s;
}
.nav a:hover, .nav a.active { color: var(--orange); }
.nav .btn {
  min-height: 46px; padding: 0 24px;
  background: var(--orange); color: #fff;
  box-shadow: 0 10px 24px rgba(245, 130, 31, .24);
}
.nav .btn:hover { background: var(--orange-dark); color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 26px;
  background: var(--orange); color: var(--white);
  font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .04em;
  border: none; cursor: pointer; transition: background .2s, transform .1s;
  text-align: center; white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn.secondary {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn.secondary:hover { border-color: var(--orange); color: var(--orange); background: transparent; }
.btn.dark { background: var(--dark2); color: var(--white); border: 1.5px solid var(--line); }
.btn.dark:hover { border-color: var(--orange); color: var(--orange); }

.mobile-toggle {
  display: none; background: #fff; border: 1.5px solid #dce7f0;
  color: var(--dark); padding: 10px 16px; font-size: 13px; font-weight: 800; cursor: pointer;
  letter-spacing: .06em;
  box-shadow: 0 8px 18px rgba(10, 15, 26, .06);
}

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  background: var(--dark2);
  min-height: calc(100vh - 82px); display: flex; align-items: center;
  padding: 88px 0 64px;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(245,130,31,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,130,31,.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}
.hero-grid > *, .prop-band > *, .why-grid > *, .cta-inner > *, .contact-layout > * { min-width: 0; }

.tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; background: var(--orange-glow);
  border: 1px solid rgba(245,130,31,.3);
  font-size: 12px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 24px;
}
.tag::before {
  content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 88px; line-height: .95; letter-spacing: .02em;
  color: var(--white); margin-bottom: 28px;
}
h1 span { color: var(--orange); }

.lead {
  font-size: 18px; line-height: 1.75; color: var(--gray-light);
  max-width: 560px; margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid var(--line);
}
.hero-stat {
  padding: 20px 24px; border-right: 1px solid var(--line);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 40px; color: var(--orange); line-height: 1;
}
.hero-stat span { display: block; font-size: 12px; color: var(--gray); margin-top: 6px; line-height: 1.4; }

.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.hero-img-wrap img { width: 100%; height: 600px; object-fit: cover; display: block; }
.hero-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,15,26,.6) 100%);
}

.hero-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 2;
  background: rgba(10,15,26,.85); backdrop-filter: blur(12px);
  border: 1px solid var(--line); padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
}
.hero-badge-icon {
  width: 48px; height: 48px; background: var(--orange);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.hero-badge-icon svg { width: 24px; height: 24px; fill: #fff; }
.hero-badge strong { display: block; font-size: 16px; font-weight: 700; }
.hero-badge span { display: block; font-size: 13px; color: var(--gray); margin-top: 2px; }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-light { background: #fff; color: var(--dark); }
.section-mid { background: #f4f7fb; color: var(--dark); }

.section-head { margin-bottom: 48px; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.kicker::before { content: ''; width: 24px; height: 2px; background: var(--orange); }

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 62px; line-height: .96; letter-spacing: .02em; margin-bottom: 16px;
}
.section-light h2, .section-mid h2 { color: var(--dark); }

.section-sub { font-size: 18px; color: var(--gray); max-width: 680px; line-height: 1.7; }
.section-light .section-sub, .section-mid .section-sub { color: #5b6f85; }

/* ── PRODUCT CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }

.prod-card {
  background: var(--dark3); position: relative; overflow: hidden;
  transition: transform .3s;
}
.prod-card:hover { transform: translateY(-4px); z-index: 2; }
.prod-card:hover .prod-img img { transform: scale(1.04); }

.prod-img { overflow: hidden; }
.prod-img img { width: 100%; height: 260px; object-fit: cover; transition: transform .5s; }

.prod-body { padding: 28px; }
.prod-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--orange);
  opacity: .25; line-height: 1; margin-bottom: 4px;
}
.prod-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; letter-spacing: .02em; margin-bottom: 12px;
}
.prod-body p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }
.prod-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.prod-tag {
  font-size: 11px; font-weight: 600; color: var(--gray); letter-spacing: .06em;
  padding: 5px 10px; border: 1px solid var(--line); text-transform: uppercase;
}

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-img-wrap { position: relative; }
.why-img-wrap img { width: 100%; height: 520px; object-fit: cover; }
.why-img-accent {
  position: absolute; top: -20px; left: -20px;
  width: 180px; height: 180px; background: var(--orange); opacity: .12;
  z-index: -1;
}

.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex; gap: 24px; padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
  align-items: flex-start;
}
.why-item:first-child { padding-top: 0; }
.section-light .why-item { border-bottom-color: var(--line-light); }
.why-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--orange);
  line-height: 1; flex: none; width: 40px;
}
.why-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.why-item p { font-size: 15px; color: #5b6f85; line-height: 1.65; }

/* ── AUDIENCE GRID ── */
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.aud-card {
  background: var(--dark3); padding: 36px; position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.aud-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--orange); opacity: 0;
  transition: opacity .3s;
}
.aud-card:hover::before { opacity: 1; }
.aud-icon {
  width: 52px; height: 52px; background: var(--orange-glow);
  border: 1px solid rgba(245,130,31,.3); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}
.aud-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 1.5; }
.aud-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.aud-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.aud-items { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.aud-items span {
  font-size: 13px; color: var(--gray); padding-left: 16px; position: relative;
}
.aud-items span::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 1px; background: var(--orange);
}

/* ── BRANDS ── */
.brands-strip { display: flex; flex-wrap: wrap; gap: 2px; }
.brand-item {
  flex: 1 1 140px; background: var(--dark3); border: 1px solid var(--line);
  padding: 22px 20px; text-align: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 20px;
  letter-spacing: .06em; color: var(--gray); transition: color .2s, border-color .2s;
}
.brand-item:hover { color: var(--white); border-color: var(--orange); }

/* ── CTA BLOCK ── */
.cta-block {
  background: linear-gradient(135deg, var(--orange) 0%, #e06a0a 100%);
  padding: 72px 0; position: relative; overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 300px; height: 300px;
  border: 1px solid rgba(255,255,255,.15); border-radius: 50%;
}
.cta-block::after {
  content: '';
  position: absolute; bottom: -80px; right: 80px;
  width: 200px; height: 200px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 50%;
}
.cta-inner { display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: center; }
.cta-block h2 { font-size: 64px; color: #fff; margin-bottom: 12px; }
.cta-block p { font-size: 18px; color: rgba(255,255,255,.85); }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cta-block .btn { background: #fff; color: var(--dark); }
.cta-block .btn:hover { background: var(--dark); color: #fff; }
.cta-block .btn.ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.cta-block .btn.ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── FOOTER ── */
.footer { background: #060b14; border-top: 1px solid var(--line); }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-logo { height: 44px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-desc { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contacts a { font-size: 14px; color: var(--gray-light); transition: color .2s; }
.footer-contacts a:hover { color: var(--orange); }
.footer h4 { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 14px; color: var(--gray); transition: color .2s; }
.footer-nav a:hover { color: var(--orange); }
.footer-bottom { padding: 20px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 13px; color: #4a5e72; }
.footer-bottom a { font-size: 13px; color: #4a5e72; transition: color .2s; }
.footer-bottom a:hover { color: var(--gray); }

/* ── PAGE HEROES ── */
.page-hero {
  background: var(--dark2); padding: 72px 0 68px;
  border-bottom: 1px solid var(--line); position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(245,130,31,.1) 0%, transparent 60%);
}
.page-hero .tag { margin-bottom: 18px; }
.page-hero h1 { font-size: 72px; margin-bottom: 20px; }
.page-hero p { font-size: 19px; color: var(--gray); max-width: 720px; line-height: 1.7; }

.small-hero {
  background: var(--dark2); padding: 72px 0 68px;
  border-bottom: 1px solid var(--line); position: relative; overflow: hidden;
}
.small-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(245,130,31,.1) 0%, transparent 60%);
}
.small-hero .container { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; background: var(--orange-glow);
  border: 1px solid rgba(245,130,31,.3);
  font-size: 12px; font-weight: 800; color: var(--orange);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px;
}
.small-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; line-height: .96; letter-spacing: .02em;
  color: var(--white); margin-bottom: 20px; max-width: 900px;
}
.small-hero p { font-size: 19px; color: var(--gray-light); max-width: 760px; line-height: 1.7; }

.list-table {
  max-width: 980px; background: #fff; color: var(--dark);
  border: 1px solid var(--line-light); margin: 0 auto;
  box-shadow: 0 18px 45px rgba(10, 15, 26, .08);
}
.list-row {
  display: grid; grid-template-columns: .75fr 1.25fr; gap: 28px;
  padding: 26px 30px; border-bottom: 1px solid var(--line-light);
}
.list-row:last-child { border-bottom: none; }
.list-row strong { font-size: 16px; line-height: 1.45; color: var(--dark); }
.list-row div { font-size: 15px; line-height: 1.75; color: #5b6f85; }

/* ── PROPOSAL PAGE ── */
.prop-band { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.prop-band img { width: 100%; height: 480px; object-fit: cover; }
.prop-band-copy h2 { font-size: 52px; margin-bottom: 18px; }
.prop-band-copy p { font-size: 17px; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
.check-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--gray-light); padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.check-item:last-child { border-bottom: none; }
.check-item::before {
  content: '✓'; width: 24px; height: 24px; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex: none; margin-top: 2px;
}

.section-light .check-item { color: #374151; border-bottom-color: var(--line-light); }
.section-light .check-item::before { content: '✓'; }

/* product cards on proposal page */
.prop-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.prop-card { background: #fff; border: 1px solid var(--line-light); overflow: hidden; display: flex; flex-direction: column; }
.prop-card img { width: 100%; height: 280px; object-fit: cover; }
.prop-card-body { padding: 32px; flex: 1; }
.prop-card-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 34px; letter-spacing: .02em; color: var(--dark); margin-bottom: 12px; }
.prop-card-body p { font-size: 15px; color: #5b6f85; line-height: 1.7; margin-bottom: 18px; }
.prop-card-body ul { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.prop-card-body ul li { font-size: 14px; color: #5b6f85; padding-left: 16px; position: relative; }
.prop-card-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--orange); }

/* application table */
.app-table { border: 1px solid var(--line); overflow: hidden; }
.app-row { display: grid; grid-template-columns: .85fr 1.15fr; border-bottom: 1px solid var(--line); }
.app-row:last-child { border-bottom: none; }
.app-row-title { padding: 24px; background: rgba(245,130,31,.08); border-right: 1px solid var(--line); font-weight: 700; font-size: 16px; display: flex; align-items: center; }
.app-row-desc { padding: 24px; font-size: 14px; color: var(--gray); line-height: 1.7; display: flex; align-items: center; }

/* ── CONTACTS PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; }

.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-info h2 { font-size: 48px; margin-bottom: 32px; color: var(--dark); }

.c-item {
  display: flex; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line-light);
  align-items: flex-start;
}
.c-item:first-of-type { border-top: none; padding-top: 0; }
.c-icon {
  width: 44px; height: 44px; background: var(--orange-glow); border: 1px solid rgba(245,130,31,.3);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.c-icon img { width: 20px; height: 20px; object-fit: contain; }
.c-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #8b9db5; margin-bottom: 4px; }
.c-val { font-size: 16px; font-weight: 600; color: var(--dark); }
.c-val a { color: var(--dark); transition: color .2s; }
.c-val a:hover { color: var(--orange); }
.c-sub { font-size: 13px; color: #8b9db5; margin-top: 2px; }

.company-block {
  margin-top: 32px; padding: 24px; background: #f4f7fb;
  border: 1px solid var(--line-light);
}
.company-block h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.company-block p { font-size: 14px; color: #5b6f85; line-height: 1.8; }

/* form */
.form-card {
  background: #fff; border: 1px solid var(--line-light);
  padding: 40px;
}
.form-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 38px; letter-spacing: .02em; color: var(--dark); margin-bottom: 6px; }
.form-card .form-sub { font-size: 15px; color: #5b6f85; margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1/-1; }
label { font-size: 11px; font-weight: 700; color: #6b7f95; letter-spacing: .08em; text-transform: uppercase; }
input, textarea, select {
  width: 100%; border: 1.5px solid #dce7f0; background: #f8fbfd;
  min-height: 50px; padding: 12px 16px; font-family: 'Manrope', sans-serif;
  font-size: 14px; color: var(--dark); outline: none; transition: border-color .2s;
  -webkit-appearance: none;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--orange); background: #fff; }
.form-note { font-size: 13px; color: #8b9db5; margin-top: 12px; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 200;
  background: var(--dark2); border: 1px solid var(--line);
  padding: 22px 28px; display: none;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.cookie-inner { display: flex; align-items: center; gap: 24px; justify-content: space-between; }
.cookie-inner p { font-size: 14px; color: var(--gray); }
.cookie-actions { display: flex; gap: 10px; flex: none; }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 820px; padding: 64px 0 80px; color: var(--dark); }
.legal-content h2 { font-size: 42px; margin-bottom: 32px; color: var(--dark); }
.legal-content h3 { font-size: 22px; margin: 32px 0 12px; }
.legal-content p { font-size: 16px; color: #5b6f85; line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 22px; color: #5b6f85; font-size: 15px; }
.legal-content ul li { margin-bottom: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  h1 { font-size: 64px; }
  h2 { font-size: 50px; }
  .hero-grid, .why-grid, .prop-band, .cta-inner, .contact-layout { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .page-hero h1 { font-size: 56px; }
}

@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  h1, .page-hero h1 { font-size: 46px; line-height: 1; }
  h2 { font-size: 36px; line-height: 1.04; overflow-wrap: break-word; }
  .cta-block h2 { font-size: 44px; }
  .section { padding: 64px 0; }
  .topbar-inner { min-height: 72px; gap: 14px; }
  .brand img { height: 42px; max-width: 198px; }
  .mobile-toggle { display: block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    display: none; flex-direction: column; align-items: flex-start;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line-light);
    box-shadow: 0 18px 34px rgba(10, 15, 26, .12);
  }
  .nav.open { display: flex; }
  .nav a {
    width: 100%; padding: 16px 24px; border-top: 1px solid var(--line-light); margin: 0;
    color: #304258;
  }
  .nav a:hover, .nav a.active { color: var(--orange); }
  .nav .btn {
    width: calc(100% - 32px); margin: 12px 16px 16px; border-top: 0;
    color: #fff; justify-content: center; clip-path: none;
  }
  .hero { min-height: auto; padding: 52px 0 44px; }
  .hero-grid { gap: 32px; }
  .tag { font-size: 10px; letter-spacing: .08em; padding: 7px 12px; }
  .lead { font-size: 15px; line-height: 1.65; margin-bottom: 26px; }
  .hero-actions, .cta-actions { width: 100%; gap: 10px; }
  .hero-actions .btn, .cta-actions .btn, .form-card .btn { width: 100%; }
  .hero-img-wrap img { height: 360px; }
  .hero-badge { left: 14px; right: 14px; bottom: 14px; padding: 16px; gap: 12px; }
  .hero-badge-icon { width: 40px; height: 40px; }
  .hero-badge strong { font-size: 14px; }
  .hero-badge span { font-size: 12px; }
  .products-grid { grid-template-columns: 1fr; gap: 2px; }
  .prop-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--line); }
  .hero-stat:last-child { border-bottom: none; }
  .form-grid { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; flex-direction: row; }
  .cookie-actions .btn { width: 100%; min-height: 40px; padding: 0 14px; }
  .app-row { grid-template-columns: 1fr; }
  .app-row-title { border-right: none; border-bottom: 1px solid var(--line); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-inner { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0 46px; }
  .page-hero h1, .small-hero h1 { font-size: 40px; line-height: 1.02; overflow-wrap: break-word; }
  .small-hero h1 { font-size: 36px; }
  .page-hero p { font-size: 16px; line-height: 1.65; }
  .small-hero { padding: 48px 0 46px; }
  .small-hero p { font-size: 16px; line-height: 1.65; }
  .eyebrow { font-size: 10px; letter-spacing: .08em; padding: 7px 12px; }
  .list-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 20px; }
  .list-row strong { font-size: 15px; }
  .list-row div { font-size: 14px; line-height: 1.7; }
  .prod-body, .aud-card, .prop-card-body { padding: 24px; }
  .prop-band { gap: 30px; }
  .prop-band-copy h2 { font-size: 32px; }
  .prop-band img, .why-img-wrap img { height: auto; aspect-ratio: 16 / 11; object-fit: cover; }
  .contact-info h2 { font-size: 36px; margin-bottom: 24px; }
  .form-card { padding: 24px; }
  .company-block { padding: 20px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 14px; }
  .cookie-inner { gap: 12px; }
  .cookie-inner p { font-size: 12px; line-height: 1.55; }
  .why-img-accent { display: none; }
}
