:root{
  --bg: #0b0e14;
  --surface: #2b1d13;
  --muted: #ffffff;
  --text: #e6ecff;
  --brand: #201803;
  --brand-2: #ffffff;
  --ok: #22c55e;
  --warn: #f59e0b;
  --err: #ef4444;
  --ring: 0 0 0 3px rgba(37, 33, 20, 0.35);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}
*, *::before, *::after{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 10% -10%, rgba(255, 0, 0, 0.1), transparent 60%),
              radial-gradient(900px 700px at 90% 10%, rgba(143,240,232,.08), transparent 60%),
              var(--bg);
  line-height: 1.6;
}
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
.container{ width: min(1200px, 92%); margin: 0 auto; }
.btn{ display: inline-flex; align-items: center; gap: .6rem; padding: .9rem 1.1rem; border-radius: 14px; font-weight: 600; }
.btn-primary{ background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #1c0707; box-shadow: var(--shadow); }
.btn-outline{ border: 1px solid rgba(150,160,181,.35); color: var(--text); }
.btn:hover{ transform: translateY(-1px); }
header{ position: sticky; top: 0; z-index: 50; backdrop-filter: blur(8px); background: rgba(11,14,20,.55); border-bottom: 1px solid rgba(150,160,181,.12); }
.nav{ display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; }
.brand{ display: flex; align-items: center; gap: .75rem; font-weight: 800; letter-spacing: .2px; }
.nav ul{ list-style: none; display: flex; gap: 1.2rem; padding: 0; margin: 0; }
.nav a{ color: var(--muted); font-weight: 600; }
.nav a:hover{ color: var(--text); }
.nav-cta{ display: flex; align-items: center; gap: .7rem; }
.burger{ display: none; border: 1px solid rgba(150,160,181,.3); padding: .55rem .7rem; border-radius: 12px; background: transparent; color: var(--text); }
@media (max-width: 900px){
  .nav ul{ display: none; }
  .burger{ display: inline-flex; }
  .mobile{ display: none; position: absolute; inset: 60px 0 auto 0; background: var(--surface); border-bottom: 1px solid rgba(150,160,181,.12); }
  .mobile a{ display: block; padding: 1rem 5%; color: var(--muted); }
  .mobile a:hover{ color: var(--text); background: rgba(255,255,255,.02); }
}
.hero{ padding: 6rem 0 4rem; text-align: center; }
.eyebrow{ color: var(--brand-2); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; }
.title{ font-size: clamp(2rem, 6vw, 3.6rem); line-height: 1.05; margin: .8rem 0 1rem; }
.subtitle{ color: var(--muted); font-size: clamp(1rem, 2.1vw, 1.25rem); }
.cta-row{ display: flex; gap: .8rem; justify-content: center; margin: 1.6rem 0 0; flex-wrap: wrap; }
.hero-card{ margin: 3rem auto 0; padding: 1.2rem; border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02)); border: 1px solid rgba(150,160,181,.15); box-shadow: var(--shadow); }
.trust{ padding: 1.1rem 0 0; opacity: .9; }
.trust .row{ display: grid; grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 1.2rem; align-items: center; justify-items: center; }
.trust a{ filter: grayscale(100%) contrast(90%) opacity(.85); transition: filter .2s ease; }
.trust a:hover{ filter: none; }
.pill{ border: 1px solid rgba(150,160,181,.35); padding: .2rem .55rem; border-radius: 999px; font-size: .85rem; color: var(--muted); }
@media (max-width: 700px){ .trust .row{ grid-template-columns: repeat(2, 1fr); } }
.section{ padding: 4.5rem 0; }
.section h2{ font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin: 0 0 .8rem; }
.section p.lead{ color: var(--muted); margin: 0 0 1.6rem; }
.grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.card{ background: var(--surface); border: 1px solid rgba(150,160,181,.15); border-radius: var(--radius); padding: 1.1rem; box-shadow: var(--shadow); }
.card h3{ margin: .4rem 0 .5rem; }
.card p{ color: var(--muted); }
@media (max-width: 980px){ .grid{ grid-template-columns: 1fr; } }
.cases .grid{ grid-template-columns: repeat(3, 1fr); }
.case{ display: grid; gap: .8rem; }
.badge{ font-size: .75rem; color: #071c0a; font-weight: 700; display: inline-block; padding: .2rem .55rem; border-radius: 999px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.steps{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: step; }
.step{ position: relative; padding: 1rem; background: var(--surface); border: 1px solid rgba(150,160,181,.15); border-radius: var(--radius); }
.step::before{ counter-increment: step; content: counter(step); position: absolute; top: -12px; left: -12px; width: 36px; height: 36px; display: grid; place-items: center; background: #110d01; border: 1px solid rgba(150,160,181,.25); border-radius: 12px; box-shadow: var(--shadow); font-weight: 800; color: var(--brand-2); }
@media (max-width: 980px){ .steps{ grid-template-columns: 1fr; } }
.pricing .grid{ grid-template-columns: repeat(3, 1fr); }
.price{ display: grid; gap: .7rem; }
.price .num{ font-size: 2.2rem; font-weight: 900; letter-spacing: -1px; }
.price ul{ padding-left: 1.2rem; margin: .2rem 0 0; color: var(--muted); }
.popular{ outline: var(--ring); }
@media (max-width: 980px){ .pricing .grid{ grid-template-columns: 1fr; } }
form{ display: grid; gap: .8rem; max-width: 720px; margin: 0 auto; }
input, textarea{ width: 100%; padding: .9rem 1rem; background: #5a7027; color: var(--text); border: 1px solid rgba(150,160,181,.25); border-radius: 12px; }
input:focus, textarea:focus{ outline: none; box-shadow: var(--ring); border-color: transparent; }
.note{ color: var(--muted); font-size: .9rem; }
footer{ padding: 2.5rem 0 3rem; color: var(--muted); border-top: 1px solid rgba(150,160,181,.15); }
.foot{ display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hidden{ display: none !important; }
.center{ text-align: center; }



/* =========================
   Luxury Coffee & Gold Theme — Global Overrides
   ========================= */
:root{
  --coffee-100:#F3E8D8;
  --coffee-200:#E7D7C0;
  --coffee-300:#D7C3A6;
  --coffee-700:#2b1d13;
  --coffee-800:#1f140d;
  --coffee-900:#120c07;
  --gold-300:#C6A15B;
  --gold-400:#20201f;
  --gold-500:#E0C57A;
  --ink-900:#0b0705;
  --text-strong:#F5F2EC;
  --text-dim:#CDBFAE;
  --radius:22px;
  --shadow-xl:0 22px 44px rgba(0,0,0,.55), 0 6px 16px rgba(0,0,0,.35);
}

/* Backgrounds */
body{
  background:
    radial-gradient(1200px 600px at 100% -10%, rgba(198,161,91,.07), transparent 60%),
    radial-gradient(900px 480px at -10% 20%, rgba(75,53,35,.30), transparent 60%),
    var(--coffee-900) !important;
  color:var(--text-strong);
}

/* Headings & text */
h1,h2,h3,h4,h5,h6{
  color:var(--text-strong) !important;
  letter-spacing:.2px;
}
.lead, p, li, .muted{
  color:var(--text-dim) !important;
}

/* Buttons */
.btn, .btn-outline, .btn-primary{
  border-radius:999px !important;
  font-weight:800 !important;
  letter-spacing:.4px;
  box-shadow:0 10px 24px rgba(0,0,0,.35);
  transition:transform .12s ease, box-shadow .12s ease, background .2s linear;
}
.btn, .btn-primary{
  background: linear-gradient(180deg, var(--gold-500), var(--gold-300) 60%, var(--gold-400)) !important;
  color:#20160f !important;
  border:2px solid rgba(99,72,48,.55) !important;
}
.btn:hover, .btn-primary:hover{
  transform: translateY(-1px);
  box-shadow:0 14px 30px rgba(0,0,0,.45);
}
.btn-outline{
  background:transparent !important;
  color:var(--gold-500) !important;
  border:2px solid var(--gold-300) !important;
}
.btn-outline:hover{
  background:rgba(198,161,91,.12) !important;
}

/* Cards / panels */
.card, .panel, .section.container, .feature, .pricing, .cases .case, #services, #process, #pricing{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)) !important;
  border:1px solid rgba(198,161,91,.18) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-xl) !important;
}

/* Nav */
.header, nav, .mobile{
  background: rgba(18,12,7,.75) !important;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(198,161,91,.18);
}
nav a, .mobile a{ color:var(--text-strong) !important; }
nav a:hover, .mobile a:hover{ color:var(--gold-500) !important; }

/* Links */
a{ color: var(--gold-500); }
a:hover{ color: var(--gold-300); }

/* Dividers */
hr{ border-color: rgba(198,161,91,.24) !important; }

/* Badges/pills */
.badge, .pill{
  background: linear-gradient(180deg, var(--gold-500), var(--gold-300) 60%, var(--gold-400)) !important;
  color:#20160f !important;
  border:1px solid rgba(99,72,48,.55);
  box-shadow:0 10px 24px rgba(0,0,0,.35);
}

/* Forms */
input, textarea, select{
  background:#1a120b !important;
  color:var(--text-strong) !important;
  border:1px solid rgba(198,161,91,.25) !important;
  border-radius:14px !important;
}
input::placeholder, textarea::placeholder{ color: #a48f76 !important; }
label{ color:var(--text-dim) !important; }

/* Footer */
footer{
  color:var(--text-dim) !important;
  border-top:1px solid rgba(198,161,91,.18) !important;
}

/* Hero CTA buttons if any */
.hero .btn{ margin-right:10px; }


/* ===== Scroll Progress Line (Coffee & Gold with teal accent) ===== */
:root{
  --progress-height: 4px;
  --progress-teal: #1AC6C6;      /* subtle teal accent like ref */
  --progress-gold-1: #C6A15B;    /* muted gold */
  --progress-gold-2: #D0B06C;    /* warm gold */
  --progress-gold-3: #E0C57A;    /* bright gold */
}
#scroll-progress{
  position: fixed;
  top: 0; left: 0;
  height: var(--progress-height);
  width: 0%;
  z-index: 9999;
  background: linear-gradient(90deg, var(--progress-teal) 0%, var(--progress-gold-1) 22%, var(--progress-gold-2) 55%, var(--progress-gold-3) 100%);
  box-shadow: 0 0 12px rgba(224,197,122,.45), 0 0 2px rgba(26,198,198,.25);
  transition: width .08s ease-out;
}
/* thin separator below the bar for depth */
body::before{
  content:"";
  position: fixed; top: var(--progress-height); left:0; right:0;
  height: 1px; background: rgba(255,255,255,.06);
  z-index: 9998;
}





/* ==== Deep Black Luxury Overrides for Process Section ==== */
#process .card {
  background: linear-gradient(180deg, #0b0b0b, #000000) !important;
  border: 1px solid rgba(198,161,91,0.28) !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 32px rgba(0,0,0,0.75), 0 4px 12px rgba(0,0,0,0.55) !important;
  color: #F5F2EC !important;
}

#process .card h3,
#process .card strong {
  color: #E0C57A !important;
}

#process .step-number,
#process .badge,
#process .pill {
  background: linear-gradient(180deg, #E0C57A, #C6A15B) !important;
  color: #1a120b !important;
  font-weight: 800 !important;
  border: 2px solid #2b1d13 !important;
  box-shadow: 0 5px 10px rgba(0,0,0,0.55) !important;
}


/* === User-requested tweaks (2025-09-27) === */

/* 1) Remove all link underlines in every state */
a, a:link, a:visited, a:hover, a:active { text-decoration: none !important; }

/* 2) Make card titles/descriptions slightly smaller so the border line shows more */
.case h3 { font-size: clamp(1.05rem, 2.4vw, 1.35rem); line-height: 1.25; }
.case p { font-size: 0.95rem; line-height: 1.5; }

/* 3) Give cards a touch more visible border */
.card { border-color: rgba(150,160,181,.22) !important; }


/* === Remove nav underline === */
header nav ul { border-bottom: none !important; }


/* === Force remove nav underline from menu items === */
header nav ul,
header nav li,
header nav a {
  border-bottom: none !important;
  box-shadow: none !important;
}


/* === Kill header bar underline completely === */
header { border-bottom: none !important; box-shadow: none !important; }
header::before, header::after { content: none !important; display: none !important; }


/* === Final fix: remove only the nav bar underline (not text) === */
header {
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
}


/* === Mobile centering & layout (<=640px) === */
@media (max-width: 640px) {
  .section.container, .container { width: 94% !important; margin: 0 auto !important; }
  h1, h2, h3, .lead, p { text-align: center !important; }
  .hero, header .desktop, .nav-cta { text-align: center !important; justify-content: center !important; }
  .grid { grid-template-columns: 1fr !important; }
  .cases .grid { grid-template-columns: 1fr !important; }
  .card { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
  .badge { margin-left: auto !important; margin-right: auto !important; display: inline-flex !important; }
  .btn { margin-left: auto !important; margin-right: auto !important; display: inline-flex !important; }
  /* tighten spacing so content fits */
  .card { padding: 1rem !important; }
  .section { padding-top: 2rem !important; padding-bottom: 2rem !important; }
}
