/* ═══════════════════════════════════════════════════════
   ROOMBOOK — PLANLÖSNINGSRITNINGEN
   Off-white ritpapper · Blueprint Navy · Guld status
   Barlow Condensed display · DM Mono annotations
   ═══════════════════════════════════════════════════════ */

:root {
  --paper:      #f4f1ea;
  --navy:       #1a2640;
  --tech-blue:  #4a7b9d;
  --gold:       #c8a84b;
  --available:  #3a7a5c;
  --booked:     #2a5580;
  --hairline:   rgba(26,38,64,0.13);
  --muted:      #5a6a7e;
  --white:      #ffffff;
}

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

body {
  background: var(--paper);
  color: var(--navy);
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--navy); }
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--hairline); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: rgba(26,38,64,0.25); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 52px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.125rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--white); text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 0.8125rem; color: rgba(255,255,255,0.6);
  text-decoration: none; font-weight: 500; transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }
.status-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'DM Mono', monospace; font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1px;
  text-decoration: none; transition: border-color 0.15s;
}
.status-pill:hover { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.65); }
.status-lamp { width: 6px; height: 6px; border-radius: 50%; }
.status-lamp.green { background: #4ade80; box-shadow: 0 0 5px rgba(74,222,128,0.5); }
.status-lamp.red { background: #f87171; }
.nav-login {
  color: rgba(255,255,255,0.65) !important;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 5px 14px; border-radius: 1px;
  font-size: 0.8125rem; font-weight: 600;
  transition: border-color 0.15s, color 0.15s;
}
.nav-login:hover { border-color: rgba(255,255,255,0.4); color: var(--white) !important; }
.nav-cta {
  color: var(--navy) !important;
  background: var(--gold);
  padding: 6px 16px; border-radius: 1px;
  font-size: 0.8125rem; font-weight: 700;
  text-decoration: none; letter-spacing: 0.02em;
  transition: background 0.15s;
}
.nav-cta:hover { background: #b8962f; }
.nav-mobile-login {
  display: none;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px; border-radius: 1px;
  font-size: 0.8125rem; font-weight: 600;
  text-decoration: none;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  max-height: 600px;
  border-bottom: 1px solid var(--hairline);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 64px;
  color: var(--white);
  position: relative; z-index: 1;
}
.hero-screenshot {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 48px 40px 48px 0;
}
.hero-screenshot img {
  width: 100%; height: auto;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  display: block;
}
.hero-ref {
  font-family: 'DM Mono', monospace;
  font-size: 0.625rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 18px;
}
.hero-h1 em { color: var(--gold); font-style: normal; }
.hero-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65; margin-bottom: 32px;
}
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  padding: 13px 22px; border-radius: 1px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9375rem; font-weight: 700;
  text-decoration: none; letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.15s, transform 0.1s;
  text-align: center;
}
.btn-primary:hover { background: #b8962f; transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  background: transparent; color: rgba(255,255,255,0.55);
  padding: 11px 22px; border-radius: 1px;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.875rem; font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
  text-align: center;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.38); color: var(--white); }
.hero-cta-group { display: flex; flex-direction: column; gap: 9px; }
.hero-meta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-meta-row {
  display: flex; justify-content: space-between;
  padding: 5px 0;
  font-family: 'DM Mono', monospace; font-size: 0.625rem;
  color: rgba(255,255,255,0.28);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero-meta-row:last-child { border-bottom: none; }
.hero-meta-row strong { color: rgba(255,255,255,0.5); font-weight: 500; }

/* ── SPEC STRIP ── */
.spec-strip { background: var(--white); border-bottom: 1px solid var(--hairline); }
.spec-strip-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  max-width: 1100px; margin: 0 auto;
}
.spec-item {
  padding: 26px 28px;
  border-right: 1px solid var(--hairline);
}
.spec-item:last-child { border-right: none; }
.spec-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 6px;
}
.spec-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.375rem; font-weight: 700;
  color: var(--navy); line-height: 1; margin-bottom: 3px;
}
.spec-detail { font-size: 0.75rem; color: var(--muted); }

/* ── SECTION GENERIC ── */
.section { max-width: 1100px; margin: 0 auto; padding: 80px 40px; }
.section-h2 {
  font-size: clamp(1.625rem,3.5vw,2.25rem);
  margin-bottom: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.section-h2::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
}
.section-sub {
  color: var(--muted); font-size: 0.9375rem;
  max-width: 560px; line-height: 1.65;
  margin-top: -24px; margin-bottom: 40px;
}
.section-sub a { color: var(--tech-blue); text-decoration: none; font-weight: 500; }
.section-sub a:hover { text-decoration: underline; }

/* ── SPEC SHEET (features) ── */
.spec-sheet {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 1px;
  overflow: hidden;
}
.spec-sheet-head {
  display: grid; grid-template-columns: 220px 1fr 100px;
  padding: 12px 24px;
  background: var(--navy);
}
.spec-sheet-head span {
  font-family: 'DM Mono', monospace;
  font-size: 0.5875rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.spec-sheet-head .sh-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}
.spec-row {
  display: grid; grid-template-columns: 220px 1fr 100px;
  padding: 13px 24px;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
  transition: background 0.1s;
}
.spec-row:last-child { border-bottom: none; }
.spec-row:hover { background: rgba(26,38,64,0.02); }
.spec-row.addon { background: rgba(200,168,75,0.04); }
.spec-row.addon:hover { background: rgba(200,168,75,0.07); }
.sr-name {
  font-family: 'DM Mono', monospace;
  font-size: 0.725rem; font-weight: 500;
  color: var(--navy); padding-top: 1px;
}
.sr-desc {
  font-size: 0.8125rem; color: var(--muted);
  line-height: 1.5; padding-right: 20px;
}
.sr-desc a { color: var(--tech-blue); text-decoration: none; }
.sr-desc a:hover { text-decoration: underline; }
.sr-mark {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.07em;
  color: var(--available); font-weight: 500;
  text-align: right; padding-top: 2px;
}
.sr-mark.addon-mark { color: var(--gold); }

/* ── WHY (dark band) ── */
.why-bg { background: var(--navy); }
.why-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.why-h2 {
  font-size: clamp(1.625rem,3.5vw,2.25rem);
  color: var(--white);
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.why-h2::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
}
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.why-card {
  padding: 40px 36px 52px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.why-card:last-child { border-right: none; }
.why-seq {
  font-family: 'DM Mono', monospace;
  font-size: 0.625rem; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 18px;
}
.why-card h3 {
  font-size: 1.1875rem; color: var(--white);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.8125rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.why-card a { color: var(--tech-blue); text-decoration: none; }
.why-card a:hover { text-decoration: underline; }
.why-footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.why-footer img {
  width: 100%; border-radius: 1px;
  max-height: 340px; object-fit: cover; display: block;
}

/* ── INTEGRATIONS ── */
.int-bg { background: var(--white); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.int-card {
  max-width: 820px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 180px;
  gap: 40px; align-items: center;
  padding: 48px 40px;
}
.int-badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.1em;
  color: var(--tech-blue);
  border: 1px solid var(--hairline);
  padding: 3px 8px; border-radius: 1px;
  margin-bottom: 16px;
}
.int-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.int-card p { font-size: 0.8125rem; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.int-card a { color: var(--tech-blue); text-decoration: none; font-weight: 500; }
.int-card a:hover { text-decoration: underline; }
.int-logo {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 1px;
  padding: 28px 20px;
  text-align: center;
}
.int-logo svg { width: 64px; height: 64px; }

/* ── HOW IT WORKS ── */
.how-bg { background: var(--paper); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.how-inner { max-width: 1100px; margin: 0 auto; padding: 80px 40px; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.step {
  padding: 0 32px 40px;
  border-right: 1px solid var(--hairline);
}
.step:first-child { padding-left: 0; }
.step:last-child { border-right: none; padding-right: 0; }
.step-num {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.625rem; letter-spacing: 0.08em;
  color: var(--tech-blue);
  margin-bottom: 18px;
  border-bottom: 1px solid var(--tech-blue);
  padding-bottom: 3px;
  width: 32px;
}
.step h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.step p { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; }
.step p a { color: var(--tech-blue); text-decoration: none; }
.step p a:hover { text-decoration: underline; }
.step-note {
  display: block; margin-top: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; color: var(--gold); letter-spacing: 0.05em;
}

/* ── USE CASES ── */
.use-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--hairline);
  border-radius: 1px; overflow: hidden;
}
.use-item {
  padding: 26px 28px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--white);
  transition: background 0.12s;
}
.use-item:hover { background: rgba(74,123,157,0.04); }
.use-item:nth-child(3n) { border-right: none; }
.use-item:nth-last-child(-n+3) { border-bottom: none; }
.use-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--tech-blue);
  margin-bottom: 7px;
}
.use-item h3 { font-size: 0.9375rem; margin-bottom: 6px; }
.use-item p { font-size: 0.8rem; color: var(--muted); line-height: 1.55; }
.use-item a { color: var(--tech-blue); text-decoration: none; font-weight: 500; }
.use-item a:hover { text-decoration: underline; }
.use-cases-img {
  width: 100%; border-radius: 1px; object-fit: cover;
  max-height: 340px; display: block;
  margin-bottom: 32px;
  border: 1px solid var(--hairline);
}

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--hairline);
  border-radius: 1px; overflow: hidden;
}
.pricing-card {
  padding: 32px 28px;
  border-right: 1px solid var(--hairline);
  background: var(--white);
}
.pricing-card:last-child { border-right: none; }
.pricing-card.featured { background: var(--navy); }
.pricing-plan-ref {
  font-family: 'DM Mono', monospace;
  font-size: 0.575rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tech-blue); margin-bottom: 4px;
}
.pricing-card.featured .pricing-plan-ref { color: var(--gold); }
.pricing-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.375rem; font-weight: 700; margin-bottom: 16px;
}
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem; font-weight: 700; line-height: 1;
  color: var(--navy); margin-bottom: 3px;
}
.pricing-card.featured .pricing-amount { color: var(--white); }
.pricing-period { font-size: 0.75rem; color: var(--muted); margin-bottom: 8px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.45); }
.pricing-tagline {
  font-size: 0.8rem; color: var(--muted); line-height: 1.5;
  margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline); min-height: 48px;
}
.pricing-card.featured .pricing-tagline { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.1); }
.pricing-list { list-style: none; margin-bottom: 28px; }
.pricing-list li {
  padding: 6px 0; font-size: 0.8rem;
  border-bottom: 1px solid rgba(26,38,64,0.05);
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.45;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-card.featured .pricing-list li { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.07); }
.p-check { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--available); flex-shrink: 0; margin-top: 1px; }
.pricing-card.featured .p-check { color: var(--gold); }
.pricing-card .btn-primary { display: block; width: 100%; }
.p-action-sec {
  display: block; text-align: center;
  padding: 11px; border: 1px solid var(--hairline);
  border-radius: 1px; font-size: 0.8125rem; font-weight: 600;
  color: var(--navy); text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.p-action-sec:hover { border-color: var(--navy); background: rgba(26,38,64,0.03); }
.pricing-note {
  text-align: center; margin-top: 18px;
  font-family: 'DM Mono', monospace; font-size: 0.625rem;
  color: var(--muted); letter-spacing: 0.04em;
}
.pricing-note span { margin: 0 5px; }

/* ── FAQ ── */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 17px 0; font-size: 0.9375rem; font-weight: 600;
  color: var(--navy); cursor: pointer; user-select: none;
}
.faq-icon {
  font-family: 'DM Mono', monospace; font-size: 1rem;
  color: var(--tech-blue); flex-shrink: 0; line-height: 1;
}
.faq-a {
  padding-bottom: 17px; font-size: 0.8125rem;
  color: var(--muted); line-height: 1.65;
}
.faq-a a { color: var(--tech-blue); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }

/* ── SUPPORT ── */
.support-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--hairline); border-radius: 1px; overflow: hidden;
  margin-bottom: 0;
}
.support-img { width: 100%; height: 100%; object-fit: cover; display: block; max-height: 380px; }
.support-copy {
  padding: 52px 48px; background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.support-ref {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.1em; color: var(--tech-blue); margin-bottom: 16px;
}
.support-copy h2 { font-size: 1.875rem; margin-bottom: 14px; }
.support-copy p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }

/* ── CTA BOX ── */
.cta-box {
  background: var(--navy);
  padding: 72px 40px; text-align: center;
  margin: 64px 40px;
  border-radius: 1px;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.cta-box h2 { font-size: clamp(1.5rem,3.5vw,2.5rem); color: var(--white); margin-bottom: 14px; position: relative; }
.cta-box p { font-size: 0.9375rem; color: rgba(255,255,255,0.6); max-width: 460px; margin: 0 auto 32px; line-height: 1.65; position: relative; }
.cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-note { margin-top: 18px; font-family: 'DM Mono', monospace; font-size: 0.625rem; color: rgba(255,255,255,0.28); letter-spacing: 0.04em; position: relative; }
.cta-note span { margin: 0 5px; }

.btn-cta-sec {
  display: inline-block;
  background: transparent; color: rgba(255,255,255,0.65);
  padding: 13px 22px; border-radius: 1px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9375rem; font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-cta-sec:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--hairline);
  padding: 24px 40px;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white);
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-family: 'DM Mono', monospace; font-size: 0.6875rem; color: var(--muted); }
.footer-copy a { color: var(--tech-blue); text-decoration: none; }
footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
footer nav a { font-size: 0.75rem; color: var(--muted); text-decoration: none; transition: color 0.15s; }
footer nav a:hover { color: var(--navy); }
.footer-version { font-family: 'DM Mono', monospace; font-size: 0.575rem; color: rgba(26,38,64,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; max-height: none; }
  .hero-screenshot { display: none; }
  .hero-content { padding: 40px 32px; }
  .hero-meta { display: none; }
  .spec-strip-inner { grid-template-columns: repeat(2,1fr); }
  .spec-item:nth-child(2) { border-right: none; }
  .spec-item:nth-child(3) { border-top: 1px solid var(--hairline); }
  .spec-item:nth-child(4) { border-top: 1px solid var(--hairline); border-right: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .why-card:last-child { border-bottom: none; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .step { border-bottom: 1px solid var(--hairline); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(3) { border-bottom: none; }
  .step:nth-child(4) { border-right: none; border-bottom: none; }
  .support-wrap { grid-template-columns: 1fr; }
  .int-card { grid-template-columns: 1fr; }
  .spec-sheet-head { grid-template-columns: 180px 1fr 90px; }
  .spec-row { grid-template-columns: 180px 1fr 90px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-login { display: block; }
  .nav { padding: 0 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { border-right: none; border-bottom: 1px solid var(--hairline); }
  .pricing-card:last-child { border-bottom: none; }
  .use-grid { grid-template-columns: repeat(2,1fr); }
  .use-item:nth-child(3n) { border-right: 1px solid var(--hairline); }
  .use-item:nth-child(2n) { border-right: none; }
  .section { padding: 56px 20px; }
  .cta-box { margin: 48px 20px; padding: 48px 24px; }
  footer { flex-direction: column; text-align: center; }
  .spec-sheet-head { grid-template-columns: 140px 1fr; }
  .spec-sheet-head .sh-mark { display: none; }
  .spec-row { grid-template-columns: 140px 1fr; }
  .sr-mark { display: none; }
  .how-inner { padding: 56px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none !important; border-bottom: 1px solid var(--hairline); padding: 28px 0; }
  .step:last-child { border-bottom: none; }
  .int-card { padding: 36px 20px; }
  .why-inner { padding: 0 20px; }
}

@media (max-width: 480px) {
  .use-grid { grid-template-columns: 1fr; }
  .use-item { border-right: none !important; }
  .use-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--hairline); }
  .use-item:last-child { border-bottom: none; }
}
