:root{
  --bg:#0b0c10;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --text:#f4f6ff;
  --muted:rgba(244,246,255,.72);
  --line:rgba(255,255,255,.14);
  --shadow:0 20px 60px rgba(0,0,0,.45);
  --accent:#ffb400;
  --accent2:#ff7a00;
  --radius:18px;
  --radius2:26px;
  --max:1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, sans-serif;
}

body[data-theme="bw"]{
  --bg:#070707;
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --line:rgba(255,255,255,.14);
  --accent:#ffffff;
  --accent2:#bdbdbd;
}

body[data-theme="gray"]{
  --bg:#0f1114;
  --text:#eef1f7;
  --muted:rgba(238,241,247,.72);
  --panel:rgba(255,255,255,.07);
  --panel2:rgba(255,255,255,.1);
  --line:rgba(255,255,255,.16);
  --accent:#cfd6e6;
  --accent2:#8b93a7;
}

body[data-theme="orange"]{
  --bg:#0a0a0a;
  --text:#fff6ea;
  --muted:rgba(255,246,234,.72);
  --panel:rgba(255,180,0,.08);
  --panel2:rgba(255,122,0,.08);
  --line:rgba(255,180,0,.22);
  --accent:#ffb400;
  --accent2:#ff7a00;
}

body[data-theme="coffee"]{
  --bg:#0f0b09;
  --text:#fff3ea;
  --muted:rgba(255,243,234,.72);
  --panel:rgba(255,235,214,.08);
  --panel2:rgba(222,184,135,.10);
  --line:rgba(255,235,214,.18);
  --accent:#caa07a;
  --accent2:#8a5a44;
}

body[data-theme="blue"]{
  --bg:#f6fbff;
  --text:#0d1220;
  --muted:rgba(13,18,32,.66);
  --panel:rgba(13,18,32,.06);
  --panel2:rgba(13,18,32,.08);
  --line:rgba(13,18,32,.12);
  --accent:#1b74ff;
  --accent2:#00a3ff;
  --shadow:0 20px 60px rgba(13,18,32,.18);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
  transition: background .35s ease, color .35s ease;
}

a{color:inherit}
.wrap{width:min(var(--max), calc(100% - 48px)); margin:0 auto}

.bg-grid{
  position:fixed; inset:0;
  background:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity:.22;
  pointer-events:none;
  mix-blend-mode:overlay;
}

.bg-orb{
  position:fixed; width:520px; height:520px; border-radius:999px;
  filter: blur(60px);
  opacity:.22;
  pointer-events:none;
  background: radial-gradient(circle at 30% 30%, var(--accent), transparent 55%),
              radial-gradient(circle at 70% 70%, var(--accent2), transparent 58%);
  transition: opacity .35s ease;
}
.o1{left:-180px; top:-220px}
.o2{right:-220px; bottom:-260px; opacity:.18}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(0,0,0,.38), rgba(0,0,0,.12));
  border-bottom:1px solid var(--line);
}
body[data-theme="blue"] .topbar{
  background: linear-gradient(to bottom, rgba(246,251,255,.78), rgba(246,251,255,.52));
}

.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:flex; gap:10px; align-items:center;
  text-decoration:none;
}
.brand-mark{
  width:18px; height:18px; border-radius:6px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.brand-text{font-weight:800; letter-spacing:.2px}
.brand.small .brand-text{font-size:14px}

.nav{display:flex; gap:18px; align-items:center}
.nav a{
  text-decoration:none;
  font-weight:650;
  font-size:14px;
  opacity:.78;
  padding:10px 10px;
  border-radius:12px;
  transition: opacity .2s ease, background .2s ease;
}
.nav a:hover{opacity:1; background:var(--panel)}
.nav-cta{
  opacity:1!important;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#0b0b0b;
}
body[data-theme="bw"] .nav-cta{color:#000}
body[data-theme="gray"] .nav-cta{color:#0b0b0b}
body[data-theme="orange"] .nav-cta{color:#111}
body[data-theme="coffee"] .nav-cta{color:#120c09}
body[data-theme="blue"] .nav-cta{color:#fff}

.controls{display:flex; gap:10px; align-items:center}

.icon-btn{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--panel);
  color:inherit;
  display:none;
  cursor:pointer;
}
.icon-btn .i{
  display:block;
  width:18px; height:2px;
  background: currentColor;
  margin:4px auto;
  border-radius:2px;
  opacity:.9;
}

.theme{position:relative}
.theme-btn{
  display:flex; align-items:center; gap:10px;
  height:44px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:var(--panel);
  cursor:pointer;
  color:inherit;
}
.dot{
  width:10px; height:10px; border-radius:99px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.theme-label{font-weight:700; font-size:13px; opacity:.9}

.theme-pop{
  position:absolute; right:0; top:52px;
  width:220px;
  padding:10px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(20,20,20,.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  display:none;
}
body[data-theme="blue"] .theme-pop{background: rgba(246,251,255,.85)}
.theme-pop.open{display:block}

.theme-item{
  width:100%;
  text-align:left;
  border:0;
  background:transparent;
  color:inherit;
  padding:12px 12px;
  border-radius:12px;
  cursor:pointer;
  font-weight:700;
  opacity:.85;
}
.theme-item:hover{background:var(--panel2); opacity:1}

.mobile-nav{
  display:none;
  padding:10px 0 18px;
  border-top:1px solid var(--line);
}
.mobile-nav a{
  display:block;
  padding:12px 14px;
  border-radius:14px;
  text-decoration:none;
  font-weight:750;
  opacity:.82;
}
.mobile-nav a:hover{background:var(--panel); opacity:1}
.mobile-nav.open{display:block}

.hero{
  padding:64px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--panel);
  font-weight:700;
  opacity:.9;
}
.pill-dot{
  width:10px; height:10px; border-radius:99px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.h1{
  margin:18px 0 0;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height:1.06;
  letter-spacing:-.8px;
}
.lead{
  margin:14px 0 0;
  font-size:16px;
  line-height:1.55;
  color:var(--muted);
  max-width: 54ch;
}
.hero-actions{display:flex; gap:12px; margin-top:22px; flex-wrap:wrap}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  text-decoration:none;
  font-weight:800;
  cursor:pointer;
  transition: transform .15s ease, background .2s ease, opacity .2s ease;
}
.btn:active{transform: translateY(1px)}
.btn.primary{
  border:0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#0b0b0b;
}
.btn.ghost{background:var(--panel); color:inherit}
.btn.full{width:100%}
body[data-theme="blue"] .btn.primary{color:#fff}
body[data-theme="bw"] .btn.primary{color:#000}
body[data-theme="orange"] .btn.primary{color:#111}
body[data-theme="coffee"] .btn.primary{color:#120c09}

.hero-metrics{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:22px;
}
.metric{
  padding:14px 14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:var(--panel);
}
.metric-num{
  font-weight:900;
  font-size:22px;
}
.metric-label{
  margin-top:4px;
  color:var(--muted);
  font-weight:700;
  font-size:12px;
}

.glass{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  box-shadow: var(--shadow);
}
body[data-theme="blue"] .glass{
  background: linear-gradient(180deg, rgba(13,18,32,.08), rgba(13,18,32,.05));
}

.card{padding:18px}
.card-top{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:14px;
}
.chip{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--panel);
  font-weight:800;
  font-size:12px;
  opacity:.9;
}
.dots{display:flex; gap:6px; opacity:.8}
.dots span{
  width:9px; height:9px; border-radius:99px;
  border:1px solid var(--line);
  background:var(--panel2);
}

.preview{
  border-radius: 18px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  overflow:hidden;
}
body[data-theme="blue"] .preview{background: rgba(246,251,255,.7)}
.preview-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px;
  border-bottom:1px solid var(--line);
  background:var(--panel);
}
.mini-logo{
  width:34px; height:12px; border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.mini-nav{display:flex; gap:8px}
.mini-nav span{
  width:18px; height:6px; border-radius:999px;
  background:var(--panel2);
  border:1px solid var(--line);
}
.preview-body{padding:14px}
.bar{
  height:10px; border-radius:999px;
  background:var(--panel2);
  border:1px solid var(--line);
  margin-bottom:10px;
}
.b1{width:78%}
.b2{width:60%}
.b3{width:46%}
.preview-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px;
}
.tile{
  height:82px;
  border-radius:16px;
  border:1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}
body[data-theme="blue"] .tile{background: linear-gradient(135deg, rgba(13,18,32,.08), rgba(13,18,32,.05))}
.t1{background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.06))}
.t4{background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.10))}
body[data-theme="blue"] .t1{background: linear-gradient(135deg, rgba(13,18,32,.10), rgba(13,18,32,.06))}
body[data-theme="blue"] .t4{background: linear-gradient(135deg, rgba(13,18,32,.06), rgba(13,18,32,.10))}

.card-bottom{
  display:flex; align-items:center; justify-content:space-between;
  margin-top:14px;
  gap:12px;
}
.trust{display:flex; gap:10px; align-items:center}
.trust-avatars{display:flex}
.trust-avatars span{
  width:22px; height:22px;
  border-radius:99px;
  border:1px solid var(--line);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  margin-left:-8px;
}
.trust-avatars span:first-child{margin-left:0}
.trust-line{font-weight:900; font-size:12px}
.trust-sub{color:var(--muted); font-weight:700; font-size:11px; margin-top:2px}
.mini-cta{
  text-decoration:none;
  font-weight:900;
  opacity:.86;
  padding:10px 12px;
  border-radius:14px;
  background:var(--panel);
  border:1px solid var(--line);
}
.mini-cta:hover{opacity:1; background:var(--panel2)}

.logos{padding:24px 0 0}
.logo-row{
  display:flex; flex-wrap:wrap;
  gap:10px;
  opacity:.85;
}
.l{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--panel);
  font-weight:850;
  font-size:12px;
}

.section{padding:80px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
body[data-theme="blue"] .section.alt{
  background: linear-gradient(180deg, rgba(13,18,32,.06), rgba(13,18,32,.02));
}

.sec-head{text-align:center}
.h2{
  margin:0;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing:-.5px;
}
.sub{
  margin:12px auto 0;
  max-width: 66ch;
  color:var(--muted);
  font-weight:650;
  line-height:1.55;
}

.grid3{
  margin-top:34px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.tile-card{
  padding:22px 20px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  text-align:left;
  position:relative;
  overflow:hidden;
}
body[data-theme="blue"] .tile-card{box-shadow: 0 14px 40px rgba(13,18,32,.12)}
.tile-card:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(circle at 20% 10%, rgba(255,255,255,.16), transparent 40%),
              radial-gradient(circle at 80% 90%, rgba(255,255,255,.10), transparent 44%);
  opacity:.35;
  pointer-events:none;
}
.ic{
  width:44px; height:44px;
  border-radius:16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  margin-bottom:14px;
}
.tile-card h3{margin:0; font-size:18px; letter-spacing:-.2px}
.tile-card p{margin:10px 0 0; color:var(--muted); line-height:1.55; font-weight:650}
.tagline{
  margin-top:14px;
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--panel2);
  font-weight:850;
  font-size:12px;
  opacity:.92;
}

.grid2{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.mt{margin-top:22px}

.feature{
  padding:22px 20px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: var(--panel);
  text-align:left;
}
.feature-title{
  font-weight:950;
  letter-spacing:-.3px;
  font-size:16px;
}
.list{
  margin:14px 0 0;
  padding:0 0 0 18px;
  color:var(--muted);
  font-weight:650;
  line-height:1.9;
}
.steps{margin-top:14px; display:grid; gap:10px}
.step{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: var(--panel2);
}
.n{font-weight:950}
.t{font-weight:850; opacity:.9}

.work-grid{
  margin-top:34px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.work-card{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: var(--panel);
  overflow:hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.16);
}
body[data-theme="blue"] .work-card{box-shadow: 0 14px 40px rgba(13,18,32,.11)}
.work-card.wide{grid-column: span 3; display:grid; grid-template-columns: 1.35fr .65fr}
.work-shot{
  height:180px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18), transparent 40%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}
body[data-theme="blue"] .work-shot{
  background:
    radial-gradient(circle at 20% 30%, rgba(13,18,32,.14), transparent 40%),
    linear-gradient(135deg, rgba(13,18,32,.08), rgba(13,18,32,.03));
}
.s1{background-image:
  radial-gradient(circle at 30% 30%, rgba(255,255,255,.18), transparent 45%),
  linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
  radial-gradient(circle at 70% 70%, rgba(255,180,0,.18), transparent 55%);
}
.s2{background-image:
  radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 45%),
  linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
  radial-gradient(circle at 80% 60%, rgba(0,163,255,.18), transparent 55%);
}
.s3{background-image:
  radial-gradient(circle at 25% 35%, rgba(255,255,255,.18), transparent 45%),
  linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
  radial-gradient(circle at 70% 75%, rgba(202,160,122,.18), transparent 55%);
}
.s4{height:220px; background-image:
  radial-gradient(circle at 20% 35%, rgba(255,255,255,.18), transparent 45%),
  linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
  radial-gradient(circle at 75% 60%, rgba(255,122,0,.18), transparent 55%);
}
.work-meta{padding:16px 16px 18px}
.work-title{font-weight:950; letter-spacing:-.3px}
.work-desc{margin-top:6px; color:var(--muted); font-weight:650; line-height:1.5}

.cta-band{
  margin-top:18px;
  padding:18px 18px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: linear-gradient(135deg, var(--panel2), var(--panel));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.cta-title{font-weight:950; letter-spacing:-.3px}
.cta-sub{margin-top:6px; color:var(--muted); font-weight:650}

.price-grid{
  margin-top:34px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.price-card{
  position:relative;
  padding:20px 18px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: var(--panel);
  text-align:left;
  box-shadow: 0 14px 40px rgba(0,0,0,.16);
}
body[data-theme="blue"] .price-card{box-shadow: 0 14px 40px rgba(13,18,32,.11)}
.price-card.featured{
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border-color: rgba(255,255,255,.22);
}
body[data-theme="blue"] .price-card.featured{
  background: linear-gradient(180deg, rgba(13,18,32,.10), rgba(13,18,32,.06));
  border-color: rgba(13,18,32,.18);
}
.badge{
  position:absolute;
  top:14px; right:14px;
  padding:8px 10px;
  border-radius:999px;
  font-weight:950;
  font-size:12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#0b0b0b;
}
body[data-theme="blue"] .badge{color:#fff}
body[data-theme="bw"] .badge{color:#000}
body[data-theme="orange"] .badge{color:#111}
body[data-theme="coffee"] .badge{color:#120c09}

.price-top{padding-bottom:12px; border-bottom:1px solid var(--line)}
.price-name{font-weight:950; letter-spacing:-.3px}
.price-value{
  margin-top:8px;
  font-weight:1000;
  font-size:34px;
  letter-spacing:-.6px;
}
.price-note{margin-top:4px; color:var(--muted); font-weight:750; font-size:12px}
.price-list{
  margin:14px 0 0;
  padding:0 0 0 18px;
  color:var(--muted);
  font-weight:650;
  line-height:1.95;
}

.mini-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.mini-card{
  padding:18px 18px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: var(--panel);
  text-align:left;
}
.mini-title{font-weight:950; letter-spacing:-.3px}
.mini-items{
  margin-top:12px;
  display:flex; flex-wrap:wrap;
  gap:10px;
}
.mini-items span{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: var(--panel2);
  font-weight:850;
  font-size:12px;
  opacity:.9;
}

.faq{margin-top:34px; max-width:760px; margin-left:auto; margin-right:auto}
.faq-item{
  width:100%;
  text-align:left;
  padding:16px 16px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: var(--panel);
  color:inherit;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-weight:950;
  letter-spacing:-.2px;
  margin-bottom:10px;
}
.q{opacity:.94}
.x{font-weight:1000; opacity:.85}
.faq-a{
  margin:-6px 0 14px;
  padding:14px 16px;
  border-radius: 18px;
  border:1px solid var(--line);
  background: var(--panel2);
  color:var(--muted);
  font-weight:650;
  line-height:1.6;
  display:none;
}
.faq-a.open{display:block}

.contact-grid{
  margin-top:34px;
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:14px;
  align-items:stretch;
}
.contact-card{
  padding:20px 18px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: var(--panel);
  text-align:left;
}
.contact-title{font-weight:1000; letter-spacing:-.3px; font-size:16px}
.contact-lines{margin-top:14px; display:grid; gap:10px}
.line{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: var(--panel2);
  font-weight:850;
}
.line span:last-child{color:var(--muted)}
.contact-note{
  margin-top:14px;
  color:var(--muted);
  font-weight:650;
  line-height:1.55;
}

.form{
  padding:20px 18px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: var(--panel);
}
.row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px;
}
input, textarea{
  width:100%;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.16);
  color:inherit;
  outline:none;
  font-weight:750;
  transition: background .2s ease, border-color .2s ease;
}
body[data-theme="blue"] input,
body[data-theme="blue"] textarea{background: rgba(246,251,255,.9)}
textarea{margin-top:10px; min-height: 132px; resize: vertical}
input:focus, textarea:focus{border-color: rgba(255,255,255,.28); background: rgba(0,0,0,.22)}
body[data-theme="blue"] input:focus,
body[data-theme="blue"] textarea:focus{border-color: rgba(13,18,32,.22); background: rgba(246,251,255,1)}
.form-msg{
  margin-top:10px;
  font-weight:850;
  color:var(--muted);
  min-height: 18px;
}

.footer{
  padding:28px 0 40px;
  border-top:1px solid var(--line);
}
.foot-inner{
  display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
}
.foot-sub{margin-top:10px; color:var(--muted); font-weight:650}
.foot-right a{
  text-decoration:none;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: var(--panel);
  font-weight:900;
  opacity:.86;
}
.foot-right a:hover{opacity:1; background:var(--panel2)}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .work-grid{grid-template-columns: 1fr}
  .work-card.wide{grid-column:auto; grid-template-columns: 1fr}
  .price-grid{grid-template-columns: 1fr}
  .mini-grid{grid-template-columns: 1fr}
  .contact-grid{grid-template-columns: 1fr}
}

@media (max-width: 860px){
  .nav{display:none}
  .icon-btn{display:inline-flex; align-items:center; justify-content:center}
}