
:root{
  --bg: #050a14;
  --bg2:#071225;
  --card: rgba(10, 18, 36, .78);
  --card2: rgba(10, 18, 36, .62);
  --text: #eaf2ff;
  --muted: rgba(234, 242, 255, .78);

  --blue: #34a7ff;
  --blue2:#1f6fff;
  --glow: rgba(52,167,255,.55);

  --white: #ffffff;
  --line: rgba(255,255,255,.10);

  --radius: 18px;
  --shadow: 0 16px 40px rgba(0,0,0,.45);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(52,167,255,.15), transparent 60%),
              radial-gradient(900px 500px at 80% 15%, rgba(31,111,255,.10), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}

a{ color: var(--text); text-decoration:none; }
a:hover{ text-decoration:underline; }

.wrap{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(4,10,22,.78);
  border-bottom: 1px solid var(--line);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 12px 0;
}

.brand-title{
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(52,167,255,.25);
}
.brand-sub{
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.top-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing:.2px;
  border: 1px solid transparent;
  user-select:none;
}

.btn-big{ padding: 12px 18px; }

.btn-solid{
  background: linear-gradient(180deg, rgba(52,167,255,.95), rgba(31,111,255,.95));
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 0 30px rgba(52,167,255,.25);
  color: #071225;
}
.btn-solid:hover{
  filter: brightness(1.05);
  text-decoration:none;
}

.btn-ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.10);
  text-decoration:none;
}

.hero{
  position: relative;
  min-height: 560px;
  display:flex;
  align-items:stretch;
  overflow:hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 450px at 15% 10%, rgba(52,167,255,.30), transparent 60%),
    radial-gradient(700px 420px at 80% 15%, rgba(31,111,255,.22), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.75)),
    url("img/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.hero-inner{
  position: relative;
  padding: 54px 0;
  display:flex;
  align-items:center;
}

.hero-card{
  width:min(760px, 100%);
  background: rgba(5,10,20,.62);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  backdrop-filter: blur(10px);
}

.kicker{
  display:inline-block;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 12px;
  color: rgba(234,242,255,.92);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(52,167,255,.12);
  border: 1px solid rgba(52,167,255,.22);
  box-shadow: 0 0 24px rgba(52,167,255,.12);
}

h1{
  margin: 14px 0 10px;
  line-height: 1.05;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 1000;
  letter-spacing: .3px;
  text-transform: none;
  text-shadow: 0 0 28px rgba(52,167,255,.18);
}

.lead{
  margin: 0 0 16px;
  color: rgba(234,242,255,.88);
  font-size: 17px;
  line-height: 1.55;
}

.price-strip{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 18px;
}

.price-box{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 14px 14px;
}
.price-label{
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  letter-spacing:.4px;
  text-transform: uppercase;
}
.price-value{
  margin-top: 4px;
  font-size: 28px;
  font-weight: 1000;
  color: #dff1ff;
  text-shadow: 0 0 24px rgba(52,167,255,.22);
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-row{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(234,242,255,.88);
  font-weight: 800;
  font-size: 13px;
}

.section{
  padding: 56px 0;
}

.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.section-head h2{
  margin:0 0 10px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 1000;
  letter-spacing: .2px;
  text-shadow: 0 0 18px rgba(52,167,255,.14);
}

.section-head p{
  margin:0 0 22px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
  max-width: 860px;
}

.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card{
  background: var(--card);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(8px);
}

.card h3{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 1000;
}

.card ul{
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(234,242,255,.88);
  line-height: 1.7;
}

.note{
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 10px;
}

.logo-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.logo-tile{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  min-height: 76px;
}

.logo-tile img{
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(52,167,255,.12));
}

.big-prices{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 14px;
}

.big-price{
  padding: 14px;
  border-radius: 16px;
  background: rgba(52,167,255,.10);
  border: 1px solid rgba(52,167,255,.22);
}

.big-price-title{
  color: rgba(234,242,255,.92);
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 12px;
}

.big-price-value{
  margin-top: 6px;
  font-weight: 1000;
  font-size: 30px;
  text-shadow: 0 0 24px rgba(52,167,255,.22);
}

.mini-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.mini{
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.mini-title{
  font-weight: 1000;
  margin-bottom: 6px;
}
.mini-text{
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}

.contact-lines{
  color: rgba(234,242,255,.88);
  line-height: 1.7;
  margin-bottom: 14px;
}
.contact-lines a{ text-decoration: underline; }

.hours{
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  margin-bottom: 14px;
}
.hours-title{
  font-weight: 1000;
  margin-bottom: 6px;
}

.cta-row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer{
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(4,10,22,.82);
}

.footer-inner{
  padding: 18px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  color: rgba(234,242,255,.78);
  font-size: 14px;
  flex-wrap: wrap;
}

.footer-links{
  display:flex;
  align-items:center;
  gap: 10px;
}

.dot{ opacity:.5; }

@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .topbar-inner{ flex-direction: column; align-items:flex-start; }
  .top-actions{ justify-content:flex-start; }
  .price-strip{ grid-template-columns: 1fr; }
  .big-prices{ grid-template-columns: 1fr; }
  .logo-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-inner{ padding: 38px 0; }
  .hero-card{ padding: 18px; }
}