:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --accent: #3b82f6;
  --accent-soft: rgba(59,130,246,0.15);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --card: #111827;
  --radius: 14px;
  --shadow: 0 15px 40px rgba(0,0,0,0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; 
}


body {
  margin: 0;
  padding-top: 80px; 
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 50%, #000 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}



.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(15,23,42,0.98),
    rgba(15,23,42,0.95)
  );
  border-bottom: 1px solid rgba(148,163,184,0.2);
}



.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.article-nav{
  margin-top: 1.25rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
}


.article-nav-link{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: inherit;
  transition: background 150ms ease, transform 150ms ease, border-color 150ms ease;
}

.article-nav-link:hover{
  text-decoration: none;
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.article-nav-link:active{
  transform: translateY(0);
}

.article-nav-link:focus-visible{
  outline: 3px solid rgba(255,255,255,0.25);
  outline-offset: 3px;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #e5e7eb;
   text-decoration: none;
  cursor: pointer;
}

.logo:hover {
  text-decoration: none; 
}

.logo span {
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-left: 0.4rem;
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
  background: rgba(148,163,184,0.1);
  color: var(--text);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff !important;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(29, 78, 216, 0.55);
  background: #1d4ed8;
}



main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5rem 1.2rem 3rem;
}

section {
  margin-bottom: 3.5rem;
}



.hero {
  display: grid;
  grid-template-columns: minmax(0,1.6fr) minmax(0,1fr);
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 1.4rem;
  margin-top: 1rem;
  border-radius: 24px;
  background: radial-gradient(circle at top left, #1f2937 0, #020617 45%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(148,163,184,0.35);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.8);
  padding: 0.15rem 0.65rem;
  border: 1px solid rgba(148,163,184,0.3);
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34,197,94,0.9);
}

h1 {
  font-size: clamp(2.1rem, 3vw + 1rem, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.9rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 1.3rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}


.btn-primary {
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: #0b1020;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 18px 40px rgba(59,130,246,0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 50px rgba(59,130,246,0.7);
  background: #2563eb;
}

.btn-ghost {
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.8);
  color: var(--muted);
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
}

/* Make button-styled links look identical to buttons */
a.btn-primary,
a.btn-ghost {
  text-decoration: none;         /* remove underline */
  display: inline-flex;          /* align like a button */
  align-items: center;
  justify-content: center;
  line-height: 1;                /* prevents weird vertical sizing */
}

a.btn-primary:hover,
a.btn-ghost:hover {
  text-decoration: none;         /* keep no underline on hover */
}

/* Optional: make focus visible on keyboard navigation */
a.btn-primary:focus-visible,
a.btn-ghost:focus-visible {
  outline: 3px solid rgba(255,255,255,0.25);
  outline-offset: 3px;
}


.hero-footnote {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-footnote strong {
  color: #e5e7eb;
  font-weight: 500;
}

.card,
.product-card,
.contact-card {
  border-radius: 1rem;
  border: 1px solid rgba(148,163,184,0.25);
  padding: 1.4rem 1.5rem;
  background: radial-gradient(circle at top left, rgba(15,23,42,0.96), rgba(15,23,42,0.9));
  box-shadow: 0 18px 40px rgba(15,23,42,0.65);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
}

.card:hover,
.product-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(15,23,42,0.9);
}



.hero-card {
  border-radius: 20px;
  background: radial-gradient(circle at top, #111827 0, #020617 65%);
  border: 1px solid rgba(148,163,184,0.4);
  padding: 1.5rem 1.3rem;
  box-shadow: 0 20px 45px rgba(15,23,42,0.9);
  font-size: 0.85rem;
}

.hero-card-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.location-links {
  margin-top: 0.8rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.location-links a {
  font-weight: 500;
}


.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.pill {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.4);
  font-size: 0.75rem;
  color: var(--muted);
  background: rgba(15,23,42,0.8);
}

.hero-card-section-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 1rem 0 0.4rem;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.28rem;
}

.hero-card-list li {
  position: relative;
  padding-left: 0.85rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-card-dot {
  position: absolute;
  left: 0;
  top: 0.62em;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(59,130,246,0.8);
}



section {
  margin-top: 3rem;
}

section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

section p {
  color: var(--muted);
  font-size: 0.95rem;
}



.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 1.3rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 15px 35px rgba(15,23,42,0.7);
  font-size: 0.92rem;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.card small {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}



.two-col {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap: 1.8rem;
  margin-top: 1.3rem;
}



.badge {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(59,130,246,0.1);
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}



.faq {
  border-radius: var(--radius);
  border: 1px solid rgba(148,163,184,0.4);
  background: rgba(15,23,42,0.9);
  padding: 1.2rem 1.1rem;
  box-shadow: 0 15px 35px rgba(15,23,42,0.7);
  font-size: 0.94rem;
}

.faq-item + .faq-item {
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(55,65,81,0.8);
}

.faq-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #e5e7eb;
  font-size: 0.93rem;
}

.location-links {
  margin-top: 0.8rem;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.location-links a {
  color: var(--accent);
  font-weight: 500;
}



.contact-card {
  background: var(--card);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 18px 45px rgba(15,23,42,0.9);
  font-size: 0.95rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
  font-size: 0.93rem;
  color: var(--muted);
}

.contact-list li + li {
  margin-top: 0.35rem;
}



footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.8rem 1.2rem 2.6rem;
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid rgba(31,41,55,0.9);
  margin-top: 3rem;
}

footer p {
  margin: 0.25rem 0;
}



.hero-products {
  margin-top: 1.5rem;
}



.product-section {
  margin-top: 3rem;
  padding-top: 1.2rem; 
}

.product-card,
.product-card h3 {
  scroll-margin-top: 110px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.4rem;
}

.product-card {
  background: var(--card);
  border-radius: 18px;
  padding: 1.2rem 1.2rem 1.4rem;
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 18px 40px rgba(15,23,42,0.9);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.93rem;
  display: block;
}

.product-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-header h3 {
  margin: 0;
  font-size: 1.05rem;
}

.product-label {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(148,163,184,0.15);
  color: var(--muted);
  margin: 4%;
}

.product-label-pro {
  background: rgba(59,130,246,0.18);
  color: var(--accent);
}

.product-label-custom {
  background: rgba(52,211,153,0.15);
  color: #6ee7b7;
}



.product-media {
  margin: 0.6rem 0 0.9rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.35);
  background: #020617;
  box-shadow: 0 12px 30px rgba(15,23,42,0.8);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media img {
  max-width: 100%;
  max-height: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.product-desc {
  margin: 0;
  color: var(--muted);
}

.product-specs {
  margin: 0.3rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-meta {
  margin-top: 0.5rem;
}

.price-tag {
  font-size: 1.05rem;
  font-weight: 600;
  color: #e5e7eb;
}

.price-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.product-cta {
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--text);
  background: rgba(15,23,42,0.9);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.product-cta:hover {
  background: rgba(37,99,235,0.18);
  border-color: var(--accent);
  transform: translateY(-1px);
}



.config-box {
  margin-top: 0.8rem;
  padding: 1rem 1rem 1.2rem;
  background: rgba(15,23,42,0.75);
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.3);
  box-shadow: 0 10px 25px rgba(15,23,42,0.6);
}

.config-box strong {
  font-size: 0.95rem;
  color: #e5e7eb;
}

.config-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.35rem 0 0.8rem;
}

.config-option {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0.35rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.config-option span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.config-option select {
  width: 100%;
  margin-top: 0.1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  background: rgba(15,23,42,0.95);
  color: var(--text);
  font-size: 0.86rem;
  outline: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9ca3af 50%),
                    linear-gradient(135deg, #9ca3af 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.config-option select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.5);
}

.pixel-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 0.9rem;
  margin-top: 0.75rem;
}

.lead-form .pixel-check-option {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  margin-bottom: 0;
}

.pixel-picker-form input[type="checkbox"] {
  width: auto;
  min-width: auto;
  padding: 0;
  margin: 0.1rem 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  accent-color: var(--accent);
}

.pixel-picker-form input[type="checkbox"]:focus {
  box-shadow: none;
}



#tjenester,
#om,
#faq,
#telefoner,
#laptoper,
#kontakt {
  scroll-margin-top: 100px;
}


main a,
article a,
section a,
footer a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

main a:hover,
article a:hover,
section a:hover,
footer a:hover {
  text-decoration-thickness: 0.16em;
}


.site-header a,
.nav-links a,
.logo,
a.nav-cta,
a.btn-primary,
a.btn-ghost,
a.product-cta,
a.article-nav-link {
  text-decoration: none;
}

.site-header a:hover,
.nav-links a:hover,
.logo:hover,
a.nav-cta:hover,
a.btn-primary:hover,
a.btn-ghost:hover,
a.product-cta:hover,
a.article-nav-link:hover {
  text-decoration: none;
}




@media (max-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pixel-check-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .hero {
    grid-template-columns: minmax(0,1fr);
    padding: 1.8rem 1.2rem;
  }

  .hero-card {
    order: 0;
  }

  .grid-3 {
    grid-template-columns: minmax(0,1fr);
  }

  .two-col {
    grid-template-columns: minmax(0,1fr);
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 680px) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}



@media (max-width: 768px) {
  .nav {
    padding-inline: 1rem;
    gap: 0.75rem;
  }

  .nav-links {
    display: none; 
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  main {
    padding-inline: 1rem;
  }

  /* Button-lenker skal ikke få underline fra global a:hover */
  .nav-cta,
  .btn-primary,
  .btn-ghost,
  .product-cta {
    text-decoration: none;
  }

  /* Sikrer at hover ikke får underline */
  .nav-cta:hover,
  .btn-primary:hover,
  .btn-ghost:hover,
  .product-cta:hover {
    text-decoration: none;
  }

  /* Når .btn-primary brukes på <a>, er dette mer stabilt visuelt */
  .btn-primary,
  .btn-ghost,
  .nav-cta,
  .product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 840px) {
    .hero-actions{
      flex-direction: column;
      align-items: stretch;
    }

    .hero-actions a{
      width: 100%;
    }
  }

  @media (max-width: 520px) {
    .nav-cta{
      padding: 0.4rem 0.7rem;
      font-size: 0.82rem;
    }

    .logo{
      font-size: 0.85rem;
    }

    /* Valgfritt: spar plass ved å skjule "Diskret & lovlig" */
    .logo span{
      display: none;
    }
  }

  @media (max-width: 520px){
    /* Header: litt tettere */
    .nav{
      padding: 0.65rem 1rem;
      gap: 0.75rem;
    }

    /* Logo: stable tekst */
    .logo{
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      line-height: 1.05;
      gap: 0.25rem;
      font-size: 0.92rem; /* litt større og tydelig */
    }

    /* "Diskret & lovlig" under – ikke som pill ved siden av */
    .logo span{
      margin-left: 0;           /* fjerner “ved siden av”-look */
      border-radius: 10px;      /* litt mindre pille */
      padding: 0.18rem 0.5rem;
      font-size: 0.72rem;
      display: inline-block;
      white-space: nowrap;
    }

    /* CTA litt mer kompakt så den ikke stjeler alt */
    .nav-cta{
      padding: 0.42rem 0.75rem;
      font-size: 0.82rem;
      white-space: nowrap;
    }
  }

  /* Featured / Mest populær produktkort */
  .product-card.featured {
    position: relative;
    border-color: rgba(59,130,246,0.75);
    background: radial-gradient(circle at top left,
      rgba(59,130,246,0.14),
      rgba(15,23,42,0.95) 55%
    );
    box-shadow:
      0 22px 60px rgba(59,130,246,0.22),
      0 18px 40px rgba(15,23,42,0.9);
    transform: translateY(-2px);
  }

  .product-card.featured:hover {
    transform: translateY(-5px);
  }

  .featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #e5e7eb;
    background: rgba(59,130,246,0.22);
    border: 1px solid rgba(59,130,246,0.55);
    backdrop-filter: blur(10px);
  }

  .featured-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(59,130,246,0.9);
  }

  /* Litt luft så badge ikke kræsjer med innhold på små skjermer */
  @media (max-width: 680px) {
    .featured-badge {
      top: 10px;
      right: 10px;
      font-size: 0.74rem;
    }
  }

    /* Anchor offset: sørger for at #anker ikke havner bak sticky header */
  :target {
    scroll-margin-top: 110px; /* juster hvis headeren din er høyere/lavere */
  }

  








}

/* Conversion / lead capture */
.lead-card{
  border-color: rgba(59,130,246,0.55);
  box-shadow:
    0 22px 60px rgba(59,130,246,0.18),
    0 20px 45px rgba(15,23,42,0.9);
}

.lead-intro{
  margin: 0.35rem 0 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-form{
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.lead-row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

@media (max-width: 840px){
  .lead-row{
    grid-template-columns: 1fr;
  }
}

.lead-form label{
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead-form input,
.lead-form select,
.lead-form textarea{
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.35);
  background: rgba(2,6,23,0.55);
  color: var(--text);
  outline: none;
}

.lead-form textarea{
  resize: vertical;
}

.hp-field{
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus{
  border-color: rgba(59,130,246,0.85);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.18);
}

.lead-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.2rem;
}

@media (max-width: 520px){
  .lead-actions{
    grid-template-columns: 1fr;
  }
}

.lead-actions .btn-primary,
.lead-actions .btn-ghost{
  width: 100%;
}

.lead-note{
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.sticky-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  gap: 0.8rem;
  padding: 0.85rem 0.9rem;
  background: rgba(2,6,23,0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(148,163,184,0.22);
}

.sticky-cta .btn-primary,
.sticky-cta .btn-ghost{
  flex: 1;
  justify-content: center;
}

@media (max-width: 840px){
  .sticky-cta{
    display: none !important;
  }
}



