/* Svalbergs Bilteknik – Shared Styles */


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --carbon: #0D0D0F;
  --steel: #1A1C22;
  --panel: #22252D;
  --ice: #3DDFFF;
  --ice-dim: rgba(61,223,255,0.12);
  --ice-border: rgba(61,223,255,0.3);
  --tungsten: #C8C0B4;
  --white: #F5F5F5;
  --muted: #6E7380;
  --divider: rgba(255,255,255,0.08);
  --green: #2CB97A;
  --green-dim: rgba(44,185,122,0.12);
  --green-border: rgba(44,185,122,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--carbon);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span { color: var(--ice); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tungsten);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--carbon) !important;
  background: var(--ice);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; color: var(--carbon) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 35%, rgba(61,223,255,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 18% 72%, rgba(61,223,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 35% at 50% 102%, rgba(13,13,15,0.98) 0%, transparent 70%),
    linear-gradient(160deg, rgba(13,13,15,0.3) 0%, rgba(13,13,15,0.92) 100%);
  pointer-events: none;
}

/* particle + waveform canvas */
#waveform {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 1;
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 1.2rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--ice);
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 900px;
  position: relative;
}

.hero h1 .accent { color: var(--ice); }

.hero-sub {
  margin-top: 2rem;
  font-size: 1.05rem;
  color: var(--tungsten);
  max-width: 480px;
  line-height: 1.7;
  position: relative;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

.btn-primary {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--carbon);
  background: var(--ice);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.85; }

.btn-ghost {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--ice); color: var(--ice); }

/* SECTION COMMON */
section { padding: 6rem 2.5rem; }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--ice);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--tungsten);
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* SERVICES */
#tjanster { background: var(--steel); }

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 0;
}

.service-card {
  background: var(--steel);
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 2.2rem 2rem;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

/* Glow blob in corner */
.service-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,223,255,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

/* Bottom accent line */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ice), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  border-color: var(--ice-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(61,223,255,0.08);
  transform: translateY(-3px);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}

.service-card:hover .service-icon {
  opacity: 1;
  transform: scale(1.1);
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  color: var(--white);
  transition: color 0.2s;
}

.service-card:hover h3 { color: var(--ice); }

.service-card p {
  font-size: 0.88rem;
  color: var(--tungsten);
  line-height: 1.7;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.4rem;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ice);
  font-weight: 700;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.service-tag::before {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1px;
  background: var(--ice);
}
.service-card:hover .service-tag { opacity: 1; }

/* WHY US */
#varfor { background: var(--carbon); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
}

.why-visual {
  position: relative;
}

.why-stat-block {
  border-left: 2px solid var(--ice);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.why-stat-block .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--white);
}

.why-stat-block .num span { color: var(--ice); }

.why-stat-block .label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

.why-points { list-style: none; margin-top: 2rem; }

.why-points li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--divider);
  font-size: 0.9rem;
  color: var(--tungsten);
}

.why-points li:last-child { border-bottom: none; }

.why-points li::before {
  content: '—';
  color: var(--ice);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* PROCESS */
#process { background: var(--steel); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

.process-steps::before { display: none; }

.step {
  background: var(--panel);
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 2rem 1.8rem;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.step:hover {
  border-color: var(--ice-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.step-num {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid var(--ice-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ice);
  background: var(--steel);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* CONTACT */
#kontakt { background: var(--carbon); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1000px;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--tungsten);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--tungsten);
}

.contact-item .cicon {
  width: 1.8rem;
  height: 1.8rem;
  background: var(--ice-dim);
  border: 1px solid var(--ice-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .cicon svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: var(--ice);
}

form { display: flex; flex-direction: column; gap: 1rem; }

.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input, textarea, select {
  width: 100%;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}

input::placeholder, textarea::placeholder { color: var(--muted); }

input:focus, textarea:focus, select:focus {
  border-color: var(--ice-border);
}

textarea { resize: vertical; min-height: 130px; }

select { appearance: none; cursor: pointer; }
select option { background: var(--panel); }

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--ice);
  border: none;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--carbon);
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover { opacity: 0.85; }

/* FOOTER */
footer {
  background: var(--steel);
  border-top: 1px solid var(--divider);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

footer .logo span { color: var(--ice); }

footer p {
  font-size: 0.78rem;
  color: var(--muted);
}

footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
}

footer a:hover { color: var(--ice); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4.5rem 1.5rem; }
  .hero { padding: 6rem 1.5rem 4rem; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .process-steps::before { display: none; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .field-group { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 3.2rem; }
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,13,15,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--ice); }
.mobile-menu .m-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--carbon) !important;
  background: var(--ice);
  padding: 0.85rem 2.5rem;
  border-radius: 2px;
  margin-top: 1rem;
}

/* Floating mobile CTA */
.float-cta {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 98;
  background: var(--ice);
  color: var(--carbon);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(61,223,255,0.35);
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s;
}
.float-cta:hover {
  opacity: 0.9;
  box-shadow: 0 6px 30px rgba(61,223,255,0.5);
  transform: scale(1.08);
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .float-cta { display: flex; }
}

.social-link { color: var(--muted); transition: color 0.2s; display:flex;align-items:center; }
.social-link:hover { color: var(--ice); }

/* Floating reviews */
.review-stage {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}
.review-stage::before, .review-stage::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 10;
  pointer-events: none;
}
.review-stage::before { left: 0; background: linear-gradient(to right, var(--carbon), transparent); }
.review-stage::after  { right: 0; background: linear-gradient(to left, var(--carbon), transparent); }

.rv-card {
  position: absolute;
  width: 210px;
  background: var(--steel);
  border: 1px solid rgba(61,223,255,0.15);
  border-radius: 12px;
  padding: 14px;
  cursor: default;
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
  will-change: transform, left;
  user-select: none;
}
.rv-card:hover {
  border-color: rgba(61,223,255,0.5);
  box-shadow: 0 8px 32px rgba(61,223,255,0.12);
  z-index: 50 !important;
  transform: translateY(-6px) rotate(0deg) scale(1.05) !important;
}
.rv-stars { color: #f5a623; font-size: 10px; letter-spacing: 2px; margin-bottom: 7px; }
.rv-text  { font-size: 12px; color: var(--tungsten); line-height: 1.6; margin-bottom: 10px; }
.rv-foot  { display: flex; align-items: center; gap: 7px; }
.rv-av {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--ice-dim); border: 1px solid var(--ice-border);
  color: var(--ice); font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rv-name { font-size: 11px; font-weight: 600; color: var(--white); }
.rv-car  { font-size: 10px; color: var(--muted); }

/* ── Active nav link ─────────────────────────────────────────── */
.nav-links a.active { color: var(--ice); }

/* ── Prislista ───────────────────────────────────────────────── */
main { max-width: 1100px; margin: 0 auto; padding: 5rem 2.5rem; }

.note-bar {
  background: var(--ice-dim);
  border: 1px solid var(--ice-border);
  border-radius: 3px;
  padding: 1rem 1.4rem;
  font-size: 0.85rem;
  color: var(--tungsten);
  margin-bottom: 3.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.note-bar::before {
  content: 'i';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  border: 1px solid var(--ice);
  color: var(--ice);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.price-section {
  margin-bottom: 2.5rem;
  background: var(--steel);
  border: 1px solid var(--divider);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.price-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  padding: 1.1rem 1.8rem;
  background: var(--panel);
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.price-section-title .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ice);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--ice);
}

.price-table { width: 100%; border-collapse: collapse; }
.price-table tr {
  border-bottom: 1px solid var(--divider);
  transition: background 0.15s;
}
.price-table tr:hover { background: rgba(61,223,255,0.03); }
.price-table tr:last-child { border-bottom: none; }
.price-table td { padding: 1.1rem 1.8rem; font-size: 0.9rem; vertical-align: middle; }
.price-table td:first-child { color: var(--white); font-weight: 500; width: 40%; }
.price-table td:nth-child(2) { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }
.price-table td:last-child {
  text-align: right;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ice);
  white-space: nowrap;
  padding-left: 1.5rem;
}

.price-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.badge-popular { background: var(--ice-dim); color: var(--ice); border: 1px solid var(--ice-border); }
.badge-new { background: rgba(44,185,122,0.12); color: #2CB97A; border: 1px solid rgba(44,185,122,0.3); }

@media (max-width: 900px) {
  main { padding: 3.5rem 1.5rem; }
  .price-table td { padding: 1rem 1.2rem; }
  .price-section-title { padding: 1rem 1.2rem; }
  .price-table td:nth-child(2) { display: none; }
}

/* ── Integritetspolicy / Villkor placeholder pages ───────────── */
.policy-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 8rem 2.5rem 5rem;
}
.policy-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.policy-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
  color: var(--white);
}
.policy-content p { color: var(--tungsten); font-size: 0.92rem; line-height: 1.8; margin-bottom: 1rem; }
.policy-content a { color: var(--ice); }

/* ── Contact section on index ────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; max-width: 1000px; }
.contact-info p { font-size: 0.9rem; color: var(--tungsten); margin-bottom: 2.5rem; line-height: 1.75; }
.contact-detail { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── Page hero (all inner pages) ────────────────────────────── */
.page-hero {
  padding: 9rem 2.5rem 5rem;
  background: var(--steel);
  border-bottom: 1px solid var(--divider);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(61,223,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.page-hero-label::before {
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  background: var(--ice);
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.page-hero p {
  margin-top: 1.2rem;
  color: var(--tungsten);
  max-width: 500px;
  font-size: 0.95rem;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .page-hero { padding: 7rem 1.5rem 3.5rem; }
}

/* ── CTA Block ───────────────────────────────────────────────── */
.cta-block {
  background: var(--steel);
  border: 1px solid var(--ice-border);
  border-radius: 6px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  box-shadow:
    0 0 0 1px rgba(61,223,255,0.06),
    0 8px 32px rgba(0,0,0,0.4),
    0 0 60px rgba(61,223,255,0.05);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--ice);
  opacity: 0.7;
}
.cta-block h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.cta-block p {
  color: var(--tungsten);
  font-size: 0.88rem;
  max-width: 420px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .cta-block { flex-direction: column; align-items: flex-start; padding: 2rem; }
}
