:root {
  --dark: #061426;
  --navy: #0b2038;
  --blue: #176fe6;
  --green: #62b832;
  --white: #ffffff;
  --soft: #f4f7fb;
  --muted: #647087;
  --border: rgba(6,20,38,0.09);
  --line: rgba(255,255,255,0.16);
  --shadow: 0 24px 70px rgba(0,0,0,0.22);
  --radius: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--soft);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.top-bar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 20px;
  font-size: 14px;
  text-align: center;
  font-weight: 800;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-img { width: 255px; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 21px;
  font-size: 15px;
  font-weight: 850;
}
.nav-links a:hover { color: var(--blue); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 950;
  background: var(--green);
  color: var(--dark);
  box-shadow: 0 12px 26px rgba(98,184,50,0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(98,184,50,0.36); }

.hero {
  background:
    linear-gradient(90deg, rgba(6,20,38,0.94) 0%, rgba(6,20,38,0.84) 44%, rgba(6,20,38,0.12) 100%),
    url('../images/trailer-field.jpg') center/cover;
  color: var(--white);
  overflow: hidden;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 94px 20px 78px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 22px;
}
.badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(98,184,50,0.15);
}
h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}
.hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.88);
  max-width: 660px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.secondary-link { color: var(--white); font-weight: 900; border-bottom: 2px solid var(--green); }
.hero-card {
  background: rgba(255,255,255,0.11);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.16);
}
.hero-caption { padding: 16px 8px 4px; font-weight: 850; color: rgba(255,255,255,0.9); }

.section { padding: 82px 20px; }
.container { max-width: 1180px; margin: 0 auto; }
.section-title { max-width: 810px; margin-bottom: 34px; }
.section-title .small {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 950;
  margin-bottom: 10px;
}
h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 16px;
}
.section-title p { color: var(--muted); font-size: 18px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 38px rgba(7,17,31,0.08);
  border: 1px solid var(--border);
}
.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23,111,230,0.1);
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 18px;
}
.card h3 { font-size: 21px; line-height: 1.15; margin-bottom: 10px; letter-spacing: -0.03em; }
.card p { color: var(--muted); }

.screen-section { background: var(--white); }
.screen-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.screen-photo {
  background: var(--soft);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 14px 38px rgba(7,17,31,0.08);
}
.screen-photo img { width: 100%; height: 100%; min-height: 435px; object-fit: cover; }
.spec-panel { background: var(--soft); border-radius: 30px; padding: 30px; border: 1px solid var(--border); }
.spec-panel p { color: var(--muted); font-size: 17px; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; }
.spec { background: var(--white); border-radius: 18px; padding: 18px; border: 1px solid var(--border); }
.spec strong { display: block; font-size: 26px; line-height: 1; color: var(--blue); letter-spacing: -0.04em; margin-bottom: 8px; }
.spec span { color: var(--muted); font-weight: 750; font-size: 14px; }
.consumer-note {
  margin-top: 22px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(98,184,50,0.12);
  border: 1px solid rgba(98,184,50,0.28);
  color: #274119;
  font-weight: 800;
}
.gallery { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 20px; margin-top: 34px; }
.gallery img { width: 100%; height: 310px; object-fit: cover; border-radius: 26px; box-shadow: 0 14px 38px rgba(7,17,31,0.08); border: 1px solid var(--border); }

.dark-section { background: var(--navy); color: var(--white); }
.dark-section .section-title p, .dark-section .card p { color: rgba(255,255,255,0.72); }
.dark-section .card { background: rgba(255,255,255,0.08); border: 1px solid var(--line); box-shadow: none; }
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 44px; align-items: center; }
.image-panel {
  min-height: 470px;
  border-radius: 32px;
  background:
    linear-gradient(rgba(7,17,31,0.08), rgba(7,17,31,0.34)),
    url('../images/pub-screening.jpg') center/cover;
  box-shadow: var(--shadow);
}
.check-list { list-style: none; display: grid; gap: 14px; margin-top: 24px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 800; }
.check-list li::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--dark);
  font-size: 14px;
  font-weight: 950;
  margin-top: 2px;
}

.cta {
  background:
    radial-gradient(circle at top left, rgba(98,184,50,0.26), transparent 32%),
    linear-gradient(135deg, #07111f, #123a6c);
  color: var(--white);
  border-radius: 36px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta h2 { margin-bottom: 12px; }
.cta p { color: rgba(255,255,255,0.78); font-size: 18px; max-width: 720px; }
.contact-box { background: var(--white); border-radius: 28px; padding: 34px; box-shadow: 0 14px 38px rgba(7,17,31,0.08); }
.contact-box p { color: var(--muted); margin-bottom: 18px; }
.email-link { display: inline-block; font-size: clamp(20px, 4vw, 30px); font-weight: 950; color: var(--blue); letter-spacing: -0.04em; overflow-wrap: anywhere; }
.small-note { font-size: 14px; color: var(--muted); margin-top: 14px; }
footer { background: var(--dark); color: rgba(255,255,255,0.72); padding: 30px 20px; text-align: center; font-size: 14px; }

@media (max-width: 900px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { flex-wrap: wrap; gap: 14px; }
  .hero-inner, .split, .screen-overview, .cta, .gallery { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr 1fr; }
  .cta { padding: 34px; }
}
@media (max-width: 620px) {
  .logo-img { width: 220px; }
  .nav-links a:not(.button) { display: none; }
  .hero-inner { padding-top: 58px; }
  .grid, .spec-grid { grid-template-columns: 1fr; }
  .hero-card img, .screen-photo img, .gallery img { height: 280px; min-height: 280px; }
  .section { padding: 58px 20px; }
}
