:root {
      --bg: #eceef2;
      --card: #ffffff;
      --ink: #171a1f;
      --muted: #535a65;
      --red: #bf121c;
      --red-dark: #941017;
      --line: #d9dde4;
      --radius: 14px;
      --shadow: 0 12px 30px rgba(17, 20, 27, 0.12);
      --wrap: min(1180px, calc(100% - 36px));
    }
    * { box-sizing: border-box; }
    html, body {
      margin: 0;
      padding: 0;
      background: var(--bg);
      color: var(--ink);
      font-family: "Montserrat", sans-serif;
      scroll-behavior: smooth;
    }
    a { color: inherit; text-decoration: none; }
    .wrap { width: var(--wrap); margin: 0 auto; }
    .topbar {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(251, 252, 254, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--line);
    }
    .topbar-row {
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .logo { height: 74px; width: auto; }
    .menu {
      display: flex;
      align-items: center;
      gap: 18px;
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #21252c;
    }
    .menu a {
      border-bottom: 2px solid transparent;
      padding: 6px 2px;
      transition: border-color 0.2s ease, color 0.2s ease;
    }
    .menu a:hover,
    .menu a:focus-visible,
    .menu .active {
      color: #111318;
      border-color: var(--red);
    }
    .cta-top {
      padding: 12px 15px;
      border-radius: 8px;
      background: var(--red);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      box-shadow: 0 8px 20px rgba(191, 18, 28, 0.3);
    }
    .hero {
      height: 540px;
      min-height: 540px;
      background-image: linear-gradient(90deg, rgba(19, 21, 25, 0.93) 0%, rgba(22, 25, 31, 0.74) 100%), url("/assets/img/camionpluma.jpg");
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
    }
    .hero-box { width: var(--wrap); margin: 0 auto; color: #fff; padding: 42px 0 108px; }
    .hero h1 {
      margin: 0;
      max-width: 840px;
      font-size: clamp(34px, 4.8vw, 60px);
      line-height: 0.96;
      text-transform: uppercase;
    }
    .hero p {
      margin: 18px 0 0;
      max-width: 780px;
      font-size: clamp(15px, 1.5vw, 22px);
      line-height: 1.45;
      color: #ebeff7;
    }
    .hero h1,
    .hero p {
      text-align: left;
    }
    .section {
      width: var(--wrap);
      margin: 18px auto 0;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px;
      box-shadow: var(--shadow);
    }
    .title {
      margin: 0 0 10px;
      font-family: "Rajdhani", sans-serif;
      text-transform: uppercase;
      font-size: clamp(34px, 3.2vw, 52px);
      line-height: 0.9;
      color: #161920;
    }
    .lead { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
    .grid { width: var(--wrap); margin: 16px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
    .card h3 { margin: 0 0 8px; color: #a9101b; font-size: 20px; }
    .card p { margin: 0; color: #31363f; font-size: 14px; line-height: 1.58; }
    .info { width: var(--wrap); margin: 16px auto 0; background: #1e232b; color: #ecf1fb; border-radius: var(--radius); padding: 22px; }
    .info h2 { margin: 0 0 8px; font-family: "Rajdhani", sans-serif; text-transform: uppercase; font-size: clamp(30px, 3vw, 44px); }
    .info p { margin: 0 0 10px; line-height: 1.6; font-size: 14px; }
    .info p:last-child { margin-bottom: 0; }
    .actions { width: var(--wrap); margin: 16px auto 28px; display: flex; gap: 10px; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 14px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .btn-main { background: var(--red); color: #fff; }
    .btn-lite { border: 1px solid #c9d2df; background: #fff; color: #222a34; }
    @media (max-width: 1200px) { .menu { display: none; } }
    @media (max-width: 940px) { .grid { grid-template-columns: 1fr; } }
    @media (max-width: 680px) {
      :root { --wrap: min(1180px, calc(100% - 22px)); }
      .logo { height: 58px; }
      .hero-box { padding-bottom: 90px; }
      .actions { flex-direction: column; }
      .btn { width: 100%; }
    }