:root{
  /* ===== Brand colors (from your logo) ===== */
  --brand-teal: #0E9BA7;
  --brand-orange: #E2720C;
  --brand-amber: #EF941B;
  --brand-magenta: #CF3265;
  --brand-green: #078A31;

  /* ===== Base UI ===== */
  --bg:#070B12;
  --card:#0f1a2e;
  --card2:#0c1628;
  --text:#e8eefc;
  --muted:#a9b7d3;
  --line:rgba(255,255,255,.10);

  /* Use brand teal as primary, orange as secondary */
  --primary: var(--brand-teal);
  --primary2: var(--brand-orange);

  --danger:#ff5c5c;
  --shadow: 0 10px 30px rgba(0,0,0,.30);

  --radius: 16px;
  --radius2: 12px;

  /* Helpers */
  --glass: rgba(255,255,255,.05);
  --glass2: rgba(255,255,255,.03);

  /* New helpers */
  --shadow2: 0 18px 55px rgba(0,0,0,.45);
  --stroke: rgba(255,255,255,.12);
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1200px 800px at 10% 10%, rgba(14,155,167,.18), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(226,114,12,.14), transparent 60%),
    radial-gradient(900px 700px at 70% 85%, rgba(207,50,101,.10), transparent 60%),
    var(--bg);
  color: var(--text);
}

a{color:inherit}
.container{
  width:min(1100px, 92vw);
  margin: 0 auto;
}

/* =========================
   NAV (Premium look like your example)
========================= */
.nav{
  position: sticky;
  top:0;
  z-index:100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(7,11,18,.72);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width: 220px;
}
.brand-badge{
  width:36px;height:36px;border-radius:12px;
  background: linear-gradient(135deg, var(--brand-teal), var(--brand-orange));
  display:grid;place-items:center;
  box-shadow: var(--shadow);
  font-weight:900;
  color:#061016;
}
.brand span{
  font-weight:800;
  letter-spacing:.2px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav-links a{
  text-decoration:none;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.03);
  transition: transform .12s ease, border-color .12s ease, background .12s ease, color .12s ease;
}

.nav-links a:hover{
  color: rgba(255,255,255,.92);
  border-color: rgba(14,155,167,.45);
  background: rgba(14,155,167,.08);
  transform: translateY(-1px);
}
.nav-links a:active{ transform: translateY(0); }

/* Optional active link (works if you set class="active" or aria-current="page") */
.nav-links a.active,
.nav-links a[aria-current="page"]{
  color: rgba(255,255,255,.94);
  border-color: rgba(14,155,167,.60);
  background: rgba(14,155,167,.14);
  box-shadow: 0 12px 26px rgba(14,155,167,.10);
}

/* Better mobile behavior: wrap + horizontal scroll */
@media (max-width: 720px){
  .nav-inner{
    align-items:flex-start;
    padding:12px 0;
  }
  .brand{ min-width: auto; }
  .nav-links{
    width:100%;
    justify-content:flex-start;
    overflow:auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .nav-links a{
    white-space: nowrap;
    scroll-snap-align: start;
  }
}

/* =========================
   HERO (base)
========================= */
.hero{
  padding:42px 0 24px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:18px;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
}

.hero-card{
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow2);
  overflow:hidden;
}

.h1{
  font-size: clamp(26px, 3.3vw, 42px);
  margin:0 0 10px;
  line-height:1.12;
  letter-spacing: -0.02em;
}
.p{
  margin:0 0 18px;
  color: var(--muted);
  line-height:1.55;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:7px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size:13px;
}
.badge::before{
  content:"";
  width:9px;height:9px;border-radius:999px;
  background: var(--brand-teal);
  box-shadow: 0 0 0 4px rgba(14,155,167,.18);
}

/* =========================
   HERO (motion / video support)
========================= */
.hero-motion{
  background:
    radial-gradient(1100px 400px at 18% 22%, rgba(14,155,167,.25), transparent 60%),
    radial-gradient(900px 420px at 82% 18%, rgba(207,50,101,.15), transparent 60%),
    radial-gradient(900px 520px at 70% 90%, rgba(226,114,12,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}

.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
  opacity:.55;
  pointer-events:none;
}
.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 20% 30%, rgba(0,0,0,.05), rgba(0,0,0,.70)),
    linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.10));
}

.hero-video,
.hero-poster{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: saturate(1.06) contrast(1.06);
}
.hero-front{
  position: relative;
  z-index: 1;
}

/* Motion reduced */
@media (prefers-reduced-motion: reduce){
  .hero-video{display:none;}
}

/* =========================
   BUTTONS
========================= */
.btns{display:flex; gap:10px; flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius: 999px;
  text-decoration:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  transition: transform .12s ease, border-color .12s ease, filter .12s ease, background .12s ease;
}

.btn:hover{
  border-color: rgba(14,155,167,.40);
  background: rgba(14,155,167,.06);
  transform: translateY(-1px);
}
.btn:active{transform: translateY(0);}

.btn-primary{
  background: linear-gradient(135deg, rgba(14,155,167,.95), rgba(14,155,167,.75));
  border-color: transparent;
  color:#061016;
  font-weight:900;
  box-shadow: 0 14px 30px rgba(14,155,167,.18);
}
.btn-primary:hover{filter:brightness(1.03)}

.btn-secondary{
  background: linear-gradient(135deg, rgba(226,114,12,.95), rgba(239,148,27,.80));
  border-color: transparent;
  color:#1a0d00;
  font-weight:900;
  box-shadow: 0 14px 30px rgba(226,114,12,.14);
}
.btn-secondary:hover{filter:brightness(1.03)}

/* =========================
   GRIDS + CARDS
========================= */
.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:16px;
  margin: 16px 0 30px;
}

.card{
  display:block;
  text-decoration:none;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow2);
  transition: transform .12s ease, border-color .12s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(14,155,167,.40);
}

.card-img{
  width:100%;
  height: 140px;
  background:
    radial-gradient(420px 240px at 25% 30%, rgba(14,155,167,.18), transparent 60%),
    radial-gradient(420px 240px at 75% 25%, rgba(226,114,12,.14), transparent 60%),
    rgba(255,255,255,.04);
  display:block;
  object-fit:cover;
}

.card-body{padding:14px 14px 16px}
.card-title{margin:0 0 8px; font-size:16px; letter-spacing:-0.01em;}
.card-text{margin:0 0 10px; color:var(--muted); font-size:13px; line-height:1.45}

.price{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  font-weight:900;
}
.small{color:var(--muted); font-weight:600; font-size:12px}

/* =========================
   SECTIONS
========================= */
.section-title{
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.section-sub{
  margin:8px 0 0;
  color: var(--muted);
  line-height:1.45;
}

/* =========================
   BREADCRUMBS
========================= */
.breadcrumbs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin: 18px 0 12px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumbs a{color: var(--muted); text-decoration:none}
.breadcrumbs a:hover{color: var(--text)}

/* =========================
   PANELS + FORMS
========================= */
.panel{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow2);
}

.form{
  display:grid;
  gap:12px;
}
.input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(7, 13, 26, .6);
  color: var(--text);
  outline:none;
}
.input:focus, textarea:focus, select:focus{
  border-color: rgba(14,155,167,.55);
  box-shadow: 0 0 0 4px rgba(14,155,167,.14);
}
textarea{min-height:110px; resize:vertical}
label{display:grid; gap:6px; color: var(--muted); font-size:13px}
.help{color: var(--muted); font-size: 13px}

.alert{
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255,92,92,.35);
  background: rgba(255,92,92,.08);
}
.alert ul{margin:0; padding-left:18px}

/* =========================
   FOOTER
========================= */
.footer{
  border-top:1px solid var(--line);
  padding: 20px 0;
  color: var(--muted);
  font-size: 13px;
  margin-top: 40px;
}

/* =========================
   KPI CARD
========================= */
.kpi{
  display:grid;
  gap:10px;
}
.kpi .row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
