:root{
  --bg:#0b0c10;
  --panel:#11131a;
  --text:#e8e9ee;
  --muted:#a9acb6;
  --line:rgba(255,255,255,.10);
  --accent:#f6b800; /* brand yellow */
  --accent2:#2b2f3a;
  --shadow: 0 16px 50px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #05060a, var(--bg) 28%, #05060a);
  color:var(--text);
  line-height:1.55;
}

img{max-width:100%; height:auto; display:block}

.container{max-width:1100px; padding:0 18px; margin:0 auto}
.section{padding:72px 0}
.section--alt{background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section-head{margin-bottom:22px}
.grid-2{display:grid; gap:18px; grid-template-columns: 1.15fr .85fr}
.grid-3{display:grid; gap:18px; grid-template-columns: repeat(3, 1fr)}
.stack{display:grid; gap:18px}

h1,h2,h3{line-height:1.15; letter-spacing:-0.02em}
h1{font-size: clamp(30px, 4vw, 46px); margin:0 0 12px}
h2{font-size: clamp(24px, 2.6vw, 34px); margin:0 0 10px}
h3{font-size: 18px; margin:0 0 10px}
p{margin:0 0 12px}
.lead{font-size: 18px; color: var(--text)}
.small{font-size: 13px}
.muted{color: var(--muted)}
.kicker{color: var(--muted); font-weight:600; letter-spacing:.02em; margin-bottom:10px}
.meta{color: var(--muted); margin-top:12px}

.card{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card.subtle{background: rgba(255,255,255,.03); box-shadow:none}
.image-card{padding:10px}
.image-card img{border-radius: calc(var(--radius) - 8px); border:1px solid var(--line)}

.checklist{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.checklist li{position:relative; padding-left:26px}
.checklist li:before{
  content:"";
  position:absolute; left:0; top:6px;
  width:14px; height:14px;
  border-radius: 4px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(246,184,0,.15);
}

/* Header */
.site-header{
  position:sticky; top:0; z-index:30;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(5,6,10,.68);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; min-height:64px; gap:14px}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text); font-weight:800; letter-spacing:.06em}
.brand-text{font-size:14px}
.mark{
  width:18px; height:18px; border-radius:5px;
  background: linear-gradient(135deg, var(--accent), #ffd86b);
  box-shadow: 0 0 0 3px rgba(246,184,0,.18);
}
.brand-logo{display:inline-flex; align-items:center}
.brand-logo img{display:block; width:44px; height:44px; object-fit:contain; border-radius:10px}

.nav{display:flex; align-items:center; gap:16px}
.nav a{color:var(--muted); text-decoration:none; font-weight:600; font-size:14px}
.nav a:hover{color:var(--text)}
.nav-toggle{display:none; background:none; border:0; padding:10px; cursor:pointer}
.nav-toggle span{display:block; width:22px; height:2px; background:var(--text); margin:5px 0; border-radius:2px}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  background: var(--accent);
  color:#0b0c10;
  text-decoration:none;
  border-radius: 14px;
  font-weight:800;
  border:1px solid rgba(0,0,0,.2);
}
.btn--ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(246,184,0,.35);
}
.btn--small{padding:9px 12px; border-radius: 12px}
.btn:hover{filter: brightness(1.02)}

/* Hero */
.hero{padding:70px 0 34px; position:relative; overflow:hidden}
.hero-bg{
  position:absolute; inset:-30% -10% auto -10%;
  height:520px;
  background:
    radial-gradient(closest-side, rgba(246,184,0,.18), transparent 70%),
    radial-gradient(closest-side, rgba(255,255,255,.10), transparent 60%);
  filter: blur(2px);
  pointer-events:none;
}
.hero-inner{display:grid; gap:18px; grid-template-columns: 1.15fr .85fr; align-items:center}
.hero-copy{padding-right: 8px}
.hero-cta{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.hero-card{border-radius: var(--radius); border:1px solid var(--line); overflow:hidden; background: rgba(255,255,255,.03); box-shadow: var(--shadow)}
.hero-card img{width:100%}

/* Services */
.services-grid{display:grid; gap:16px; grid-template-columns: repeat(2, 1fr)}
.service ul{margin:0 0 10px 18px; color: var(--muted)}
.service li{margin: 6px 0}
.service-top{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.service-link{color: var(--accent); font-weight:800; text-decoration:none; font-size:13px; padding-top:4px}
.impact{margin:10px 0 0}
.slide-preview{margin-top:12px}
.slide-preview summary{cursor:pointer; color: var(--muted); font-weight:700}
.slide-preview img{margin-top:10px; border-radius: 14px; border:1px solid var(--line)}

/* Form */
.form{display:grid; gap:12px}
label{display:grid; gap:6px; font-weight:700; font-size:13px}
input, select, textarea{
  background: rgba(255,255,255,.05);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding:11px 12px;
  font: inherit;
  outline: none;
}
input:focus, select:focus, textarea:focus{border-color: rgba(246,184,0,.55); box-shadow: 0 0 0 4px rgba(246,184,0,.12)}
textarea{resize:vertical; min-height:120px}

/* Footer */
.footer{padding:30px 0; border-top:1px solid var(--line); background: rgba(255,255,255,.02)}
.footer-inner{display:flex; justify-content:space-between; gap:18px; align-items:center}
.footer-links{display:flex; gap:14px}
.footer a{color:var(--muted); text-decoration:none; font-weight:700; font-size:13px}
.footer a:hover{color:var(--text)}
.brand--footer .brand-text{font-size:13px}

/* Responsive */
@media (max-width: 920px){
  .grid-2,.hero-inner{grid-template-columns:1fr}
  .services-grid{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
  .nav{display:none}
  .nav-toggle{display:block}
  body.menu-open .nav{
    display:flex;
    position:absolute;
    right:18px; top:64px;
    flex-direction:column;
    padding:12px;
    background: rgba(5,6,10,.96);
    border:1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    min-width: 220px;
  }
  body.menu-open .nav a{padding:10px 8px}
}


/* Cross‑platform tweaks */
:focus-visible{outline: 3px solid rgba(246,184,0,.55); outline-offset: 3px}
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))){
  .site-header{background: rgba(5,6,10,.92)}
}
.site-header{padding-top: env(safe-area-inset-top); }
.footer{padding-bottom: env(safe-area-inset-bottom); }

/* Small phones */
@media (max-width: 420px){
  .section{padding:56px 0}
  .hero{padding:70px 0 44px}
  .pill-row{gap:8px}
  .btn{width:100%}
  .cta-row{flex-direction:column; align-items:stretch}
  .header-inner{min-height:60px}
  body.menu-open .nav{right:12px; left:12px; min-width:auto}
}


/* ===== FIX: Services dropdown always visible + black text ===== */
.services-dropdown .dropdown-menu,
.dropdown-menu{
  opacity:1 !important;
  visibility:visible !important;
  display:block !important;
  position:static !important;
  transform:none !important;
}

.services-dropdown .dropdown-menu a,
.dropdown-menu a{
  color:#000 !important;
}
/* ===== END FIX ===== */



/* ===== Premium Services Layout ===== */
.services-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
}
.services-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size:12px;
  font-weight:600;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  text-decoration:none;
  font-weight:700;
  letter-spacing:.01em;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btn--accent{
  background: linear-gradient(180deg, rgba(246,184,0,.98), rgba(246,184,0,.85));
  color:#0b0c10;
  border-color: rgba(246,184,0,.55);
  box-shadow: 0 12px 28px rgba(246,184,0,.12);
}
.btn--accent:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(246,184,0,.16);
}

.services-grid--premium{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
}
.service{
  position:relative;
  overflow:hidden;
}
.service::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius: var(--radius);
  pointer-events:none;
  background:
    radial-gradient(800px 220px at 20% 0%, rgba(246,184,0,.16), transparent 55%),
    radial-gradient(700px 240px at 90% 20%, rgba(255,255,255,.10), transparent 60%);
  opacity:.9;
}
.service > *{position:relative}
.service.card{
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(8px);
}
.service.card:hover{
  transform: translateY(-2px);
  border-color: rgba(246,184,0,.30);
  box-shadow: 0 18px 55px rgba(0,0,0,.42);
}

.service{grid-column: span 4;}
.service--featured{grid-column: span 8;}

.service-head{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:10px;
}
.service-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-weight:900;
  letter-spacing:.02em;
  color:#0b0c10;
  background: linear-gradient(180deg, rgba(246,184,0,.98), rgba(246,184,0,.78));
  box-shadow: 0 12px 26px rgba(246,184,0,.10);
  flex:0 0 auto;
}
.service-title{flex:1 1 auto; min-width:0}
.service-title h3{margin:0 0 6px}
.service-sub{margin:0; font-size:13px}
.service-cta{flex:0 0 auto; margin-left:auto}

.service-details{
  border:1px solid var(--line);
  border-radius: 14px;
  padding:10px 12px;
  background: rgba(0,0,0,.10);
  margin:12px 0 12px;
}
.service-details summary{
  cursor:pointer;
  font-weight:800;
  color: var(--text);
  list-style:none;
}
.service-details summary::-webkit-details-marker{display:none}
.service-details summary::after{
  content:"▾";
  float:right;
  color: var(--muted);
  transform: translateY(-1px);
}
.service-details[open] summary::after{content:"▴"}

.service-list{
  margin:10px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.service-list li{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  font-size:13px;
  color: var(--text);
}

.impact{margin:10px 0 0}
.slide-preview{margin-top:12px}
.slide-preview summary{font-weight:800}

/* Responsive */
@media (max-width: 980px){
  .services-head{flex-direction:column; align-items:flex-start}
  .services-chips{justify-content:flex-start}
  .service{grid-column: span 6;}
  .service--featured{grid-column: span 12;}
}
@media (max-width: 640px){
  .service{grid-column: span 12;}
  .service-head{flex-wrap:wrap}
  .service-cta{width:100%}
  .service-details{padding:10px}
}
/* ===== End Premium Services Layout ===== */
