:root {
  --brand: #0066ff;
  --brand-dark: #0446ad;
  --ink: #111827;
  --muted: #667085;
  --soft: #f6f8fb;
  --surface: #ffffff;
  --line: #e5e7eb;
  --accent: #ff8a32;
  --success: #16835b;
  --glass: rgba(255, 255, 255, 0.58);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --glass-soft: rgba(255, 255, 255, 0.38);
  --glass-line: rgba(255, 255, 255, 0.72);
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.11);
  --glass-shadow: 0 28px 80px rgba(0, 34, 84, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(145deg, rgba(229, 242, 255, 0.92), rgba(255, 255, 255, 0.74) 38%, rgba(242, 248, 255, 0.94) 66%, rgba(255, 246, 238, 0.68)),
    var(--surface);
  background-attachment: fixed;
  color: var(--ink);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(24px) saturate(150%);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--ink);
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 102, 255, 0.16);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #3f4a5a;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  border-radius: 999px;
  padding: 10px 0;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  overflow-wrap: anywhere;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  height: 44%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: -1;
}

.btn-primary {
  background: linear-gradient(145deg, #0a78ff, #0056df 58%, #003fba);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(0, 102, 255, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(150%);
}

.btn-light {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--brand);
  box-shadow: 0 18px 42px rgba(3, 34, 77, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.section,
.section-tight,
.featured-offer {
  padding: 86px 0;
}

.section-tight {
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.82), rgba(240, 248, 255, 0.78) 48%, rgba(255, 255, 255, 0.7));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(255, 255, 255, 0.68) 32%, transparent 46%),
    linear-gradient(180deg, rgba(0, 102, 255, 0.06), transparent 52%);
  pointer-events: none;
}

.hero-grid,
.feature-grid,
.trade-grid,
.store-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 670px;
}

.eyebrow,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(237, 244, 255, 0.66);
  color: var(--brand-dark);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 12px 28px rgba(0, 102, 255, 0.08);
  backdrop-filter: blur(16px) saturate(145%);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 850;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-copy .eyebrow,
.section-head .eyebrow,
.feature-copy .eyebrow,
.trade-copy .eyebrow,
.store-copy .eyebrow,
.faq-grid .eyebrow,
.final-cta .eyebrow {
  margin-bottom: 18px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-copy p {
  max-width: 620px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 26px;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-points li {
  position: relative;
  padding-left: 24px;
  color: #344054;
  font-weight: 800;
}

.trust-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.hero-media {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.35)),
    rgba(246, 248, 251, 0.5);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(22px) saturate(145%);
}

.hero-media::before,
.feature-image::before,
.product-card::before,
.proof-card::before,
.lead-form::before,
.service-grid article::before,
.store-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), transparent 38%),
    linear-gradient(315deg, rgba(0, 102, 255, 0.08), transparent 42%);
  pointer-events: none;
}

.hero-phone {
  position: relative;
  z-index: 1;
  width: 96%;
  max-width: 680px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 26px 38px rgba(17, 24, 39, 0.16));
}

.availability-strip {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.availability-strip span {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.78);
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.confidence-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(18px);
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.confidence-grid div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.confidence-grid strong {
  display: block;
  color: var(--brand);
  font-size: 30px;
  line-height: 1;
}

.confidence-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.featured-offer {
  background: rgba(246, 248, 251, 0.46);
}

.feature-grid {
  grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1fr);
}

.feature-image {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.35)),
    rgba(255, 255, 255, 0.5);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px) saturate(145%);
}

.feature-image img {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 560px;
  display: block;
}

.feature-copy {
  max-width: 590px;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 26px;
}

.spec-list span {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  padding: 13px;
  color: #344054;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.product-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card,
.proof-card,
.service-grid article,
.lead-form,
.steps div,
.faq-list details {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.product-card {
  padding: 20px;
}

.product-card > *,
.proof-card > *,
.service-grid article > *,
.lead-form > *,
.steps div > *,
.faq-list details > * {
  position: relative;
  z-index: 1;
}

.product-highlight {
  border-color: rgba(0, 102, 255, 0.32);
  box-shadow: 0 22px 60px rgba(0, 102, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.product-image {
  position: relative;
  z-index: 1;
  height: 230px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  overflow: hidden;
  background: rgba(246, 248, 251, 0.56);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.product-image img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.product-card .tag {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.product-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 30px;
  line-height: 1;
}

.product-card p {
  position: relative;
  z-index: 1;
  min-height: 88px;
  font-size: 16px;
}

.text-link {
  position: relative;
  z-index: 1;
  color: var(--brand-dark);
  font-weight: 900;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(246, 248, 251, 0.58), rgba(255, 255, 255, 0.48));
}

.trade-grid {
  align-items: start;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.steps div {
  padding: 18px;
}

.steps span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0a78ff, #004ed0);
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 14px;
  box-shadow: 0 10px 22px rgba(0, 102, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.steps strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
}

.steps p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 15px;
}

.lead-form {
  padding: 24px;
}

.lead-form p {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  font-size: 15px;
}

.lead-form label {
  position: relative;
  z-index: 1;
  display: block;
  margin: 14px 0 7px;
  color: #344054;
  font-size: 14px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.14);
}

.lead-form textarea {
  min-height: 96px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-form button {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 18px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  padding: 10px;
}

.proof-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 6px;
  background: var(--soft);
}

.proof-card:first-child img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.proof-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: 14px 6px 6px;
  color: var(--ink);
}

.proof-card p {
  position: relative;
  z-index: 1;
  margin: 0 6px 8px;
  font-size: 15px;
}

.service-grid article {
  padding: 24px;
}

.service-icon {
  z-index: 1;
  display: inline-grid;
  place-items: center;
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(226, 241, 255, 0.66)),
    rgba(237, 244, 255, 0.78);
  color: var(--brand);
  box-shadow:
    0 16px 34px rgba(0, 102, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.service-icon i {
  font-size: 24px;
  line-height: 1;
}

.service-icon-face {
  color: #0066ff;
}

.service-icon-chip {
  color: #0446ad;
}

.service-icon-data {
  color: #16835b;
}

.store-section {
  background: rgba(255, 255, 255, 0.52);
}

.store-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1fr);
}

.store-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--glass-line);
  box-shadow: var(--glass-shadow);
}

.store-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
}

.faq {
  background: rgba(246, 248, 251, 0.5);
}

.faq-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  align-items: start;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  position: relative;
  z-index: 1;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  font-size: 16px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background:
    linear-gradient(135deg, #0066ff, #004cc8 58%, #0b1d3a);
  color: #ffffff;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0 18%, rgba(255, 255, 255, 0.24) 34%, transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.48);
  color: #ffffff;
}

.final-cta h2 {
  color: #ffffff;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: #edf4ff;
}

.site-footer {
  padding: 38px 0;
  background: #111827;
  color: #d1d5db;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-grid strong,
.footer-grid span {
  display: block;
}

.footer-grid strong {
  color: #ffffff;
}

.mobile-bar {
  display: none;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .feature-grid,
  .trade-grid,
  .store-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .feature-image {
    min-height: 390px;
  }

  .confidence-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .product-card p {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(100% - 28px, 1140px);
  }

  .header-inner {
    min-height: 66px;
  }

  .brand span,
  .header-cta {
    display: none;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .section,
  .section-tight,
  .featured-offer {
    padding: 56px 0;
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  h3 {
    font-size: 21px;
  }

  p,
  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .form-row,
  .spec-list,
  .trust-points,
  .confidence-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-media {
    min-height: 330px;
  }

  .availability-strip {
    position: static;
    width: 100%;
    padding: 0 14px 14px;
    grid-template-columns: 1fr;
  }

  .confidence-grid div {
    min-height: 92px;
  }

  .feature-image {
    min-height: 320px;
  }

  .product-image {
    height: 205px;
  }

  .store-photo img {
    min-height: 250px;
  }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }
}
