:root{
  --bg:#f6f7fb;
  --bg2:#eef1f7;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --muted2:#64748b;
  --line:rgba(15,23,42,0.10);
  --accent:#f59e0b;   /* amber */
  --accent2:#2563eb;  /* blue */
  --white:#ffffff;
}

*{box-sizing:border-box}
html,body{
  margin:0;padding:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:radial-gradient(1200px 700px at 15% 10%, #ffffff 0%, var(--bg) 55%, #edf1f7 100%);
}
a{color:inherit;text-decoration:none}
.container{max-width:1180px;margin:0 auto;padding:0 18px}

/* Topbar */
.topbar{
  position:sticky;top:0;z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(255,255,255,0.82);
  border-bottom:1px solid var(--line);
}
.topbar-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.brand{display:flex;align-items:center;gap:12px}
.brand-logo{height:34px;width:auto;display:block}
.brand-text{font-weight:800;letter-spacing:0.2px}
.brand-text small{font-weight:600;opacity:0.85;margin-left:8px}

.nav{display:flex;align-items:center;gap:16px}
.nav a{opacity:0.9}
.nav a:hover{opacity:1}
.nav-cta{
  padding:10px 14px;border:1px solid var(--line);
  border-radius:12px;background:rgba(2,6,23,0.03);
}
.nav-cta:hover{background:rgba(2,6,23,0.06)}

/* Banner */
.brand-banner{padding:22px 0 10px}
.brand-banner-inner{display:flex;justify-content:center;align-items:center}
.brand-banner-logo{
  height:110px;
  width:auto;
  display:block;
  filter: drop-shadow(0 10px 24px rgba(15,23,42,0.12));
}

/* Hero */
.hero{padding:12px 0 18px}
.hero-inner{display:grid;grid-template-columns:1.6fr 1fr;gap:18px;align-items:stretch}
.hero-left{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,0.94));
  border-radius:20px;
  padding:28px;
  box-shadow:0 10px 30px rgba(15,23,42,0.08);
}
.hero h1{
  margin:0 0 10px;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-0.6px;
}
.subheading{margin:0;color:var(--muted2);font-size:15.5px}
.hero-actions{margin-top:18px;display:flex;gap:12px;flex-wrap:wrap}
.hero-badges{margin-top:16px;display:flex;gap:10px;flex-wrap:wrap}
.badge{
  border:1px solid var(--line);
  background:rgba(2,6,23,0.02);
  padding:8px 10px;border-radius:999px;
  font-size:12px;color:var(--muted);
}

.hero-right{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,0.94));
  border-radius:20px;
  padding:18px;
  box-shadow:0 10px 30px rgba(15,23,42,0.08);
  display:flex;align-items:center;justify-content:center;
}
.hero-card{
  width:100%;
  background:rgba(2,6,23,0.02);
  border:1px solid rgba(15,23,42,0.10);
  border-radius:18px;
  padding:18px;
}
.hero-card-title{font-size:12px;color:var(--muted2);text-transform:uppercase;letter-spacing:0.14em;margin-bottom:10px}
.hero-card-row{display:flex;gap:12px;align-items:flex-start;margin-bottom:10px}
.dot{width:10px;height:10px;border-radius:50%;background:#cbd5e1;margin-top:6px}
.dot.up{background:#22c55e;box-shadow:0 0 18px rgba(34,197,94,0.30)}
.dot.down{background:#ef4444;box-shadow:0 0 18px rgba(239,68,68,0.30)}
.hero-card-big{font-weight:800;font-size:18px}
.hero-card-small{color:var(--muted2);font-size:13px;margin-top:3px}
.status-note{margin-top:10px;font-size:12px;color:var(--muted2)}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 14px;border-radius:14px;
  border:1px solid var(--line);
  background:rgba(2,6,23,0.02);
  color:var(--text);
  font-weight:700;
  transition:transform .12s ease, background .12s ease;
}
.btn:hover{transform:translateY(-1px);background:rgba(2,6,23,0.05)}
.btn.primary{
  border-color:rgba(245,158,11,0.55);
  background:linear-gradient(180deg, rgba(245,158,11,0.95), rgba(245,158,11,0.82));
  color:#111827;
}
.btn.primary:hover{background:linear-gradient(180deg, rgba(245,158,11,1), rgba(245,158,11,0.88))}
.btn.ghost{background:transparent}
.btn.small{padding:10px 12px;border-radius:12px;font-size:13px}

/* Sections */
.pricing-section{padding:28px 0 12px}
.pricing-section h2, .contact-section h2{
  margin:0 0 8px;
  font-size:30px;
  letter-spacing:-0.3px;
}
.pricing-section .subheading, .contact-section .subheading{margin-bottom:18px}

/* Pricing Grid */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
  margin:18px 0 18px;
}
.card{
  position:relative;
  background:rgba(255,255,255,1);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 16px;
  box-shadow:0 10px 26px rgba(15,23,42,0.08);
  transition:transform .14s ease, background .14s ease, border-color .14s ease;
}
.card:hover{transform:translateY(-3px)}
.card h3{margin:0 0 8px;font-size:18px}
.price{margin:0 0 6px;font-size:30px;font-weight:900}
.price span{font-size:14px;font-weight:700;color:var(--muted2)}
.tagline{margin:0 0 14px;color:var(--muted2);font-size:13.5px}
.card ul{list-style:none;padding:0;margin:0 0 16px}
.card ul li{
  padding:9px 0;
  border-bottom:1px solid rgba(15,23,42,0.08);
  font-size:13.5px;
  color:var(--text);
}
.card ul li:last-child{border-bottom:none}
.card ul li strong{color:var(--text)}

.featured{
  border-color:rgba(245,158,11,0.55);
  background:linear-gradient(180deg, rgba(245,158,11,0.10), rgba(255,255,255,1));
}
.pill{
  position:absolute;top:14px;right:14px;
  font-size:11px;font-weight:800;
  padding:6px 10px;border-radius:999px;
  background:rgba(245,158,11,0.16);
  border:1px solid rgba(245,158,11,0.35);
  color:#92400e;
}

/* White-label orphan row */
.card.whitelabel{grid-column:1 / -1; padding:16px 16px 14px}
.wl-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(15,23,42,0.08);
}
.wl-left h3{margin:0 0 6px}
.wl-right{
  margin-left:auto;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
  text-align:right;
}
.wl-price{font-size:13px;color:var(--muted2);line-height:1.2}
.wl-price strong{font-size:18px;color:var(--text)}
.wl-price span{font-size:13px;color:var(--muted2)}

.wl-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  padding-top:12px;
}
.wl-section{
  background:rgba(2,6,23,0.02);
  border:1px solid rgba(15,23,42,0.08);
  border-radius:14px;
  padding:12px 12px 10px;
}
.wl-title{
  font-size:12px;
  font-weight:900;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:8px;
}
.wl-list{
  margin:0;
  padding-left:18px;
  color:var(--text);
  font-size:13px;
}
.wl-list li{margin:6px 0}

/* Contact */
.contact-section{padding:18px 0 44px}
.contact-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:14px;
  align-items:stretch;
}
.contact-card, .map-card{
  background:rgba(255,255,255,1);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 26px rgba(15,23,42,0.08);
}
.form label{
  display:block;
  font-size:13px;
  color:var(--muted);
  font-weight:700;
  margin-bottom:10px;
}
.form input, .form textarea{
  width:100%;
  margin-top:6px;
  border:1px solid rgba(15,23,42,0.14);
  border-radius:12px;
  padding:10px 12px;
  font-size:14px;
  outline:none;
  background:#fff;
}
.form input:focus, .form textarea:focus{
  border-color:rgba(37,99,235,0.55);
  box-shadow:0 0 0 3px rgba(37,99,235,0.12);
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.hp-wrap{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.form-msg{margin-top:10px;font-size:13px}
.form-msg.ok{color:#16a34a}
.form-msg.err{color:#dc2626}
.fineprint{margin:10px 0 0;color:var(--muted2);font-size:12.5px}

.map-title{font-weight:900;margin-bottom:10px}
.map{
  width:100%;
  height:220px;
  border:0;
  border-radius:14px;
  background:#fff;
}
.map-note{margin-top:10px;color:var(--muted2);font-size:13px}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  background:rgba(255,255,255,0.70);
  padding:18px 0;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--muted2);
  font-size:13px;
}
.footer-links{display:flex;gap:14px}
.footer-links a{opacity:0.9}
.footer-links a:hover{opacity:1}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr}
  .pricing-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .wl-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .brand-banner-logo{height:96px}
}
@media (max-width: 520px){
  .pricing-grid{grid-template-columns:1fr}
  .hero h1{font-size:34px}
}
