
:root{
  --bg:            #0a0a0c;
  --bg-soft:       #101013;
  --surface:       #17171b;
  --surface-2:     #1e1e24;
  --border:        #2a2a31;
  --border-soft:   #232329;

  --accent:        #ff5a1f;
  --accent-2:      #ff8a4c;
  --accent-dim:    #4a2313;

  --pass:          #3ddc84;
  --fail:          #ff5a5f;

  --text:          #f4f3ef;
  --text-muted:    #9a9aa2;
  --text-faint:    #5c5c64;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;

  --container-max: 1220px;

  --ease: cubic-bezier(.16,.84,.44,1);
}

::selection{ background: var(--accent); color: #0a0a0c; }

html{ scroll-behavior: smooth; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container-cp{
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

/* =========================================================
   Typography
   ========================================================= */
.font-display{
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.02em;
}
.font-mono{
  font-family: 'IBM Plex Mono', monospace;
}

h1,h2,h3,h4,h5,h6{ font-family:'Bricolage Grotesque', sans-serif; letter-spacing:-0.02em; margin:0; }

.eyebrowsec{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrowsec::before{
  content:"";
  width:7px; height:7px;
  background: var(--accent);
  border-radius: 2px;
  display:inline-block;
  transform: rotate(45deg);
}

.section-head{
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 76px);
}
.section-head h2{
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 16px;
}
.section-head p{
  color: var(--text-muted);
  font-size: 17px;
}
.section-head.head-split{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 40px;
  max-width: none;
}
.section-head.head-split .head-left{ max-width: 560px; }
.section-head.head-split .head-right{
  max-width: 320px;
  color: var(--text-muted);
  font-size: 15px;
  padding-bottom: 6px;
  text-align: right;
}
@media (max-width: 767px){
  .section-head.head-split{ flex-direction: column; align-items: flex-start; }
  .section-head.head-split .head-right{ text-align: left; }
}

.text-muted-cp{ color: var(--text-muted); }
.text-accent{ color: var(--accent); }
.italic-serif{ font-style: italic; font-weight: 400; color: var(--accent); }

section{ position: relative; }
.section-pad{ padding: clamp(64px, 9vw, 132px) 0; }
.divider-line{ border-top: 1px solid var(--border-soft); }

/* =========================================================
   Buttons
   ========================================================= */
.btn-cp{
  font-family:'Inter', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn-cp:active{ transform: scale(.97); }

.btn-primary-cp{
  background: var(--accent);
  color: #0a0a0c;
}
.btn-primary-cp:hover{ background: var(--accent-2); color:#0a0a0c; }

.btn-outline-cp{
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline-cp:hover{ border-color: var(--accent); color: var(--accent); }

.btn-ghost-cp{
  background: transparent;
  color: var(--text);
  padding-left: 4px; padding-right: 4px;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}
.btn-ghost-cp:hover{ color: var(--accent); border-color: var(--accent); }

.btn-arrow{
  width: 16px; height: 16px;
  flex-shrink: 0;
  transition: transform .35s var(--ease);
}
.btn-cp:hover .btn-arrow{ transform: translate(3px,-3px); }

/* =========================================================
   Navbar
   ========================================================= */
.cp-nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .4s ease, border-color .4s ease, padding .4s ease;
  border-bottom: 1px solid transparent;
}
.cp-nav.is-scrolled{
  background: rgba(10,10,12,0.86);
  backdrop-filter: blur(14px);
  border-color: var(--border-soft);
  padding: 12px 0;
}
.cp-nav .container-cp{
  display:flex; align-items:center; justify-content:space-between;
}
.cp-logo{
  display:flex; align-items:center; gap:10px;
  font-family:'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.cp-logo .mark{
  width: 26px; height:26px;
  border-radius: 7px;
  background: var(--accent);
  display:flex; align-items:center; justify-content:center;
  color:#0a0a0c;
  font-size: 15px;
  flex-shrink:0;
}
.cp-links{
  display:flex; align-items:center; gap: 36px;
  list-style:none; margin:0; padding:0;
}
.cp-links a{
  color: var(--text-muted);
  text-decoration:none;
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color .25s ease;
}
.cp-links a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}
.cp-links a:hover, .cp-links a.active{ color: var(--text); }
.cp-links a:hover::after, .cp-links a.active::after{ width:100%; }

.cp-nav-cta{ display:flex; align-items:center; gap:18px; }

.cp-burger{
  display:none;
  width: 40px; height:40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  align-items:center; justify-content:center;
  flex-direction: column;
  gap: 5px;
}
.cp-burger span{ width:16px; height:1px; background: var(--text); display:block; }

.cp-mobile-menu{
  position: fixed; inset:0;
  background: var(--bg);
  z-index: 999;
  display:flex; flex-direction:column;
  padding: 100px 28px 40px;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
}
.cp-mobile-menu.open{ transform: translateY(0); }
.cp-mobile-menu a{
  color: var(--text);
  text-decoration:none;
  font-family:'Bricolage Grotesque', sans-serif;
  font-size: 34px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

@media (max-width: 991px){
  .cp-links{ display:none; }
  .cp-nav-cta .btn-cp span.desktop-only{ display:none; }
  .cp-burger{ display:flex; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero{
  padding: 168px 0 80px;
  position: relative;
  overflow:hidden;
}
.hero-grid-bg{
  position:absolute; inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black 30%, transparent 80%);
  pointer-events:none;
}
.hero-glow{
  position:absolute;
  top:-180px; right:-140px;
  width: 620px; height:620px;
  background: radial-gradient(circle, rgba(255,90,31,0.28), transparent 70%);
  filter: blur(40px);
  pointer-events:none;
}
.hero-row{ display:flex; align-items:flex-end; gap: 50px; flex-wrap:wrap; }
.hero-copy{ flex:1 1 560px; max-width:640px; }
.hero-copy .eyebrowsec{ margin-bottom: 22px; }
.hero-title{
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 26px;
}
.hero-title em{ font-style: italic; font-weight: 400; color: var(--accent); }
.hero-sub{
  color: var(--text-muted);
  font-size: 18px;
  max-width: 460px;
  margin-bottom: 34px;
}
.hero-cta-row{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.hero-cta-note{ font-size:13.5px; color: var(--text-faint); font-family:'IBM Plex Mono',monospace; }

/* terminal widget - signature element */
.term-card{
  flex: 0 1 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
}
.term-head{
  display:flex; align-items:center; gap:8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface-2);
}
.term-dot{ width:9px; height:9px; border-radius:50%; background: var(--border); }
.term-title{
  margin-left:8px;
  font-family:'IBM Plex Mono',monospace;
  font-size: 12px;
  color: var(--text-muted);
}
.term-body{
  padding: 20px 18px 22px;
  font-family:'IBM Plex Mono',monospace;
  font-size: 13px;
  min-height: 232px;
}
.term-line{
  display:flex; align-items:center; gap:10px;
  padding: 6px 0;
  color: var(--text-muted);
  opacity:0;
}
.term-line .tick{
  width:15px; height:15px;
  border-radius:4px;
  display:flex; align-items:center; justify-content:center;
  font-size: 10px;
  flex-shrink:0;
  background: rgba(61,220,132,0.12);
  color: var(--pass);
}
.term-line.fail .tick{ background: rgba(255,90,95,0.14); color: var(--fail); }
.term-line .file{ color: var(--text); }
.term-summary{
  margin-top:14px; padding-top:14px;
  border-top:1px dashed var(--border-soft);
  display:flex; justify-content:space-between;
  font-size: 12px; color: var(--text-faint);
}
.term-summary b{ color: var(--pass); font-weight:600; }

.hero-stats{
  display:flex; gap: clamp(28px,5vw,64px);
  margin-top: 76px;
  padding-top: 30px;
  border-top: 1px solid var(--border-soft);
  flex-wrap:wrap;
}
.hero-stat b{
  display:block;
  font-family:'Bricolage Grotesque',sans-serif;
  font-size: clamp(26px,3vw,36px);
  font-weight:600;
}
.hero-stat span{ color: var(--text-muted); font-size: 13.5px; }

/* =========================================================
   Marquee band (signature repeat)
   ========================================================= */
.marquee-band{
  background: var(--accent);
  color: #0a0a0c;
  padding: 22px 0;
  overflow:hidden;
  white-space:nowrap;
}
.marquee-track{
  display:inline-flex;
  align-items:center;
  gap: 40px;
  will-change: transform;
}
.marquee-track span{
  font-family:'Bricolage Grotesque',sans-serif;
  font-weight:700;
  font-size: clamp(26px,4vw,44px);
  letter-spacing:-0.01em;
  display:inline-flex; align-items:center; gap:40px;
}
.marquee-track span::after{ content:"—"; opacity:.5; margin-left:40px; }

/* =========================================================
   Cards / Work / Services
   ========================================================= */
.card-cp{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  height:100%;
  transition: border-color .35s ease, transform .35s var(--ease);
}
.card-cp:hover{ border-color: rgba(255,90,31,0.4); transform: translateY(-4px); }

.work-card{
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  height:100%;
  display:flex; flex-direction:column;
}
.work-visual{
  aspect-ratio: 4/3;
  position:relative;
  overflow:hidden;
  background: linear-gradient(160deg, var(--surface-2), var(--bg-soft));
}
.work-visual svg{ width:100%; height:100%; }
.work-body{ padding: 24px 26px 28px; }
.work-tag{
  font-family:'IBM Plex Mono',monospace;
  font-size: 11.5px;
  color: var(--accent);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.work-body h3{ font-size: 21px; font-weight:600; margin: 10px 0 8px; }
.work-body p{ color: var(--text-muted); font-size: 14.5px; margin-bottom:0; }

/* Services tab list */
.services-wrap{ display:flex; gap: 56px; align-items:flex-start; flex-wrap:wrap; }
.services-list{ flex: 1 1 380px; list-style:none; padding:0; margin:0; }
.services-list li{
  border-top: 1px solid var(--border-soft);
  padding: 24px 0;
  cursor:pointer;
  display:flex; align-items:center; gap: 20px;
  transition: padding-left .3s ease;
}
.services-list li:last-child{ border-bottom: 1px solid var(--border-soft); }
.services-list li .num{
  font-family:'IBM Plex Mono',monospace;
  font-size: 13px;
  color: var(--text-faint);
  width: 26px;
}
.services-list li h4{ font-size: 19px; font-weight:600; margin-bottom:4px; }
.services-list li p{
  color: var(--text-muted); font-size:14px; margin:0;
  max-height:0; overflow:hidden; opacity:0;
  transition: max-height .4s var(--ease), opacity .3s ease, margin-top .3s ease;
}
.services-list li.active{ padding-left: 8px; }
.services-list li.active .num, .services-list li.active h4{ color: var(--accent); }
.services-list li.active p{ max-height: 80px; opacity:1; margin-top:6px; }
.services-list li .tag-pill{
  margin-left:auto;
  font-family:'IBM Plex Mono',monospace;
  font-size:11px; color: var(--text-faint);
  border:1px solid var(--border);
  padding: 4px 10px; border-radius:999px;
}

.services-panel{
  flex: 1 1 380px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.services-panel .panel-eyebrow{
  font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--text-faint);
  display:flex; justify-content:space-between; margin-bottom:24px;
}
.services-panel h3{ font-size:26px; font-weight:600; margin-bottom:14px; }
.services-panel p{ color: var(--text-muted); font-size:15px; margin-bottom: 20px; }
.services-panel ul{ list-style:none; padding:0; margin:0 0 26px; }
.services-panel ul li{
  display:flex; align-items:center; gap:10px;
  padding: 9px 0; font-size:14.5px; color: var(--text);
  border-top: 1px solid var(--border-soft);
}
.services-panel ul li:first-child{ border-top:none; }
.services-panel ul li svg{ flex-shrink:0; color: var(--accent); }

/* =========================================================
   Process
   ========================================================= */
.process-shell{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow:hidden;
}
.process-tabs{ display:flex; flex-wrap:wrap; border-bottom:1px solid var(--border-soft); }
.process-tab{
  flex:1 1 25%;
  padding: 20px 22px;
  border-right: 1px solid var(--border-soft);
  cursor:pointer;
  font-family:'IBM Plex Mono',monospace;
  font-size: 12.5px;
  color: var(--text-faint);
  transition: background .3s ease, color .3s ease;
}
.process-tab:last-child{ border-right:none; }
.process-tab b{ display:block; color: var(--text); font-family:'Bricolage Grotesque',sans-serif; font-size:16px; font-weight:600; margin-top:4px; }
.process-tab.active{ background: var(--surface-2); color: var(--accent); }
.process-tab.active b{ color: var(--text); }

.process-content{ display:flex; flex-wrap:wrap; }
.process-visual{
  flex: 1 1 320px;
  background: radial-gradient(circle at 30% 20%, rgba(255,90,31,0.16), transparent 60%), var(--bg-soft);
  min-height: 320px;
  display:flex; align-items:center; justify-content:center;
  padding: 30px;
}
.process-detail{ flex: 1 1 380px; padding: 44px; }
.process-detail p{ color: var(--text-muted); font-size: 15px; margin-bottom: 26px; max-width:460px; }
.process-metric{ display:flex; gap: 34px; margin-bottom:30px; }
.process-metric b{ display:block; font-family:'Bricolage Grotesque',sans-serif; font-size:28px; font-weight:600; }
.process-metric span{ color: var(--text-faint); font-size:12.5px; }

/* =========================================================
   Analytics dashboard mock
   ========================================================= */
.dash-shell{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 34px);
}
.dash-grid{ display:grid; grid-template-columns: 1.15fr 1fr; gap: 20px; }
@media (max-width: 991px){ .dash-grid{ grid-template-columns: 1fr; } }
.dash-panel{
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px;
}
.dash-panel h5{
  font-size:13px; font-weight:600; color: var(--text-muted);
  text-transform:uppercase; letter-spacing:.05em; margin-bottom:18px;
  font-family:'IBM Plex Mono',monospace; font-weight:500;
}
.ring-wrap{ display:flex; align-items:center; gap: 22px; }
.ring-num{ font-family:'Bricolage Grotesque',sans-serif; font-size:42px; font-weight:700; }
.env-row{
  display:flex; align-items:center; justify-content:space-between;
  padding: 11px 0; border-top: 1px solid var(--border-soft);
  font-size: 13.5px;
}
.env-row:first-of-type{ border-top:none; }
.env-status{
  font-family:'IBM Plex Mono',monospace; font-size:11px;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(61,220,132,0.12); color: var(--pass);
}
.env-status.warn{ background: rgba(255,90,31,0.14); color: var(--accent-2); }
.bar-track{ height:6px; border-radius:3px; background: var(--border-soft); overflow:hidden; margin-top:6px; }
.bar-fill{ height:100%; background: var(--accent); border-radius:3px; width:0%; }
.chart-wrap{ height: 150px; }

.stat-strip{ display:flex; flex-wrap:wrap; gap: 14px; margin-top: 20px; }
.stat-chip{
  flex:1 1 150px;
  background: var(--surface-2);
  border:1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.stat-chip b{ display:block; font-family:'Bricolage Grotesque',sans-serif; font-size:22px; font-weight:700; }
.stat-chip span{ color: var(--text-faint); font-size:12px; }

/* =========================================================
   Pricing
   ========================================================= */
.price-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  height:100%;
  display:flex; flex-direction:column;
  transition: transform .35s var(--ease), border-color .3s ease;
}
.price-card:hover{     border: 1px solid #ff5a1f; transform: translateY(-6px); }
.price-card.featured{
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255,90,31,0.08), var(--surface) 40%);
  position:relative;
}
.price-card.featured::before{
  content:"Most chosen";
  position:absolute; top:-13px; left:30px;
  background: var(--accent); color:#0a0a0c;
  font-size:11.5px; font-weight:700; font-family:'IBM Plex Mono',monospace;
  padding: 5px 12px; border-radius: 999px;
}
.price-tag{ color: #000000;
    font-size: 13px;
    margin-bottom: 6px; }
.price-card h3{ font-size:22px; font-weight:600; margin-bottom: 18px; }
.price-amount{ display:flex; align-items:flex-end; gap:6px; margin-bottom: 4px; }
.price-amount b{ font-family:'Bricolage Grotesque',sans-serif; font-size:48px; font-weight:700; }
.price-amount span{ color: var(--text-faint); font-size:14px; padding-bottom:8px; }
.price-note{ color: var(--text-faint); font-size:12.5px; margin-bottom: 26px; }
.price-feats{ list-style:none; padding:0; margin: 0 0 30px; flex:1; }
.price-feats li{
  display:flex; align-items:flex-start; gap:10px;
  padding: 10px 0; font-size:14px; color: var(--text-muted);
  border-top:1px solid var(--border-soft);
}
.price-feats li:first-child{ border-top:none; }
.price-feats li svg{ color: var(--accent); flex-shrink:0; margin-top:2px; }

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-item{ border-top:1px solid var(--border-soft); }
.faq-item:last-child{ border-bottom:1px solid var(--border-soft); }
.faq-q{
  display:flex; align-items:center; justify-content:space-between;
  padding: 24px 4px;
  cursor:pointer;
  font-size: 17px; font-weight:600;
}
.faq-q .plus{
  width:26px; height:26px; border-radius:50%;
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; position:relative;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:""; position:absolute; background: var(--text-muted);
}
.faq-q .plus::before{ width:9px; height:1px; }
.faq-q .plus::after{ width:1px; height:9px; transition: transform .3s ease; }
.faq-item.open .plus::after{ transform: rotate(90deg); opacity:0; }
.faq-item.open .plus{ border-color: var(--accent); }
.faq-a{
  max-height:0; overflow:hidden; opacity:0;
  transition: max-height .4s var(--ease), opacity .3s ease;
  padding: 0 4px;
}
.faq-item.open .faq-a{ max-height:220px; opacity:1; padding-bottom:22px; }
.faq-a p{ color: var(--text-muted); font-size:14.5px; max-width:640px; margin:0; }

/* =========================================================
   Team / Testimonials
   ========================================================= */
.team-card{ text-align:left; }
.team-photo{
  aspect-ratio: 3/3.4;
  border-radius: var(--radius-lg);
  overflow:hidden;
  margin-bottom: 18px;
  background: var(--surface-2);
  position:relative;
}
.team-photo img{ width:100%; height:100%; object-fit:cover; filter: grayscale(60%); transition: filter .4s ease, transform .5s ease; }
.team-card:hover .team-photo img{ filter:grayscale(0%); transform: scale(1.04); }
.team-card h4{ font-size:18px; font-weight:600; margin-bottom:2px; }
.team-card span{ color: var(--text-muted); font-size:13.5px; }

.testi-card{
  background: var(--surface);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  height:100%;
}
.testi-quote{ font-size:16px; line-height:1.6; margin-bottom:24px; }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-person img{ width:42px; height:42px; border-radius:50%; object-fit:cover; }
.testi-person b{ display:block; font-size:14px; }
.testi-person span{ color: var(--text-faint); font-size:12.5px; }

/* =========================================================
   Forms
   ========================================================= */
.form-cp label{
  font-family:'IBM Plex Mono',monospace;
  font-size: 12px; text-transform:uppercase; letter-spacing:.06em;
  color: var(--text-faint); margin-bottom: 8px; display:block;
}
.form-cp .form-control, .form-cp .form-select{
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14.5px;
}
.form-cp .form-control:focus, .form-cp .form-select:focus{
  background: var(--surface);
  border-color: var(--accent);
  color: var(--text);
  box-shadow: 0 0 0 3px rgba(255,90,31,0.15);
}
.form-cp .form-control::placeholder{ color: var(--text-faint); }
.form-cp textarea{ resize: vertical; min-height: 130px; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(50px, 7vw, 90px);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 50% 0%, rgba(255,90,31,0.18), transparent 60%);
}
.cta-band h2{ font-size: clamp(32px,5vw,54px); font-weight:600; margin-bottom:26px; position:relative; }
.cta-band .btn-cp{ position:relative; }

/* =========================================================
   Footer
   ========================================================= */
.cp-footer{ padding: 90px 0 0; border-top: 1px solid var(--border-soft); }
.footer-top{ display:flex; justify-content:space-between; gap: 60px; flex-wrap:wrap; padding-bottom: 60px; }
.footer-brand{ max-width: 320px; }
.footer-brand p{ color: var(--text-muted); font-size:14.5px; margin: 18px 0 22px; }
.footer-cols{ display:flex; gap: 60px; flex-wrap:wrap; }
.footer-col h6{
  font-family:'IBM Plex Mono',monospace; font-size:11.5px; text-transform:uppercase;
  letter-spacing:.08em; color: var(--text-faint); margin-bottom:18px;
}
.footer-col ul{ list-style:none; padding:0; margin:0; }
.footer-col li{ margin-bottom: 12px; }
.footer-col a{ color: var(--text-muted); text-decoration:none; font-size:14.5px; transition: color .25s ease; }
.footer-col a:hover{ color: var(--accent); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding: 26px 0; border-top:1px solid var(--border-soft);
  color: var(--text-faint); font-size:13px; flex-wrap:wrap; gap:12px;
}
.social-row{ display:flex; gap:14px; }
.social-row a{
  width:36px; height:36px; border-radius:50%;
  border:1px solid var(--border); display:flex; align-items:center; justify-content:center;
  color: var(--text-muted); text-decoration:none; transition: all .25s ease;
}
.social-row a:hover{ border-color:var(--accent); color:var(--accent); }

@media (max-width: 767px){
  .footer-top{ flex-direction:column; gap: 40px; }
}

/* =========================================================
   Reveal animation base states (GSAP controlled)
   ========================================================= */
.reveal-up{ opacity:0; transform: translateY(40px); }
.reveal-fade{ opacity:0; }

/* Page hero (inner pages) */
.page-hero{ padding: 160px 0 70px; }
.page-hero .eyebrowsec{ margin-bottom:20px; }
.page-hero h1{ font-size: clamp(38px,5.4vw,64px); font-weight:600; line-height:1.06; max-width: 780px; }
.page-hero p.lead-p{ color: var(--text-muted); font-size:18px; max-width:560px; margin-top:22px; }

/* Values grid */
.value-card{
  background: var(--surface); border:1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;height:100%;
}
.value-card .vnum{ font-family:'IBM Plex Mono',monospace; color:var(--accent); font-size:13px; margin-bottom:16px; display:block; }
.value-card h4{ font-size:19px; font-weight:600; margin-bottom:10px; }
.value-card p{ color: var(--text-muted); font-size:14.5px; margin:0; }

/* Contact info cards */
.contact-info-card{
  display:flex; gap:16px; padding: 22px 0;
  border-top:1px solid var(--border-soft);
}
.contact-info-card:first-child{ border-top:none; }
.contact-info-card .icn{
  width:44px; height:44px; border-radius: 12px;
  background: var(--surface-2); border:1px solid var(--border-soft);
  display:flex; align-items:center; justify-content:center;
  color: var(--accent); flex-shrink:0;
}
.contact-info-card h5{ font-size:15.5px; font-weight:600; margin-bottom:4px; }
.contact-info-card p{ color: var(--text-muted); font-size:14px; margin:0; }
.contact-info-card a{ color: var(--text-muted); text-decoration:none; }
.contact-info-card a:hover{ color: var(--accent); }

/* misc */
.map-box{
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow:hidden;
  min-height: 280px;
  background: var(--surface);
  position:relative;
}
.map-box iframe{ width:100%; height:100%; min-height:280px; filter: grayscale(1) invert(0.92) contrast(0.9); border:0; }

.badge-soft{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid var(--border); border-radius:999px;
  padding: 6px 14px; font-size:12.5px; color: var(--text-muted);
  font-family:'IBM Plex Mono',monospace;
}

@media (max-width: 575px){
  .hero{ padding-top: 140px; }
  .services-list li{ flex-wrap:wrap; }
}

.marquee-track span{
    color: #000!important;
}
.cont-sec{
    margin-bottom: 100px;
}
.cp-logo img{
    width: 200px;
}
.inn-pric{
    margin-bottom: 100px;
}