 /* ===== CSS VARIABLES ===== */
    :root {
      --accent:        #3e5799;
      --accent-dark:   #2d4080;
      --accent-light:  #eef1f9;
      --accent-mid:    #6a81b8;
      --bg:            #f8f9fc;
      --bg-white:      #ffffff;
      --bg-section:    #f1f4fb;
      --text-main:     #1a1f36;
      --text-muted:    #5a6380;
      --text-light:    #8a93ad;
      --border:        #dde3f0;
      --shadow-sm:     0 2px 12px rgba(62,87,153,.08);
      --shadow-md:     0 6px 30px rgba(62,87,153,.13);
      --shadow-lg:     0 16px 48px rgba(62,87,153,.16);
      --radius:        12px;
      --radius-lg:     20px;
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--bg);
      color: var(--text-main);
      font-size: 15px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      line-height: 1.25;
      color: var(--text-main);
    }

    a { color: var(--accent); text-decoration: none; }
    a:hover { color: var(--accent-dark); }

    img { max-width: 100%; height: auto; }

    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: .5rem;
    }

    .section-title span { color: var(--accent); }

    .section-sub {
      color: var(--text-muted);
      font-size: .95rem;
      max-width: 560px;
      margin: 0 auto 3rem;
    }

    /* ===== NAVBAR ===== */
.navbar {
  background: var(--bg-white);
  box-shadow: 0 2px 16px rgba(62, 87, 153, .09);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1050;
}

.navbar-inner {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: .9rem 0;
  gap: 24px;
}

.navbar-nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Лого — слева */
.navbar-logo {
  justify-self: start;
  flex-shrink: 0;
}


/* Правая часть */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
  flex-shrink: 0;
}

.navbar-logo img {
  display: block;
  max-height: 60px; /* подгони под себя */
  width: auto;
}
    .navbar-nav-desktop li a {
      font-size: .875rem;
      font-weight: 600;
      color: var(--text-main);
      padding: .45rem .8rem;
      border-radius: 8px;
      transition: background .2s, color .2s;
      white-space: nowrap;
    }

    .navbar-nav-desktop li a:hover {
      background: var(--accent-light);
      color: var(--accent);
    }

    .navbar-right {
      display: flex;
      align-items: center;
      gap: .9rem;
      white-space: nowrap;
    }

    .navbar-phone {
      display: flex;
      align-items: center;
      gap: .45rem;
      font-size: .875rem;
      font-weight: 700;
      color: var(--text-main);
      transition: color .2s;
    }

    .navbar-phone:hover { color: var(--accent); }
    .navbar-phone i { color: var(--accent); font-size: 1rem; }

    .btn-book {
      background: var(--accent);
      color: #fff !important;
      border-radius: 8px;
      padding: .55rem 1.25rem;
      font-size: .875rem;
      font-weight: 700;
      transition: background .2s, box-shadow .2s, transform .15s;
      border: none;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: .4rem;
    }

    .btn-book:hover {
      background: var(--accent-dark);
      box-shadow: 0 4px 16px rgba(62,87,153,.3);
      transform: translateY(-1px);
      color: #fff !important;
    }

    .navbar-toggler-custom {
      display: none;
      background: none;
      border: none;
      padding: .4rem;
      cursor: pointer;
      color: var(--accent);
      font-size: 1.5rem;
    }

    @media (max-width: 991px) {
      .navbar-nav-desktop { display: none; }
      .navbar-right { display: none; }
      .navbar-toggler-custom { display: block; }
    }

    /* ===== OFFCANVAS ===== */
    .offcanvas {
      max-width: 300px;
      background: var(--bg-white);
      border-right: 1px solid var(--border);
    }

    .offcanvas-header {
      border-bottom: 1px solid var(--border);
      padding: 1.25rem 1.5rem;
    }

    .offcanvas-header img { height: 38px; }

    .offcanvas-body { padding: 1.5rem; }

    .offcanvas-nav {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem;
    }

    .offcanvas-nav li a {
      display: block;
      padding: .7rem 1rem;
      font-weight: 600;
      font-size: .95rem;
      color: var(--text-main);
      border-radius: 8px;
      transition: background .2s, color .2s;
    }

    .offcanvas-nav li a:hover {
      background: var(--accent-light);
      color: var(--accent);
    }

    .btn-close-offcanvas {
      background: none;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: .35rem .6rem;
      color: var(--text-muted);
      font-size: 1.1rem;
      cursor: pointer;
      transition: background .2s;
    }

    .btn-close-offcanvas:hover { background: var(--bg-section); }

    /* ===== HERO ===== */
    .hero {
      background: linear-gradient(135deg, #eef1f9 0%, #dce4f5 50%, #c9d5f0 100%);
      padding: 90px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(62,87,153,.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(62,87,153,.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-badge {
      display: inline-block;
      background: rgba(62,87,153,.12);
      color: var(--accent);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .35rem 1rem;
      border-radius: 50px;
      margin-bottom: 1.2rem;
    }

    .hero h1 {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    .hero p.lead {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 520px;
      margin-bottom: 1.8rem;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem 1.5rem;
      margin-bottom: 2rem;
      font-size: .82rem;
      font-weight: 600;
      color: var(--text-muted);
    }

    .hero-meta span { display: flex; align-items: center; gap: .4rem; }
    .hero-meta span i { color: var(--accent); }

    .hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

    .btn-primary-accent {
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: .85rem 2rem;
      font-weight: 700;
      font-size: .95rem;
      font-family: 'Montserrat', sans-serif;
      transition: background .2s, transform .15s, box-shadow .2s;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
    }

    .btn-primary-accent:hover {
      background: var(--accent-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-outline-accent {
      background: transparent;
      color: var(--accent);
      border: 2px solid var(--accent);
      border-radius: 10px;
      padding: .8rem 1.8rem;
      font-weight: 700;
      font-size: .95rem;
      font-family: 'Montserrat', sans-serif;
      transition: background .2s, color .2s;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
    }

    .btn-outline-accent:hover {
      background: var(--accent);
      color: #fff;
    }

    .phone-link {
      display: flex;
      align-items: center;
      gap: .6rem;
      font-weight: 700;
      font-size: 1rem;
      color: var(--accent);
    }

    .phone-link img { width: 20px; filter: invert(30%) sepia(60%) saturate(600%) hue-rotate(195deg); }

    .hero-img-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .hero-img-wrap img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
    }

    .hero-img-wrap video {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .hero-img-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(255,255,255,.95);
      backdrop-filter: blur(8px);
      border-radius: 12px;
      padding: .7rem 1.1rem;
      font-size: .82rem;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: .5rem;
      box-shadow: var(--shadow-sm);
    }

    .hero-img-badge i { color: var(--accent); font-size: 1.1rem; }

    /* ===== WHY CHOOSE US ===== */
    .why-section {
      padding: 90px 0;
      background: var(--bg-white);
    }

    .why-img-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    .why-img-wrap img {
      width: 100%;
      height: 600px;
      object-fit: cover;
    }

    .why-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0 2.5rem;
    }

    .why-list li {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      padding: .7rem 0;
      border-bottom: 1px solid var(--border);
      font-size: .95rem;
      font-weight: 500;
    }

    .why-list li:last-child { border-bottom: none; }

    .why-list li .icon-check {
      width: 22px; height: 22px;
      background: var(--accent-light);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .why-list li .icon-check i { color: var(--accent); font-size: .7rem; font-weight: 900; }

    .xpel-wrap {
      margin-top: 1.5rem;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
    }

    .xpel-wrap img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    /* ===== SERVICES ===== */
    .services-section {
      padding: 90px 0;
      background: var(--bg-section);
    }

    .service-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
      height: 100%;
      transition: transform .25s, box-shadow .25s;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    .service-card-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .service-card-body { padding: 1.8rem; }

    .service-card-body h3 {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--accent);
      margin-bottom: .4rem;
    }

    .service-card-body h4 {
      font-size: .9rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: .9rem;
    }

    .service-ul {
      list-style: none;
      padding: 0;
      margin: 0 0 1rem;
    }

    .service-ul li {
      display: flex;
      align-items: flex-start;
      gap: .6rem;
      font-size: .875rem;
      color: var(--text-muted);
      padding: .3rem 0;
    }

    .service-ul li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

    .service-conclusion {
      font-size: .82rem;
      font-weight: 700;
      color: var(--accent);
      font-style: italic;
      padding-top: .8rem;
      border-top: 1px solid var(--border);
      margin-bottom: 1rem;
    }

    .btn-service-book {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .45rem;
      width: 100%;
      background: var(--accent-light);
      color: var(--accent);
      border: 1.5px solid var(--accent);
      border-radius: 9px;
      padding: .65rem 1rem;
      font-size: .85rem;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      transition: background .2s, color .2s, box-shadow .2s;
      text-decoration: none;
    }

    .btn-service-book:hover {
      background: var(--accent);
      color: #fff;
      box-shadow: var(--shadow-sm);
    }

    /* ===== ADVANTAGES ===== */
    .advantages-section {
      padding: 90px 0;
      background: var(--bg-white);
    }

    .adv-card {
      background: var(--bg-section);
      border-radius: var(--radius-lg);
      padding: 2rem 1.75rem;
      height: 100%;
      border: 1px solid var(--border);
      transition: transform .25s, box-shadow .25s, background .2s;
      position: relative;
      overflow: hidden;
    }

    .adv-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 100%;
      background: var(--accent);
      border-radius: 4px 0 0 4px;
      opacity: 0;
      transition: opacity .2s;
    }

    .adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--bg-white); }
    .adv-card:hover::before { opacity: 1; }

    .adv-icon {
      width: 52px; height: 52px;
      background: var(--accent-light);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.2rem;
    }

    .adv-icon i { color: var(--accent); font-size: 1.4rem; }

    .adv-card h4 {
      font-size: 1rem;
      font-weight: 800;
      margin-bottom: .6rem;
    }

    .adv-card p {
      font-size: .875rem;
      color: var(--text-muted);
      margin: 0;
    }

    .adv-cta {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
      color: #fff;
      border-radius: var(--radius-lg);
      padding: 3rem 2.5rem;
      text-align: center;
      margin-top: 3rem;
    }

    .adv-cta h3 { color: #fff; font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; }

    /* ===== HOW IT WORKS ===== */
    .how-section {
      padding: 90px 0;
      background: var(--bg-section);
    }

    .how-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
    }

    .how-step-img-wrap {
      width: 100px; height: 100px;
      background: var(--bg-white);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1rem;
      box-shadow: var(--shadow-md);
      border: 3px solid var(--border);
      overflow: hidden;
      position: relative;
      z-index: 1;
    }

    .how-step-img-wrap img { width: 64px; height: 64px; object-fit: contain; }

    .how-step-number {
      position: absolute;
      top: -6px; right: -6px;
      width: 26px; height: 26px;
      background: var(--accent);
      color: #fff;
      border-radius: 50%;
      font-size: .72rem;
      font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      z-index: 2;
    }

    .how-step h3 {
      font-size: .875rem;
      font-weight: 700;
      color: var(--text-main);
      line-height: 1.4;
    }

    .how-connector {
      position: absolute;
      top: 50px;
      right: -50%;
      width: 100%;
      height: 2px;
      background: var(--border);
      z-index: 0;
    }

    /* ===== REVIEWS CAROUSEL ===== */
    .reviews-section {
      padding: 90px 0;
      background: var(--bg-white);
    }

    .reviews-carousel-wrap { position: relative; padding: 0 48px; }

    .reviews-track-outer { overflow: hidden; }

    .reviews-track {
      display: flex;
      gap: 24px;
      transition: transform .45s cubic-bezier(.4,0,.2,1);
    }

    .review-card {
      background: var(--bg-section);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      border: 1px solid var(--border);
      flex: 0 0 calc(33.333% - 16px);
      min-width: 0;
      transition: box-shadow .25s;
    }

    @media (max-width: 991px) {
      .review-card { flex: 0 0 calc(50% - 12px); }
    }

    @media (max-width: 599px) {
      .review-card { flex: 0 0 100%; }
      .reviews-carousel-wrap { padding: 0 40px; }
    }

    .review-card:hover { box-shadow: var(--shadow-md); }

    .review-source {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: .9rem;
    }

    .review-name {
      font-size: .95rem;
      font-weight: 800;
      margin-bottom: .5rem;
    }

    .review-stars { color: #f5a623; font-size: 1rem; margin-bottom: .8rem; }

    .review-text {
      font-size: .875rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px; height: 40px;
      background: var(--bg-white);
      border: 1.5px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      color: var(--accent);
      font-size: 1.1rem;
      transition: background .2s, box-shadow .2s, border-color .2s;
      z-index: 2;
    }

    .carousel-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: var(--shadow-sm); }
    .carousel-btn:disabled { opacity: .35; cursor: default; pointer-events: none; }
    .carousel-btn.prev { left: 0; }
    .carousel-btn.next { right: 0; }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 1.8rem;
    }

    .carousel-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--border);
      border: none;
      cursor: pointer;
      transition: background .2s, transform .2s;
      padding: 0;
    }

    .carousel-dot.active { background: var(--accent); transform: scale(1.25); }

    /* ===== CONTACT ===== */
    .contact-section {
      padding: 90px 0;
      background: var(--bg-section);
    }

    .contact-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border);
    }

    .contact-card h2 { font-size: 1.5rem; margin-bottom: .4rem; }
    .contact-card p { color: var(--text-muted); margin-bottom: 2rem; }

    .form-control, .form-select {
      font-family: 'Montserrat', sans-serif;
      font-size: .875rem;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: .75rem 1rem;
      color: var(--text-main);
      background: var(--bg);
      transition: border-color .2s, box-shadow .2s;
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(62,87,153,.12);
      background: var(--bg-white);
    }

    .form-label {
      font-size: .8rem;
      font-weight: 700;
      color: var(--text-muted);
      margin-bottom: .35rem;
    }

    .file-upload-area {
      border: 2px dashed var(--border);
      border-radius: 10px;
      padding: 1.5rem;
      text-align: center;
      cursor: pointer;
      transition: border-color .2s, background .2s;
    }

    .file-upload-area:hover { border-color: var(--accent); background: var(--accent-light); }

    .file-upload-area i { font-size: 1.6rem; color: var(--accent); margin-bottom: .4rem; }
    .file-upload-area p { font-size: .82rem; color: var(--text-muted); margin: 0; }
    .file-upload-area input { display: none; }

    .btn-submit {
      background: var(--accent);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: .85rem 2.5rem;
      font-weight: 700;
      font-size: .95rem;
      font-family: 'Montserrat', sans-serif;
      width: 100%;
      transition: background .2s, transform .15s, box-shadow .2s;
    }

    .btn-submit:hover {
      background: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
      color: #fff;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--text-main);
      color: rgba(255,255,255,.75);
      padding: 60px 0 0;
    }

    footer .footer-logo img { height: 60px; margin-bottom: 1rem; }

    footer p { font-size: .875rem; line-height: 1.6; }

    .footer-nav {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-nav h6 {
      color: #fff;
      font-weight: 800;
      font-size: .8rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      margin-bottom: 1.1rem;
    }

    .footer-nav li a {
      color: rgba(255,255,255,.65);
      font-size: .875rem;
      display: block;
      padding: .3rem 0;
      transition: color .2s;
    }

    .footer-nav li a:hover { color: #fff; }

    .footer-contact a {
      display: flex;
      align-items: center;
      gap: .6rem;
      color: rgba(255,255,255,.65);
      font-size: .875rem;
      padding: .35rem 0;
      transition: color .2s;
    }

    .footer-contact a:hover { color: #fff; }
    .footer-contact img { width: 18px; filter: brightness(0) invert(.7); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 1.2rem 0;
      margin-top: 3rem;
      font-size: .8rem;
      color: rgba(255,255,255,.4);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: .5rem;
    }

    .footer-bottom a { color: rgba(255,255,255,.5); }
    .footer-bottom a:hover { color: #fff; }

    /* ===== UTILITIES ===== */
    .badge-accent {
      background: var(--accent-light);
      color: var(--accent);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      padding: .3rem .85rem;
      border-radius: 50px;
      display: inline-block;
      margin-bottom: 1rem;
    }

    /* ===== SCROLL ANIMATIONS ===== */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .55s ease, transform .55s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: none;
    }
@media (max-width: 991.98px) {

  .navbar-inner {
    grid-template-columns: auto auto;
    align-items: center;
  }

  /* логотип слева */
  .navbar-logo {
    justify-self: start;
  }

  /* кнопка справа */
  .navbar-toggler-custom {
    display: flex;
    justify-self: end;
    align-items: center;
    font-size: 28px;
    background: none;
    border: 0;
  }

  /* скрываем десктоп */
  .navbar-nav-desktop,
  .navbar-right {
    display: none;
  }
}
    /* ===== RESPONSIVE ===== */
    @media (max-width: 767px) {
      .hero { padding: 60px 0 50px; }
      .hero h1 { font-size: 1.9rem; }
      .hero-img-wrap img { height: 260px; }
      .why-img-wrap img { height: 260px; }
      .section-title { font-size: 1.5rem; }
      .adv-cta { padding: 2rem 1.5rem; }
      .contact-card { padding: 1.5rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .hero-img-wrap video {
    height: 200px;
}
.hero-img-badge {
    display: none;
}
.why-img-wrap {
    margin-top: 30px;
}
}

.spec-table {
  font-size: .8rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-main);
}

.spec-table thead th {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-color: var(--border);
  white-space: nowrap;
}

.spec-table tbody td {
  border-color: var(--border);
  padding: .45rem .75rem;
  vertical-align: middle;
}

.spec-table tbody tr:nth-child(even) td {
  background: var(--bg-section);
}

.spec-table tbody td:last-child {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}