@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== DESIGN TOKENS ===== */
:root{
  --bg:#070A0F;
  --text: rgba(255,255,255,.94);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.56);

  --line: rgba(255,255,255,.12);
  --line2: rgba(255,255,255,.18);

  --accent:#8B6FFF;
  --accent2:#3DD9FF;
  --accent-glow: rgba(139,111,255,.25);

  --shadow: 0 20px 80px rgba(0,0,0,.65);
  --shadow2: 0 12px 40px rgba(0,0,0,.45);
  --shadow3: 0 8px 30px rgba(0,0,0,.25);

  --r12:12px;
  --r14:14px;
  --r20:20px;
  --r24:24px;
  --r32:32px;

  --max: 1180px;
  --gutter: 40px;
  --ease: cubic-bezier(.19,.98,.28,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ===== RESET & BASE ===== */
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background: var(--bg); }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
  overflow-x:hidden;
  line-height:1.6;
  position: relative;
}
body::before{
  content:'';
  position:fixed;
  inset:0;
  background:
    radial-gradient(1400px 700px at 25% 15%, rgba(139,111,255,.22), transparent 65%),
    radial-gradient(1100px 650px at 75% 25%, rgba(61,217,255,.16), transparent 60%),
    radial-gradient(800px 600px at 50% 80%, rgba(139,111,255,.10), transparent 55%);
  z-index: 0;
  pointer-events: none;
}

a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }

/* ===== LAYOUT SYSTEM ===== */
.section{
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
  background: var(--bg);
}
.container{
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

/* ===== NAV ===== */
.nav{
  position: sticky;
  top:0;
  z-index: 50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 20px var(--gutter);
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(7,10,15,.75);
  backdrop-filter: blur(20px) saturate(180%);
  transition: all .3s var(--ease);
}
.nav .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav.scrolled{
  padding: 14px var(--gutter);
  background: rgba(7,10,15,.85);
  border-bottom-color: rgba(255,255,255,.14);
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.nav-logo{
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  transition: all .3s var(--ease);
}
.nav-logo:hover .logo-icon{
  transform: scale(1.1) rotate(5deg);
}
.logo-icon{
  width: 32px;
  height: 32px;
  transition: transform .3s var(--ease-spring);
  filter: drop-shadow(0 2px 8px rgba(139,111,255,.4));
}
.logo-text{
  display:flex;
  flex-direction:column;
  gap:2px;
  line-height:1;
}
.logo-name{
  font-weight: 900;
  letter-spacing: .26em;
  font-size: 15px;
  color: rgba(255,255,255,.96);
  text-shadow: 0 0 20px rgba(139,111,255,.3);
}
.logo-subtitle{
  font-weight:700;
  letter-spacing:.08em;
  font-size:9px;
  color: rgba(255,255,255,.65);
  text-transform:uppercase;
}
.nav-links{
  display:flex;
  align-items:center;
  gap: 6px;
  padding: 6px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.nav-link{
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 12px;
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.nav-link::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,111,255,.12), rgba(61,217,255,.08));
  opacity: 0;
  transition: opacity .25s var(--ease);
  border-radius: 12px;
}
.nav-link:hover{
  color: var(--text);
}
.nav-link:hover::before{
  opacity: 1;
}
.nav-link.active{
  color: var(--text);
  background: linear-gradient(135deg, rgba(139,111,255,.18), rgba(61,217,255,.12));
  border: 1px solid rgba(139,111,255,.25);
  box-shadow: 0 4px 20px rgba(139,111,255,.15), inset 0 1px 0 rgba(255,255,255,.1);
}
.nav-right{
  display:flex;
  align-items:center;
  gap: 24px;
}
.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 13px 20px;
  border-radius: 14px;
  border: 1px solid rgba(139,111,255,.50);
  background: linear-gradient(135deg, rgba(139,111,255,.96), rgba(61,217,255,.88));
  color:#FFFFFF;
  font-weight: 900;
  font-size: 14px;
  letter-spacing:.03em;
  box-shadow: 0 20px 50px rgba(139,111,255,.22), 0 12px 30px rgba(0,0,0,.40);
  transition: all .25s var(--ease);
  position:relative;
  overflow:hidden;
  white-space: nowrap;
}
.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav-toggle.active span:nth-child(1){ transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2){ opacity: 0; }
.nav-toggle.active span:nth-child(3){ transform: rotate(-45deg) translate(5px, -5px); }
.nav-cta::before{
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity:0;
  transition: opacity .25s var(--ease);
}
.nav-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(139,111,255,.28), 0 14px 35px rgba(0,0,0,.45);
}
.nav-cta:hover::before{ opacity:1; }
.nav-cta:active{ transform: translateY(0); }

/* ===== HERO ===== */
.hero{
  padding: 80px var(--gutter) 64px;
  position:relative;
  z-index: 1;
  background: var(--bg);
}
.hero .container{
  max-width: var(--max);
  margin: 0 auto;
}
.hero-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  letter-spacing:.03em;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.hero-label::before{
  content:'';
  width:8px;
  height:8px;
  border-radius:50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse{
  0%, 100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.6; transform:scale(.9); }
}
.hero-title{
  margin: 24px 0 16px;
  font-size: clamp(44px, 5.2vw, 74px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.02;
}
.highlight{
  display:inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  transition: opacity .2s ease, transform .2s ease;
  position:relative;
  min-width: 280px;
}
@media (max-width: 768px){
  .highlight{
    min-width: 0;
    display: block;
    text-align: center;
  }
  .hero-title{
    text-align: center;
  }
  .hero-subtitle{
    text-align: center;
  }
  .hero-cta{
    justify-content: center;
  }
}
.hero-subtitle{
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
  max-width: 58ch;
  font-weight:500;
}
.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  align-items:center;
  margin-top: 24px;
}

/* ===== BUTTONS ===== */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 16px 32px;
  border-radius: var(--r14);
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-weight: 800;
  font-size:15px;
  letter-spacing:.02em;
  box-shadow: 0 8px 32px rgba(139,111,255,.35), 0 4px 12px rgba(0,0,0,.25);
  transition: all .25s var(--ease);
}
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(139,111,255,.45), 0 6px 16px rgba(0,0,0,.30);
  filter: brightness(1.1);
}
.btn-primary:active{ transform: translateY(-1px); }

.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 15px 26px;
  border-radius: var(--r14);
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  transition: all .25s var(--ease);
}
.btn-secondary:hover{
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}
.btn-secondary:active{ transform: translateY(0); }

.btn-link{
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size:15px;
  border-bottom: 2px solid rgba(255,255,255,.20);
  padding-bottom: 3px;
  transition: all .2s var(--ease);
}
.btn-link:hover{
  color: var(--accent2);
  border-bottom-color: var(--accent2);
}

/* ===== STATS ===== */
.stats{
  padding: 56px var(--gutter);
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
  position: relative;
  z-index: 10;
  background: var(--bg);
}
.stats .container{
  max-width: var(--max);
  margin: 0 auto;
}
.stat-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-item{
  border-radius: var(--r24);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding: 28px 24px;
  transition: all .3s var(--ease);
  position:relative;
  overflow:hidden;
}
.stat-item::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity:1;
  border-radius: var(--r24) var(--r24) 0 0;
}
.stat-item:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: 0 12px 40px rgba(0,0,0,.20);
}
.stat-item:hover::before{ opacity:1; }
.stat-value{
  font-weight: 900;
  letter-spacing: -1.4px;
  font-size: 48px;
  background: linear-gradient(135deg, #fff 20%, var(--accent2) 80%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.stat-label{
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

/* ===== WORK / PRICING SECTION ===== */
.work{
  padding: 80px var(--gutter);
  position: relative;
  z-index: 20;
  background: var(--bg);
}
.work .container{
  max-width: var(--max);
  margin: 0 auto;
}
.section-title{
  margin: 0 0 28px;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -1.4px;
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.section-subtitle{
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  margin-top: -12px;
  margin-bottom: 48px;
}
.work-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.work-card{
  display:flex;
  flex-direction: column;
  border-radius: var(--r24);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  padding: 32px;
  transition: all .35s var(--ease);
  position:relative;
  overflow:hidden;
}
.work-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:100%;
  background: linear-gradient(135deg, rgba(139,111,255,.08), transparent 50%);
  opacity:0;
  transition: opacity .35s var(--ease);
}
.work-card:hover{
  transform: translateY(-8px);
  border-color: rgba(139,111,255,.35);
  background: linear-gradient(135deg, rgba(139,111,255,.1), rgba(61,217,255,.05));
  box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 0 0 1px rgba(139,111,255,.25), 0 0 40px rgba(139,111,255,.1);
}
.work-card:hover::before{ opacity:1; }
.work-card:hover h3{
  color: var(--accent2);
}
.work-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  margin-bottom: 16px;
  position:relative;
  z-index:1;
}
.work-number{
  font-weight: 800;
  color: rgba(255,255,255,.3);
  font-size: 14px;
  letter-spacing: .15em;
}
.work-status{
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(139,111,255,.4);
  background: rgba(139,111,255,.15);
  color: rgba(255,255,255,.95);
  letter-spacing:.01em;
}
.work-card h3{
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.6px;
  position:relative;
  z-index:1;
  transition: color .3s var(--ease);
}
.work-card p{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
  font-size:15px;
  position:relative;
  z-index:1;
}
.work-tech{
  color: rgba(255,255,255,.5);
  font-weight: 600;
  font-size: 14px;
  letter-spacing:.01em;
  position:relative;
  z-index:1;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ===== BUDGET BANNER ===== */
.budget-banner{
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255,183,77,.12), rgba(255,138,101,.08));
  border: 1px solid rgba(255,183,77,.35);
  border-radius: var(--r14);
  padding: 20px 28px;
  margin-bottom: 12px;
}
.budget-icon{
  width: 48px;
  height: 48px;
  border-radius: var(--r12);
  background: linear-gradient(135deg, #ffb74d, #ff8a65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,183,77,.4);
}
.budget-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.budget-tag{
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.budget-text{
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.budget-price{
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffb74d, #ff8a65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.budget-label{
  font-weight: 600;
  color: var(--text);
}
.budget-divider{
  color: var(--muted2);
  opacity: 0.5;
}
.budget-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ffb74d;
  padding: 11px 22px;
  border-radius: var(--r10);
  border: 2px solid #ffb74d;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.budget-btn:hover{
  background: linear-gradient(135deg, #ffb74d, #ff8a65);
  color: #1a1a1a;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,183,77,.4);
}
.budget-btn svg{
  transition: transform .2s ease;
}
.budget-btn:hover svg{
  transform: translateX(3px);
}
@media (max-width: 768px){
  .budget-banner{ flex-direction: column; text-align: center; gap: 16px; padding: 24px 20px; }
  .budget-content{ align-items: center; justify-content: center; }
  .budget-text{ display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .budget-divider{ display: none; }
  .budget-btn{ width: 100%; justify-content: center; }
}

/* ===== PRICING CARDS ===== */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  margin-top: 24px;
  padding-top: 16px;
}
.pricing-card{
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r24);
  padding: 32px;
  position: relative;
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover{
  transform: translateY(-6px);
  border-color: rgba(139,111,255,.35);
  box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 0 40px rgba(139,111,255,.1);
}
.pricing-featured{
  border-color: rgba(139,111,255,.5);
  background: linear-gradient(135deg, rgba(139,111,255,.12), rgba(61,217,255,.06));
  transform: scale(1.02);
}
.pricing-featured:hover{
  transform: scale(1.02) translateY(-6px);
}
.pricing-badge{
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.pricing-name{
  font-size: 24px;
  font-weight: 800;
  margin: 12px 0 8px;
  letter-spacing: -.5px;
}
.pricing-price{
  margin-bottom: 4px;
}
.price-amount{
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-period{
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
}
.pricing-upfront{
  font-size: 14px;
  color: var(--muted2);
  margin-bottom: 16px;
  font-weight: 500;
}
.pricing-description{
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.pricing-features{
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex-grow: 1;
}
.pricing-features li{
  padding: 10px 0;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-features li:last-child{
  border-bottom: none;
}
.feature-icon{
  width: 20px;
  height: 20px;
  color: var(--accent2);
  flex-shrink: 0;
}
.pricing-btn{
  width: 100%;
  text-align: center;
}
.pricing-note{
  text-align: center;
  font-size: 13px;
  color: var(--muted2);
  margin-top: 12px;
}
.pricing-cta{
  text-align: center;
  padding: 32px 0 16px;
}
.pricing-cta p{
  margin-top: 8px;
  color: var(--muted2);
  font-size: 14px;
}

/* ===== FINE PRINT ===== */
.pricing-fine-print{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r20);
  padding: 32px;
  margin-top: 48px;
}
.pricing-fine-print h4{
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -.3px;
}
.fine-print-icon{
  width: 28px;
  height: 28px;
  min-width: 28px;
  color: var(--accent2);
}
.fine-print-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fine-print-item{
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  display: flex;
  gap: 16px;
}
.fine-print-item strong{
  color: rgba(255,255,255,.88);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.fine-print-item-icon{
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== PROOF / VALUE SECTION ===== */
.proof{
  padding: 80px var(--gutter);
  position: relative;
  z-index: 30;
  background: var(--bg);
}
.proof .container{
  max-width: var(--max);
  margin: 0 auto;
}
.value-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.value-item{
  border-radius: var(--r24);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding: 36px 28px;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.value-item::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.value-item:hover{
  transform: translateY(-6px);
  border-color: rgba(139,111,255,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.value-item:hover::before{
  opacity: 1;
}
.value-number{
  font-weight: 900;
  font-size: 14px;
  color: rgba(139,111,255,.85);
  letter-spacing: .2em;
  margin-bottom: 16px;
}
.value-item h3{
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.5px;
}
.value-item p{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

/* ===== TRADES SECTION ===== */
.trades{
  padding: 60px var(--gutter);
  position: relative;
  z-index: 35;
  background: var(--bg);
}
.trades .container{
  max-width: var(--max);
  margin: 0 auto;
}
.trades-title{
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -.6px;
}
.trades-subtitle{
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 16px;
}
.trades-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.trades-item{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  transition: all .25s var(--ease);
  font-weight: 700;
  font-size: 15px;
}
.trades-item:hover{
  border-color: rgba(139,111,255,.3);
  background: rgba(139,111,255,.06);
  transform: translateY(-2px);
}
.trades-icon{
  width: 24px;
  height: 24px;
  color: var(--accent2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trades-lucide{
  width: 24px;
  height: 24px;
}

/* ===== ALSO OFFER SECTION ===== */
.also-offer{
  padding: 48px var(--gutter);
  background: linear-gradient(135deg, rgba(139,111,255,.06), rgba(61,217,255,.03));
  border-top: 1px solid rgba(139,111,255,.15);
  border-bottom: 1px solid rgba(139,111,255,.15);
  position: relative;
  z-index: 36;
}
.also-offer .container{
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.also-offer-text h3{
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -.4px;
}
.also-offer-text p{
  color: var(--muted);
  font-size: 15px;
  max-width: 50ch;
  margin: 0;
}

/* ===== ERROR PAGE ===== */
.error-section{
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px var(--gutter);
  background: var(--bg);
}
.error-content{
  text-align: center;
  max-width: 600px;
}
.error-code{
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -4px;
  margin: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.error-title{
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 24px 0 16px;
  color: rgba(255,255,255,.96);
}
.error-description{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 40px;
}
.error-actions{
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact{
  padding: 80px var(--gutter);
  position: relative;
  z-index: 40;
  background: var(--bg);
}
.contact .container{
  max-width: var(--max);
  margin: 0 auto;
}
.contact-container{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.contact-left{
  border-radius: var(--r24);
  border: 1px solid rgba(139,111,255,.25);
  background: linear-gradient(135deg, rgba(139,111,255,.08), rgba(61,217,255,.04));
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.contact-left::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.contact-left h2{
  margin: 0 0 14px;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
}
.contact-left p{
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.75;
  font-size:15px;
}
.contact-info{
  padding-top:24px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-method{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-label{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}
.contact-email{
  display:inline-block;
  font-weight: 800;
  color: var(--accent2);
  font-size:16px;
  transition: all .2s var(--ease);
  position:relative;
  width: fit-content;
}
.contact-email::after{
  content:'';
  position:absolute;
  bottom:-2px;
  left:0;
  right:0;
  height:2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.contact-email:hover{
  color: var(--accent2);
}
.contact-email:hover::after{
  transform: scaleX(1);
}
.contact-detail{
  color: rgba(255,255,255,.88);
  font-size: 15px;
  font-weight: 700;
}
.contact-response{
  margin-top: 6px;
  color: rgba(139,111,255,.92);
  font-size: 13px;
  font-weight:800;
  letter-spacing: .02em;
}

.contact-form{
  border-radius: var(--r24);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding: 32px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding: 14px 16px;
  border-radius: var(--r14);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,10,15,.45);
  color: var(--text);
  outline:none;
  font-size:15px;
  transition: all .25s var(--ease);
  font-weight:500;
  appearance: none;
}
.contact-form select{
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238B6FFF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.contact-form select option{
  background: #0A0E14;
  color: var(--text);
  padding: 12px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color: var(--accent2);
  background: rgba(7,10,15,.60);
  box-shadow: 0 0 0 3px rgba(61,217,255,.12);
}
.contact-form textarea{
  resize:vertical;
  min-height:120px;
  font-family:inherit;
}
.checkbox-label{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  padding: 4px 0;
}
.checkbox-label input[type="checkbox"]{
  width: auto;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent);
  appearance: auto;
  -webkit-appearance: checkbox;
  flex-shrink: 0;
}
.checkbox-label a{
  color: var(--accent2);
  text-decoration: none;
  font-weight: 700;
  transition: color .2s var(--ease);
}
.checkbox-label a:hover{
  color: var(--accent);
  text-decoration: underline;
}
.btn-submit{
  margin-top: 8px;
  padding: 16px 18px;
  border-radius: var(--r14);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.96);
  color:#070A0F;
  font-weight: 900;
  font-size:15px;
  letter-spacing:.02em;
  cursor:pointer;
  transition: all .25s var(--ease);
  box-shadow: 0 8px 28px rgba(255,255,255,.12);
}
.btn-submit:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,1);
  box-shadow: 0 12px 36px rgba(255,255,255,.16);
}
.btn-submit:active{ transform: translateY(-1px); }

/* ===== FAQ SECTION ===== */
.faq{
  padding: 100px var(--gutter);
  position: relative;
  z-index: 10;
}
.faq-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.faq-item{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r20);
  padding: 28px 32px;
  transition: all .3s var(--ease);
}
.faq-item:hover{
  border-color: rgba(139,111,255,.25);
  background: rgba(139,111,255,.04);
}
.faq-question{
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.2px;
  line-height: 1.3;
}
.faq-answer{
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 768px){
  .faq-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq-item{
    padding: 24px;
  }
}

/* ===== FOOTER ===== */
.footer{
  padding: 60px var(--gutter) 30px;
  border-top: 1px solid rgba(255,255,255,.10);
  position: relative;
  z-index: 50;
  background: var(--bg);
}
.footer .container{
  max-width: var(--max);
  margin: 0 auto;
}
.footer-content{
  display:flex;
  justify-content:space-between;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-left{
  flex: 1;
  min-width: 280px;
}
.footer-logo{
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing:.14em;
  font-size: 13px;
  color: rgba(255,255,255,.96);
  margin-bottom: 12px;
}
.footer-logo-icon{
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 6px rgba(139,111,255,.3));
}
.footer-tagline{
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
}
.footer-location{
  color: var(--muted2);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-location-icon{
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.footer-right{
  flex: 1;
  min-width: 280px;
}
.footer-links{
  display: flex;
  gap: 60px;
}
.footer-column{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-column h4{
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  margin-bottom: 4px;
}
.footer-column a{
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: all .2s var(--ease);
}
.footer-column a:hover{
  color: var(--accent2);
  padding-left: 4px;
}
.footer-text{
  color: var(--muted2);
  font-size: 13px;
  font-weight: 500;
}
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright{
  color: var(--muted2);
  font-size: 13px;
  font-weight: 500;
}
.footer-built{
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

/* ===== SUBPAGES ===== */
.page-hero{
  padding: 80px var(--gutter) 40px;
}
.page-hero .container{
  max-width: var(--max);
  margin: 0 auto;
}
.breadcrumb{
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing:.04em;
  margin-bottom:18px;
}
.page-title{
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1.6px;
  line-height: 1.08;
}
.page-lead{
  margin: 0;
  font-size: 18px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 70ch;
}

.page-grid{
  padding: 40px var(--gutter) 80px;
}
.page-grid .container{
  display:grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.panel{
  border-radius: var(--r24);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding: 36px;
}
.panel h3{
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing:-.5px;
}
.panel p{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}
.ul{
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}
.ul li{
  margin-bottom: 10px;
}
.ul strong{
  color: var(--text);
  font-weight:800;
}

.callout{
  border-radius: var(--r24);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding: 32px;
  height:fit-content;
  position:sticky;
  top:100px;
}
.callout h3{
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing:-.5px;
}
.callout p{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}
.small{
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.65;
}

/* ===== CONTENT SECTION (Legal Pages) ===== */
.content-section{
  padding: 40px var(--gutter) 80px;
  background: var(--bg);
}
.content-section .container{
  max-width: var(--max);
  margin: 0 auto;
}
.legal-content{
  max-width: 800px;
}
.legal-content h2{
  font-size: 22px;
  font-weight: 800;
  margin: 32px 0 12px;
  letter-spacing: -.4px;
}
.legal-content h2:first-child{
  margin-top: 0;
}
.legal-content p{
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-content ul{
  margin: 0 0 16px;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.8;
}
.legal-content li{
  margin-bottom: 8px;
}
.legal-content a{
  color: var(--accent2);
  text-decoration: none;
  font-weight: 600;
}
.legal-content a:hover{
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  :root{
    --gutter: 20px;
  }
  .stat-grid, .work-grid, .value-grid, .trades-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .pricing-featured{ transform: none; }
  .pricing-featured:hover{ transform: translateY(-6px); }
  .fine-print-grid{ grid-template-columns: 1fr; }
  .contact-container{ grid-template-columns: 1fr; }
  .page-grid .container{ grid-template-columns: 1fr; }
  .callout{ position:relative; top:0; }
  .footer-content{ flex-direction: column; gap: 40px; }
  .footer-links{ flex-direction: column; gap: 30px; }
  .footer-bottom{ flex-direction: column; text-align: center; }
  .nav-cta{ font-size: 13px; padding: 11px 16px; }
  .also-offer .container{ flex-direction: column; text-align: center; }
  .also-offer-text p{ max-width: 100%; }
  
  /* Mobile nav */
  .nav-toggle{ display: flex; }
  .nav-links{
    position: fixed;
    top: 73px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: linear-gradient(165deg, rgba(20,24,35,.97) 0%, rgba(12,16,24,.98) 100%);
    backdrop-filter: blur(24px);
    padding: 8px;
    gap: 4px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    box-shadow: 
      0 25px 80px rgba(0,0,0,.6),
      0 0 0 1px rgba(255,255,255,.06) inset,
      0 1px 0 rgba(255,255,255,.1) inset;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all .3s var(--ease);
  }
  .nav-links.active{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link{
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid transparent;
    transition: all .2s ease;
  }
  .nav-link:hover,
  .nav-link:focus{
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.06);
  }
  .nav-link.active{
    background: linear-gradient(135deg, rgba(139,111,255,.15), rgba(61,217,255,.08));
    border-color: rgba(139,111,255,.25);
    color: var(--text);
  }
  .nav-right{ gap: 16px; }
}
