:root {
  --bg: #07090d;
  --bg2: #0e1218;
  --panel: #121821;
  --panel2: #18202a;
  --line: #2a3440;
  --text: #f2f5f8;
  --muted: #a9b3bd;
  --soft: #dbe1e7;
  --steel: #b9c3cc;
  --silver: #e8edf2;
  --accent: #9da8b4;
  --accent2: #697683;
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.62;
  overflow-x: hidden
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

button,
input,
textarea {
  font: inherit
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto
}

.eyebrow {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 800
}

.lead {
  font-size: 1.13rem;
  color: #c8d0d8;
  max-width: 720px
}

.muted {
  color: var(--muted)
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(7, 9, 13, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 237, 242, .08)
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px
}

.logo {
  display: flex;
  align-items: center;
  min-width: 220px
}

.logo img {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .4))
}

.menu {
  display: flex;
  gap: 20px;
  align-items: center
}

.menu a {
  font-size: .92rem;
  color: #d7dde3
}

.menu a:hover {
  color: white
}

.header-cta {
  display: flex;
  gap: 10px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(232, 237, 242, .18);
  border-radius: 999px;
  padding: 13px 20px;
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 12px 42px rgba(0, 0, 0, .18);
  transition: .22s
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 237, 242, .38);
  background: rgba(255, 255, 255, .08)
}

.btn.primary {
  background: linear-gradient(135deg, #f0f4f8, #9aa6b2 48%, #4b5561);
  color: #05070a;
  border: 0
}

.btn.dark {
  background: #0b0f15
}

.hamb {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 30px
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  padding: 128px 0 70px;
  background: #07090d
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 9, 13, .94) 0%, rgba(7, 9, 13, .84) 42%, rgba(7, 9, 13, .55) 72%, rgba(7, 9, 13, .72) 100%), url('../img/hero-steel-line.webp') center/cover no-repeat;
  z-index: -2
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(0deg, var(--bg), transparent);
  z-index: -1
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .65fr;
  gap: 48px;
  align-items: end
}

.hero h1 {
  font-size: clamp(2.6rem, 5.3vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.06em;
  margin: 18px 0 24px
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, #fff, #dbe3ea 45%, #828d99);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px
}

.tag {
  border: 1px solid rgba(232, 237, 242, .18);
  background: rgba(255, 255, 255, .06);
  padding: 9px 12px;
  border-radius: 999px;
  color: #dce3ea;
  font-size: .88rem
}

.hero-panel {
  border: 1px solid rgba(232, 237, 242, .12);
  background: linear-gradient(180deg, rgba(24, 32, 42, .78), rgba(9, 12, 17, .78));
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow)
}

.hero-panel strong {
  display: block;
  font-size: 2.6rem;
  line-height: 1;
  color: white
}

.hero-panel p {
  color: #b8c2cb;
  margin: .4rem 0 0
}

.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px
}

.mini-stat {
  border: 1px solid rgba(232, 237, 242, .1);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, .04)
}

section {
  padding: 92px 0
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -.045em;
  margin: 12px 0
}

.grid {
  display: grid;
  gap: 20px
}

.services {
  grid-template-columns: repeat(4, 1fr)
}

.card {
  border: 1px solid rgba(232, 237, 242, .1);
  background: linear-gradient(180deg, rgba(24, 32, 42, .92), rgba(12, 16, 22, .96));
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, .24);
  position: relative;
  overflow: hidden
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(232, 237, 242, .11), transparent 30%);
  pointer-events: none
}

.card .icon {
  justify-self: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(232, 237, 242, .14);
  background: rgba(255, 255, 255, .05);
  padding: 10px;
  margin-bottom: 18px;
  align-items: center


}

.card h3 {
  justify-self: center;
  font-size: 1.18rem;
  margin: 0 0 10px
}

.card p {
  color: #b6c0ca;
  margin: 0 0 18px
}

.card a {
  font-weight: 800;
  color: #f3f6f9
}

.card-img {
  padding: 0
}

.card-img img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  opacity: .88
}

.card-img .inner {
  padding: 24px
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center
}

.media-box {
  border: 1px solid rgba(232, 237, 242, .1);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111
}

.media-box img {
  max-height: 520px;
  max-width: 95%;
  object-fit: cover
}

.features {
  grid-template-columns: repeat(3, 1fr)
}

.feature {
  padding: 22px;
  border-left: 1px solid rgba(232, 237, 242, .16);
  background: linear-gradient(90deg, rgba(255, 255, 255, .04), transparent);
  border-radius: 18px
}

.feature b {
  display: block;
  color: white;
  margin-bottom: 6px
}

.band {
  background: linear-gradient(135deg, #111821, #0a0d12);
  border-block: 1px solid rgba(232, 237, 242, .09)
}

.band .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center
}

.silver-text {
  background: linear-gradient(135deg, #fff, #c7d0d9 48%, #6c7782);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gallery {
  grid-template-columns: repeat(3, 1fr)
}

.gallery figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(232, 237, 242, .1);
  background: #111923
}

.gallery img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  transition: .3s
}

.gallery figure:hover img {
  transform: scale(1.04);
  opacity: .9
}

.gallery figcaption {
  padding: 14px 16px;
  color: #d7dee5;
  font-weight: 800;
  font-size: .95rem
}

.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 26px
}

.filter {
  border: 1px solid rgba(232, 237, 242, .16);
  padding: 9px 13px;
  border-radius: 999px;
  color: #d9e0e6;
  background: rgba(255, 255, 255, .04);
  cursor: pointer
}

.filter.active {
  background: #e6ebf0;
  color: #080b10
}

.steps {
  grid-template-columns: repeat(6, 1fr);
  counter-reset: step
}

.step {
  border-top: 1px solid rgba(232, 237, 242, .2);
  padding-top: 22px;
  color: #bdc7d0
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  margin-bottom: 10px
}

.faq {
  display: grid;
  gap: 12px
}

.faq details {
  border: 1px solid rgba(232, 237, 242, .11);
  background: rgba(255, 255, 255, .04);
  border-radius: 18px;
  padding: 18px 20px
}

.faq summary {
  cursor: pointer;
  font-weight: 900
}

.faq p {
  color: #b8c2cb
}

.cta {
  border-radius: 34px;
  border: 1px solid rgba(232, 237, 242, .13);
  background: linear-gradient(135deg, rgba(232, 237, 242, .13), rgba(255, 255, 255, .04)), url('../img/cta.png') center/cover;
  overflow: hidden;
  position: relative
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 9, 13, .96), rgba(7, 9, 13, .7))
}

.cta-inner {
  position: relative;
  padding: 70px
}

.cta h2 {
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 1;
  margin: 0 0 18px
}

.footer {
  border-top: 1px solid rgba(232, 237, 242, .1);
  padding: 55px 0 25px;
  background: #05070a
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr .7fr;
  gap: 30px
}

.footer img {
  height: 62px;
  width: auto;
  margin-bottom: 16px
}

.footer a {
  display: block;
  color: #b9c2cb;
  margin: 7px 0
}

.copy {
  margin-top: 40px;
  color: #7f8994;
  font-size: .9rem;
  border-top: 1px solid rgba(232, 237, 242, .08);
  padding-top: 18px
}

.subhero {
  padding: 150px 0 70px;
  background: linear-gradient(90deg, rgba(7, 9, 13, .96), rgba(7, 9, 13, .82)), url('../img/hero-steel-line.webp') center/cover
}

.subhero h1 {
  font-size: clamp(2.5rem, 4.8vw, 5rem);
  line-height: .95;
  letter-spacing: -.055em;
  max-width: 900px;
  margin: 14px 0 18px
}

.content {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px
}

.content-panel {
  border: 1px solid rgba(232, 237, 242, .1);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255, 255, 255, .04)
}

.list {
  padding: 0;
  list-style: none
}

.list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(232, 237, 242, .09);
  color: #c4ccd4
}

.list li::before {
  content: "✓";
  color: #f4f7fa;
  margin-right: 10px
}

.cookie {
  position: fixed;
  z-index: 80;
  bottom: 18px;
  left: 18px;
  right: 18px;
  max-width: 900px;
  margin: auto;
  border: 1px solid rgba(232, 237, 242, .16);
  border-radius: 22px;
  background: rgba(10, 14, 20, .96);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 80px rgba(0, 0, 0, .5);
  padding: 18px;
  display: none
}

.cookie.show {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between
}

.cookie p {
  margin: 0;
  color: #bfc8d1
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: none
}

.skip {
  position: absolute;
  left: -999px;
  top: auto
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 99;
  background: white;
  color: black;
  padding: 10px;
  border-radius: 8px
}

@media(max-width:1040px) {
  .menu {
    display: none
  }

  .hamb {
    display: block
  }

  .header-cta {
    display: none
  }

  .menu.open {
    display: flex;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #080b10;
    padding: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
  }

  .hero-grid,
  .two-col,
  .band .container,
  .content {
    grid-template-columns: 1fr
  }

  .services {
    grid-template-columns: repeat(2, 1fr)
  }

  .features {
    grid-template-columns: 1fr 1fr
  }

  .steps {
    grid-template-columns: repeat(3, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero-panel {
    max-width: 540px
  }

  .media-box img {
    height: 380px
  }
}

@media(max-width:680px) {
  .container {
    width: min(100% - 24px, var(--max))
  }

  .nav {
    height: 72px
  }

  .logo img {
    height: 45px
  }

  .hero {
    padding-top: 116px
  }

  .hero h1 {
    font-size: 2.75rem
  }

  .hero-grid {
    gap: 24px
  }

  .services,
  .features,
  .gallery,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .section-head {
    display: block
  }

  .cta-inner {
    padding: 34px 22px
  }

  .cookie.show {
    display: block
  }

  .cookie .btn {
    margin-top: 12px;
    width: 100%
  }

  .floating-call {
    display: inline-flex
  }

  .hero-actions .btn {
    width: 100%
  }

  .card-img img,
  .gallery img {
    height: 250px
  }

  section {
    padding: 68px 0
  }

  .subhero {
    padding-top: 120px
  }

  .mini-stats {
    grid-template-columns: 1fr
  }
}

/* === SPAWLINE FIX PACK === */
.header { background: rgba(5, 7, 10, .88); }
.nav { height: 76px; gap: 14px; }
.logo { min-width: 185px; flex: 0 0 auto; }
.logo img { height: 58px; max-width: 230px; object-fit: contain; }
.menu { gap: 14px; flex: 1 1 auto; justify-content: center; min-width: 0; }
.menu a { white-space: nowrap; font-size: .88rem; line-height: 1.1; }
.header-cta { flex: 0 0 auto; }
.header-cta .btn { padding: 11px 17px; }
.card .icon { display: block; margin: 0 auto 18px; width: 64px; height: 64px; }
.card h3 { text-align: center; }
.media-box img { width: 100%; max-width: none; height: 100%; min-height: 340px; object-fit: cover; }
.content .media-box img { min-height: 420px; }
.band .media-box img { min-height: 420px; }
.gallery img { aspect-ratio: 4 / 3; height: auto; }
.subhero { padding-top: 132px; }
.legal-content h2 { margin-top: 32px; }
.legal-content h3 { margin-top: 22px; color: #fff; }
.legal-content a { text-decoration: underline; text-underline-offset: 3px; }
.legal-content code { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 2px 6px; }
.cookie { max-width: 1080px; display: none; align-items: center; justify-content: space-between; gap: 18px; }
.cookie.show { display: flex; }
.cookie strong { display: block; color: #fff; margin-bottom: 4px; }
.cookie-text { max-width: 660px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-actions .btn { padding: 10px 15px; }
.cookie-modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 18px; background: rgba(0,0,0,.68); backdrop-filter: blur(8px); }
.cookie-modal.show { display: flex; }
.cookie-modal-card { width: min(620px, 100%); border: 1px solid rgba(232,237,242,.16); border-radius: 24px; padding: 26px; background: #0b1017; box-shadow: 0 24px 90px rgba(0,0,0,.55); }
.cookie-modal-card h2 { margin-top: 0; line-height: 1.05; }
.cookie-choice { display: block; margin: 16px 0; color: #dbe3ea; }
.cookie-choice input { margin-right: 10px; transform: scale(1.15); }
.cookie-modal-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; margin-top: 20px; }
@media(max-width:1280px){ .menu{gap:10px}.menu a{font-size:.82rem}.logo{min-width:160px}.logo img{height:50px;max-width:190px}.header-cta .btn{padding:10px 13px;font-size:.88rem} }
@media(max-width:1120px){ .menu{display:none}.hamb{display:block}.header-cta{display:none}.menu.open{display:flex;position:absolute;top:76px;left:0;right:0;flex-direction:column;background:#080b10;padding:22px;border-bottom:1px solid rgba(255,255,255,.1)} }
@media(max-width:680px){ .nav{height:70px}.logo{min-width:150px}.logo img{height:44px;max-width:170px}.subhero{padding-top:112px}.cookie.show{display:block}.cookie-actions{display:grid;grid-template-columns:1fr;gap:8px;margin-top:14px}.cookie-actions .btn,.cookie-modal-actions .btn{width:100%}.content .media-box img,.band .media-box img{min-height:260px}.media-box img{min-height:240px} }
