:root{
  --bg:#070b14;
  --bg2:#0b1220;
  --soft:rgba(255,255,255,0.03);
  --card:rgba(255,255,255,0.06);
  --stroke:rgba(255,255,255,0.10);

  --text:#f2f6ff;
  --muted:rgba(242,246,255,0.72);
  --muted2:rgba(242,246,255,0.55);

  --accent:#09b7ff;
  --accent2:#00d3c7;

  --radius:18px;
  --radius2:26px;
  --max:1120px;

  --shadow: 0 18px 50px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: radial-gradient(900px 520px at 10% 10%, rgba(9,183,255,0.16), transparent 60%),
              radial-gradient(700px 520px at 90% 0%, rgba(0,211,199,0.14), transparent 60%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

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

.muted{ color:var(--muted); }
.tiny{ font-size:12px; }
.note{ margin-top:18px; }

/* ================= HEADER ================= */
.header{
  position:sticky;
  top:0;
  z-index:100;
  background: rgba(7,11,20,0.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--stroke);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:0.2px;
}
.brand__name{ font-size:16px; }

.brand__logo{
  width:44px;
  height:44px;
  padding:6px;
  border-radius:12px;
  background:white;
}

.nav__links{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav__links a{
  color:var(--muted);
  font-weight:700;
  font-size:14px;
}
.nav__links a:hover{ color:white; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#03101a;
  border:0;
  cursor:pointer;
  box-shadow: 0 14px 30px rgba(9,183,255,.15);
}
.btn--ghost{
  background: rgba(255,255,255,0.10);
  color: white;
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:none;
}
.btn--small{ padding:10px 16px; font-size:14px; }
.btn--block{ width:100%; }

.link{
  color: rgba(242,246,255,0.85);
  font-weight:800;
}
.link:hover{ color:white; }

/* Pills */
.pill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(242,246,255,0.82);
  font-weight:700;
  font-size:13px;
}

/* ================= HERO ================= */
.hero{
  position:relative;
  padding:130px 0 120px;
  background:url("./hero.png") center/cover no-repeat;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 520px at 15% 25%, rgba(9,183,255,0.22), transparent 60%),
    radial-gradient(700px 520px at 85% 10%, rgba(0,211,199,0.16), transparent 60%),
    linear-gradient(90deg, rgba(7,11,20,0.92) 0%, rgba(7,11,20,0.72) 55%, rgba(7,11,20,0.40) 100%);
  pointer-events:none;
}

.hero__grid{
  position:relative;
  z-index:1;
}

.hero__content{
  max-width:760px;
}

.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  color: rgba(242,246,255,0.85);
  font-weight:800;
  letter-spacing:0.6px;
  text-transform:uppercase;
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
}

.hero h1{
  font-size: clamp(38px, 4.4vw, 64px);
  margin: 0 0 14px;
  line-height:1.06;
}

.lead{
  font-size:18px;
  color: var(--muted);
  max-width: 70ch;
  margin: 0 0 22px;
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero__trust{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ================= SECTIONS ================= */
.section{ padding:86px 0; }
.section--soft{
  background:
    radial-gradient(800px 520px at 15% 25%, rgba(9,183,255,0.10), transparent 60%),
    radial-gradient(700px 520px at 85% 10%, rgba(0,211,199,0.08), transparent 60%),
    rgba(255,255,255,0.02);
  border-top:1px solid rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

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

.section-title{
  margin:0;
  font-size:34px;
  letter-spacing:-0.3px;
}

.section-subtitle{
  margin:10px 0 0;
  color: var(--muted);
  font-size:16px;
}

/* ================= SERVICES ================= */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
}

.service-card{
  position:relative;
  min-height:320px;
  padding:26px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(800px 520px at 15% 25%, rgba(9,183,255,0.16), transparent 60%),
    radial-gradient(700px 520px at 85% 10%, rgba(0,211,199,0.12), transparent 60%),
    rgba(255,255,255,0.04);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform .25s ease, border-color .25s ease;
}

.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0.25));
  pointer-events:none;
}

.service-card h3,
.service-card p{
  position:relative;
  z-index:1;
}

.service-card h3{
  margin:0 0 8px;
  font-size:20px;
}

.service-card p{
  margin:0;
  color: rgba(242,246,255,0.80);
  line-height:1.45;
  font-size: 12px;
}

.service-card:hover{
  transform: translateY(-6px);
  border-color: rgba(9,183,255,0.30);
}

/* When you upload service images later, these will override the gradient background */
.service1{ background-image:url("./service1.png"); background-size:cover; background-position:center; }
.service2{ background-image:url("./service2.png"); background-size:cover; background-position:center; }
.service3{ background-image:url("./service3.png"); background-size:cover; background-position:center; }
.service4{ background-image:url("./service4.png"); background-size:cover; background-position:center; }
.service5{ background-image:url("./service5.png"); background-size:cover; background-position:center; }
.service6{ background-image:url("./service6.png"); background-size:cover; background-position:center; }

/* ================= PRICING ================= */
.badge{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(9,183,255,0.25);
  background: rgba(9,183,255,0.12);
  color: rgba(242,246,255,0.92);
  font-weight:800;
  font-size:13px;
}

.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
}

.price-card{
  position:relative;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding:26px;
  box-shadow: var(--shadow);
}

.price-card--featured{
  border-color: rgba(9,183,255,0.32);
  background:
    radial-gradient(800px 520px at 15% 25%, rgba(9,183,255,0.18), transparent 60%),
    radial-gradient(700px 520px at 85% 10%, rgba(0,211,199,0.14), transparent 60%),
    rgba(255,255,255,0.05);
  transform: translateY(-4px);
}

.ribbon{
  position:absolute;
  top:18px;
  right:18px;
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color:#03101a;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.price-card h3{ margin:0 0 6px; }
.price{
  margin:16px 0;
  font-size:34px;
  font-weight:900;
  letter-spacing:-0.6px;
}
.price__currency{ opacity:0.9; margin-right:2px; }
.price__per{ font-size:14px; color:var(--muted); margin-left:6px; font-weight:800; }

.list{
  padding-left:18px;
  margin: 0 0 18px;
  color: rgba(242,246,255,0.82);
}
.list li{ margin:10px 0; }

.list--check{
  list-style:none;
  padding-left:0;
}
.list--check li{
  position:relative;
  padding-left:26px;
}
.list--check li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: rgba(0,211,199,0.95);
  font-weight:900;
}

/* ================= ABOUT ================= */
.about-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:22px;
  align-items:stretch;
}

.about-card,
.feature-card,
.contact-card,
.form{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding:26px;
  box-shadow: var(--shadow);
}

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin:18px 0 18px;
}

.stat{
  padding:14px;
  border-radius:16px;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
}
.stat__num{ font-weight:900; font-size:18px; }
.stat__label{ color:var(--muted); font-size:13px; margin-top:4px; }

.callout{
  margin-top:16px;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(9,183,255,0.22);
  background: rgba(9,183,255,0.10);
}

/* ================= LEDGRR ================= */

.shot{
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.shot img{
  width: 100%;
  height: auto;
  display: block;
}

/* ================= CONTACT ================= */
.contact-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap:22px;
}

.form__row{ margin-bottom:14px; }
label{
  display:block;
  font-weight:800;
  margin-bottom:8px;
  color: rgba(242,246,255,0.86);
  font-size:14px;
}

input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.20);
  color: var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{ color: rgba(242,246,255,0.45); }
input:focus, textarea:focus{
  border-color: rgba(9,183,255,0.35);
  box-shadow: 0 0 0 4px rgba(9,183,255,0.10);
}

/* ================= FOOTER ================= */
.footer{
  border-top:1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
  padding:32px 0 18px;
}

.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:22px;
}

.footer__brand{
  display:flex;
  gap:12px;
  align-items:center;
}

.footer__logo{
  width:44px;
  height:44px;
  background:white;
  padding:6px;
  border-radius:12px;
}

.footer__name{
  font-weight:900;
}

.footer__links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.footer__links a{ color: var(--muted); font-weight:800; }
.footer__links a:hover{ color:white; }

.footer__bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,0.10);
  color: rgba(242,246,255,0.70);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px){
  .services-grid,
  .pricing-grid{
    grid-template-columns: 1fr;
  }

  .about-grid,
  .ledgrr,
  .contact-grid{
    grid-template-columns: 1fr;
  }

  .section__head{
    align-items:flex-start;
    flex-direction:column;
  }

  .nav__links a:not(.btn){ display:none; } /* keep only CTA */
}

@media (max-width: 520px){
  .container{ width: calc(100% - 28px); }
  .hero{ padding: 110px 0 96px; }
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: #25D366;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: #25D366;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

.footer-link {
  color: #1ecad3;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
