/* =============  BASE / LAYOUT  ============= */
:root{
  --brand:#ff7a00;
  --fg:#ffffff;
  --fg-muted:#d1d5db;
  --panel: rgba(255,255,255,0.06);
  --panel-border: rgba(255,255,255,0.10);
  --panel-border-hover: rgba(255,122,0,0.55);
  --shadow-1: 0 8px 24px rgba(0,0,0,0.35);
  --shadow-2: 0 14px 40px rgba(0,0,0,0.45);
  --hero-max: 1100px;
}

body {
  background-color: #111827;
  color: #111827;
  overscroll-behavior: none;
}

/* fixed canvas background */
#canvas-container{
  position: fixed; inset: 0;
  z-index:1;
  background: linear-gradient(180deg, #292626 0%, #111318 100%);
}
#interactive-bg{ width:100%; height:100%; display:block; }

/* Change the scroll container positioning */
#scroll-container { 
    position: relative;  /* Changed from absolute */
    width: 100%;
    min-height: 100vh;
    z-index: 2; 
}

/* Add this to ensure the canvas stays behind all content */
#canvas-container {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, #292626 0%, #111318 100%);
}

/* Add this to ensure footer visibility */
.site-footer {
    position: relative;
    z-index: 2;
    margin-top: 2rem;  /* Add some spacing from the content above */
}

/* header */
.service-page-header{ position:fixed; inset-inline:0; top:0; z-index:10; }

/* =============  CONTENT SECTIONS  ============= */
.content-section{
  width:100%;
  padding: clamp(80px, 8vw, 120px) 40px;
  max-width: 1180px;
  margin:0 auto;
  position:relative;
}

/* =======================  HERO ======================= */
.service-hero{
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: clamp(48px, 10vh, 80px);
}

.hero--pro .hero-inner{
  width:100%;
  max-width: var(--hero-max);
  margin-inline:auto;
  padding-inline: clamp(16px, 3vw, 24px);
}

.hero-title{
  color:#fff;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 10px 0;
  text-wrap: balance;
  font-size: clamp(28px, 5.2vw, 56px);
  text-shadow:
    0 0 10px rgba(255,122,0,0.60),
    0 0 24px rgba(255,122,0,0.40),
    0 8px 30px rgba(0,0,0,0.65);
}

.hero-lead{
  max-width: 68ch;
  margin: 8px auto 0 auto;
  color: var(--fg-muted);
  font-size: clamp(15.5px, 1.6vw, 18px);
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* ===================  USP CARDS =================== */
.hero-usps{
  margin-top: clamp(24px, 5vw, 40px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.2vw, 24px);
}

.hero-usps .usp{
  position:relative;
  overflow:hidden;
  height: 100%;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: clamp(18px, 2.2vw, 22px);
  text-align:center;
  color: var(--fg);
  box-shadow: var(--shadow-1);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display:flex;
  flex-direction:column;
  align-items:center;
}

.hero-usps .usp::before{
  content:"";
  position:absolute; inset:auto -20% -40% -20%;
  height: 140%;
  background: radial-gradient(60% 60% at 50% 30%,
               rgba(255,122,0,0.15) 0%, rgba(255,122,0,0.05) 35%, transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events:none;
}

.usp-icon{
  width: 56px; height: 56px;
  margin: 0 auto 10px auto;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,122,0,0.15), rgba(255,122,0,0.05));
  display:grid; place-items:center;
  box-shadow:
    0 6px 18px rgba(255,122,0,0.25),
    inset 0 0 0 1px rgba(255,122,0,0.35);
  flex: 0 0 auto;
}

.usp-icon span{ font-size: 24px; filter: drop-shadow(0 0 6px rgba(255,122,0,.55)); }
.usp-title{ font-size: clamp(17px, 1.6vw, 20px); font-weight: 700; margin: 6px 0; color:#fff; }
.usp-text{ color: var(--fg-muted); font-size: clamp(14px, 1.2vw, 16px); line-height: 1.55; margin: 0; }

@media (hover: hover){
  .hero-usps .usp:hover{
    transform: translateY(-8px);
    border-color: var(--panel-border-hover);
    box-shadow: var(--shadow-2);
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.05));
  }
  .hero-usps .usp:hover::before{ opacity: 1; }
}

/* ===================  GLASS SECTIONS =================== */
.glass-section{
  background: rgba(249,250,251,0.85);
  border-radius: 20px;
  margin-bottom: 20vh;
  padding: 56px 36px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.process-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
  align-items: stretch;
}
.process-step{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:24px;
  box-shadow:0 8px 24px rgba(17,24,39,.05);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
  display:flex; flex-direction:column;
}
.process-step:hover{ transform: translateY(-5px); box-shadow:0 12px 32px rgba(17,24,39,.08); }
.process-icon{ width:48px;height:48px;background:var(--brand);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:16px;}
.process-icon svg{ width:24px;height:24px;}
.process-step h3{ font-size:1.2rem;margin:0 0 8px 0;}
.process-step p{ color:#6b7280;margin:0;}

/* Calendly + footer */
#booking{ margin-bottom:10vh; }
.calendly-container{ border-radius:16px; overflow:hidden; margin-top:32px; border:1px solid #e5e7eb; }
.site-footer{ background-color:#1a1c21; color:#ccc; padding:50px 0; font-size:15px; }

/* ===================  RESPONSIVE POLISH =================== */
@media (max-width: 1024px){
  .hero-usps{ grid-template-columns: repeat(2, 1fr); }
  .process-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 680px){
  .content-section{ padding: 72px 20px; }
  .service-hero{ padding-top: 160px; }
  .hero-title{
    font-size: clamp(26px, 7.2vw, 36px);
    line-height: 1.12;
    text-shadow:
      0 0 10px rgba(255,122,0,0.45),
      0 4px 18px rgba(0,0,0,0.5);
  }
  .hero-lead{ font-size: 15.5px; padding-inline: 4px; }
  .hero-usps{ grid-template-columns: 1fr; gap: 14px; margin-top: 18px; }
  .hero-usps .usp{ padding: 16px; border-radius: 14px; box-shadow: 0 10px 22px rgba(0,0,0,0.35); }
  .usp-icon{ width:50px;height:50px; border-radius:12px; }
  .usp-icon span{ font-size:22px; }
  .glass-section{ padding: 36px 18px; margin-bottom: 14vh; }
  .process-grid{ gap: 18px; }
  .process-step{ padding:18px; }
}

@media (prefers-reduced-motion: reduce){
  .hero-usps .usp,
  .hero-usps .usp::before{ transition: none; }
}