:root{
  --bg:#030816;
  --bg2:#08142b;
  --panel:rgba(15,23,42,.62);
  --panelBorder:rgba(255,255,255,.08);
  --text:#f8fafc;
  --muted:#cbd5e1;
  --blue:#3b82f6;
  --blue2:#60a5fa;
  --orange:#fb923c;
  --orange2:#f97316;
  --shadow:0 20px 60px rgba(0,0,0,.35);
}
*{
  box-sizing:border-box;
}
html,
body{
  margin:0;
  padding:0;
  max-width:100%;
  overflow-x:hidden;
  scroll-behavior:smooth;
}
body{
  position:relative;
  font-family:Inter, Arial, Helvetica, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top, #10224a 0%, #071327 35%, #030816 70%),
    linear-gradient(180deg,#071327 0%,#030816 100%);
}
a{
  text-decoration:none;
  color:inherit;
}
p{
  margin:0;
}
.page{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  isolation:isolate;
}
.flames{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  overflow:hidden;
  filter:blur(14px);
  opacity:.95;
}
.flame{
  position:absolute;
  border-radius:999px;
  mix-blend-mode:screen;
  animation:floatUp linear infinite alternate;
}
.flame.f1{
  width:280px;
  height:280px;
  left:-60px;
  top:120px;
  background:radial-gradient(circle, rgba(249,115,22,.40) 0%, rgba(249,115,22,.18) 35%, rgba(249,115,22,0) 72%);
  animation-duration:9s;
}
.flame.f2{
  width:380px;
  height:380px;
  right:-120px;
  top:60px;
  background:radial-gradient(circle, rgba(59,130,246,.34) 0%, rgba(59,130,246,.18) 35%, rgba(59,130,246,0) 72%);
  animation-duration:12s;
}
.flame.f3{
  width:240px;
  height:240px;
  left:12%;
  top:55%;
  background:radial-gradient(circle, rgba(251,146,60,.28) 0%, rgba(251,146,60,.12) 40%, rgba(251,146,60,0) 74%);
  animation-duration:10s;
}
.flame.f4{
  width:320px;
  height:320px;
  right:8%;
  top:65%;
  background:radial-gradient(circle, rgba(96,165,250,.22) 0%, rgba(96,165,250,.10) 40%, rgba(96,165,250,0) 74%);
  animation-duration:14s;
}
.flame.f5{
  width:180px;
  height:180px;
  left:50%;
  top:20%;
  background:radial-gradient(circle, rgba(255,255,255,.09) 0%, rgba(255,255,255,.04) 35%, rgba(255,255,255,0) 75%);
  animation-duration:8s;
}
@keyframes floatUp{
  from{transform:translate3d(0,0,0) scale(1)}
  to{transform:translate3d(20px,-35px,0) scale(1.12)}
}
.grid-overlay{
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(180deg,rgba(0,0,0,.75),transparent 90%);
}
.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

/* NAV */
.nav{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(18px);
  background:rgba(3,8,22,.52);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:18px;
  letter-spacing:-0.03em;
}
.logo{
  height:80px;
}
.brand-mark{
  width:34px;
  height:34px;
  border-radius:11px;
  background:linear-gradient(135deg, rgba(59,130,246,.95), rgba(249,115,22,.95));
  box-shadow:
    0 0 24px rgba(59,130,246,.35),
    0 0 34px rgba(249,115,22,.18);
  flex:0 0 auto;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
  color:rgba(255,255,255,.78);
  font-size:15px;
}
.nav-cta{
  padding:12px 18px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--blue),#2563eb);
  color:#fff;
  font-weight:700;
  box-shadow:0 10px 30px rgba(37,99,235,.28);
}

/* FREE ANALYSIS CTA */
.analysis-banner-wrap{
  position:relative;
  padding:14px 0 8px;
}
.analysis-cta-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  width:100%;
  padding:20px 22px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at top left, rgba(96,165,250,.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(249,115,22,.14), transparent 38%),
    linear-gradient(125deg, rgba(15,23,42,.94), rgba(12,22,46,.94));
  box-shadow:
    0 18px 44px rgba(0,0,0,.28),
    inset 0 0 0 1px rgba(255,255,255,.03);
  transition:.22s ease;
}
.analysis-cta-banner:hover{
  transform:translateY(-2px);
  border-color:rgba(96,165,250,.42);
  box-shadow:
    0 24px 50px rgba(0,0,0,.34),
    0 0 36px rgba(59,130,246,.16);
}
.analysis-cta-copy{
  min-width:0;
}
.analysis-cta-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:#dbeafe;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:10px;
}
.analysis-cta-badge::before{
  content:"\1F50D";
  font-size:12px;
}
.analysis-cta-copy h2{
  margin:0;
  font-size:clamp(22px, 3vw, 30px);
  line-height:1.12;
  letter-spacing:-.03em;
}
.analysis-cta-copy p{
  margin-top:8px;
  color:#cbd5e1;
  font-size:15px;
  line-height:1.55;
  max-width:760px;
}
.analysis-cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  min-height:50px;
  padding:0 18px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--blue), #2563eb);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-weight:800;
  font-size:15px;
  box-shadow:0 12px 30px rgba(37,99,235,.25);
}

/* HERO */
.hero{
  position:relative;
  padding:28px 0 24px;
  overflow:hidden;
}
.hero-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:#dbeafe;
  font-size:14px;
  margin-bottom:24px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  max-width:100%;
}
.eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--orange),#fdba74);
  box-shadow:0 0 16px rgba(249,115,22,.85);
  flex:0 0 auto;
}
.hero h1{
  font-size:clamp(42px, 7vw, 78px);
  line-height:0.95;
  letter-spacing:-0.05em;
  margin:0 0 16px;
  max-width:9.5ch;
  text-wrap:balance;
}
.hero .lead{
  font-size:clamp(17px, 2vw, 23px);
  line-height:1.7;
  color:var(--muted);
  max-width:640px;
  margin:0;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:15px;
  font-weight:800;
  font-size:16px;
  transition:.22s ease;
  border:1px solid transparent;
}
.btn-primary{
  background:linear-gradient(135deg, var(--blue), #2563eb);
  color:#fff;
  box-shadow:0 16px 40px rgba(37,99,235,.28);
}
.btn-secondary{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.10);
  color:#fff;
}
.hero-note{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  margin-top:20px;
  color:#d1d5db;
  font-size:14px;
}
.hero-note span{
  display:flex;
  align-items:center;
  gap:8px;
}
.dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#60a5fa;
  box-shadow:0 0 12px rgba(96,165,250,.7);
  flex:0 0 auto;
}

/* SHOWCASE */
.showcase{
  position:relative;
  min-height:500px;
  width:100%;
  overflow:hidden;
}
.showcase-bg{
  position:absolute;
  inset:0;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.09);
  backdrop-filter:blur(18px);
  box-shadow:var(--shadow);
}
.glow-ring{
  position:absolute;
  inset:auto auto 8% 8%;
  width:220px;
  height:220px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(249,115,22,.24) 0%, rgba(249,115,22,0) 70%);
  filter:blur(8px);
}
.device-laptop{
  position:relative;
  width:100%;
  max-width:100%;
  border-radius:24px;
  background:linear-gradient(180deg,#0f172a,#111827);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 30px 80px rgba(0,0,0,.42);
  overflow:hidden;
}
.device-topbar{
  display:flex;
  gap:8px;
  padding:14px 16px;
  background:rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.device-topbar span{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.22);
}
.device-screen{
  padding:26px;
  min-height:330px;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.20), transparent 35%),
    radial-gradient(circle at bottom right, rgba(249,115,22,.18), transparent 35%),
    #07101f;
}
.ui-badge{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  color:#dbeafe;
  margin-bottom:14px;
}
.ui-title{
  font-size:32px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-0.04em;
  margin:0 0 12px;
}
.ui-text{
  color:#cbd5e1;
  font-size:15px;
  max-width:360px;
  margin-bottom:22px;
  line-height:1.6;
}
.ui-panels{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:14px;
  align-items:start;
}
.panel{
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  padding:18px;
  backdrop-filter:blur(10px);
}
.panel.big{
  min-height:150px;
}
.stat{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
  gap:12px;
}
.stat strong{
  font-size:28px;
}
.mini-bars{
  display:grid;
  gap:10px;
}
.mini-bars span{
  display:block;
  height:10px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(59,130,246,.92), rgba(96,165,250,.25));
}
.mini-bars span:nth-child(2){width:84%}
.mini-bars span:nth-child(3){width:66%}
.mini-bars span:nth-child(4){width:92%}
.floating-card{
  position:relative;
  width:100%;
  max-width:100%;
  margin-top:14px;
  border-radius:20px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(18px);
  padding:18px;
  box-shadow:0 20px 50px rgba(0,0,0,.3);
}
.floating-card h4{
  margin:0 0 8px;
  font-size:15px;
  color:#dbeafe;
}
.floating-card strong{
  display:block;
  font-size:30px;
  margin-bottom:8px;
}
.floating-card small{
  color:#cbd5e1;
  line-height:1.5;
}

/* SECTIONS */
.section{
  padding:72px 0;
}
.section-head{
  text-align:center;
  max-width:820px;
  margin:0 auto 34px;
}
.section-head-left{
  text-align:left;
  margin:0 0 10px;
}
.section-head h2{
  font-size:clamp(34px,5vw,54px);
  line-height:1.05;
  letter-spacing:-0.04em;
  margin:0 0 14px;
}
.section-head p{
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

/* SERVICES */
.services{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.card{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  padding:28px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(17,24,39,.85), rgba(15,23,42,.68));
  border:1px solid var(--panelBorder);
  box-shadow:var(--shadow);
  min-height:280px;
  min-width:0;
}
.card::before{
  content:"";
  position:absolute;
  inset:auto -10% -30% auto;
  width:180px;
  height:180px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(59,130,246,.18), transparent 70%);
  pointer-events:none;
}
.card .tag{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#cbd5e1;
  font-size:12px;
  font-weight:700;
  margin-bottom:18px;
}
.card h3{
  font-size:30px;
  line-height:1.12;
  letter-spacing:-0.04em;
  margin:0 0 12px;
}
.card p{
  color:#cbd5e1;
  font-size:17px;
  line-height:1.7;
  margin:0 0 20px;
  max-width:95%;
}
.price{
  font-size:32px;
  font-weight:800;
  color:#60a5fa;
  letter-spacing:-0.04em;
  margin-top:auto;
}
.card-actions{
  margin-top:16px;
}
.card-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:14px;
  font-weight:800;
  font-size:15px;
  color:#fff;
  background:linear-gradient(135deg,var(--blue),#2563eb);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 12px 30px rgba(37,99,235,.22);
  transition:.22s ease;
}
.card-link:hover,
.btn:hover,
.nav-cta:hover{
  transform:translateY(-2px);
}

/* BENEFITS */
.benefits{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:stretch;
}
.benefit-box,
.contact-box{
  border-radius:28px;
  background:linear-gradient(180deg, rgba(15,23,42,.84), rgba(8,15,32,.70));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  padding:30px;
  min-width:0;
}
.before-after{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:20px;
}
.state{
  border-radius:18px;
  padding:18px;
  min-height:180px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  min-width:0;
}
.state h4{
  margin:0 0 14px;
  font-size:18px;
}
.state ul{
  padding-left:18px;
  margin:0;
  color:#cbd5e1;
  line-height:1.8;
}
.state.bad{
  box-shadow:inset 0 0 0 1px rgba(248,113,113,.15);
}
.state.good{
  box-shadow:inset 0 0 0 1px rgba(96,165,250,.16);
}

/* PROJECTS */
.projects{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.project{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(17,24,39,.85), rgba(15,23,42,.66));
  box-shadow:var(--shadow);
  min-width:0;
}
.project-visual{
  height:260px;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.25), transparent 30%),
    radial-gradient(circle at bottom right, rgba(249,115,22,.20), transparent 30%),
    linear-gradient(135deg,#0b1220,#13233f);
  padding:18px;
  display:flex;
  align-items:flex-end;
}
.mini-preview{
  width:100%;
  border-radius:18px;
  padding:18px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.09);
  backdrop-filter:blur(10px);
}
.mini-preview strong{
  display:block;
  font-size:22px;
  margin-bottom:10px;
}
.mini-preview p{
  color:#dbeafe;
  opacity:.88;
  line-height:1.5;
}
.project-body{
  padding:24px;
}
.project-body h3{
  margin:0 0 10px;
  font-size:28px;
  letter-spacing:-0.04em;
}
.project-body p{
  color:#cbd5e1;
  line-height:1.7;
}

/* CONTACT */
.contact-wrap{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
  align-items:start;
}
.contact-copy h2{
  font-size:clamp(34px,5vw,54px);
  line-height:1.02;
  letter-spacing:-0.04em;
  margin:0 0 16px;
}
.contact-copy p{
  color:#cbd5e1;
  font-size:18px;
  line-height:1.75;
  margin:0 0 24px;
}
.contact-points{
  display:grid;
  gap:12px;
  color:#dbeafe;
  font-size:15px;
}
.contact-points div{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.contact-points span{
  width:10px;
  height:10px;
  margin-top:7px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--orange),#fdba74);
  box-shadow:0 0 12px rgba(249,115,22,.7);
  flex:0 0 auto;
}
.contact-points p{
  margin:0;
}
form{
  display:grid;
  gap:14px;
}
input,
textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.96);
  color:#0f172a;
  border-radius:16px;
  padding:16px 18px;
  font-size:16px;
  font-family:inherit;
  outline:none;
}
input:focus,
textarea:focus{
  border-color:rgba(59,130,246,.7);
  box-shadow:0 0 0 4px rgba(59,130,246,.15);
}
textarea{
  min-height:150px;
  resize:vertical;
}
button{
  border:none;
  border-radius:18px;
  min-height:58px;
  padding:0 26px;
  background:linear-gradient(135deg,var(--blue),#2563eb);
  color:#fff;
  font-size:17px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 16px 40px rgba(37,99,235,.25);
}
.form-note{
  text-align:center;
}
.form-success{
  display:none;
  margin:14px 0 0;
  color:#93c5fd;
  font-weight:700;
}
.form-error{
  display:none;
  margin:14px 0 0;
  color:#fca5a5;
  font-weight:700;
}

/* FOOTER */
.footer{
  padding:34px 0 50px;
  color:#94a3b8;
  text-align:center;
  font-size:15px;
}
.footer-legal{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:10px;
}
.footer-legal a{
  color:#cbd5e1;
  text-decoration:none;
  font-size:13px;
}
.footer-legal a:hover{
  color:#ffffff;
}
.footer-copy{
  font-size:12px;
  color:var(--muted);
}

/* COOKIE BANNER */
.cookie-consent[hidden]{
  display:none !important;
}

.cookie-consent{
  position:fixed;
  inset:0;
  z-index:9999;
  font-family:Inter, Arial, Helvetica, sans-serif;
}

.cookie-consent__backdrop{
  position:absolute;
  inset:0;
  background:rgba(2, 6, 23, 0.76);
  backdrop-filter:blur(8px);
}

.cookie-consent__panel{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:min(720px, calc(100% - 24px));
  max-height:min(88vh, 900px);
  overflow:auto;
  background:
    radial-gradient(circle at top left, rgba(59,130,246,.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(249,115,22,.12), transparent 28%),
    linear-gradient(180deg, rgba(15,23,42,.98), rgba(10,16,30,.98));
  color:#e5eefc;
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  box-shadow:
    0 30px 80px rgba(0,0,0,.52),
    0 0 0 1px rgba(255,255,255,.03);
  padding:26px;
}

.cookie-consent__header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

.cookie-consent__eyebrow{
  margin:0 0 8px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:1.6px;
  color:#93c5fd;
  font-weight:800;
}

.cookie-consent__header h3{
  margin:0;
  font-size:30px;
  line-height:1.02;
  letter-spacing:-0.04em;
  color:#fff;
}

.cookie-consent__close{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.06);
  color:#fff;
  border-radius:14px;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  flex:0 0 auto;
  transition:.2s ease;
}

.cookie-consent__close:hover{
  background:rgba(255,255,255,.10);
  transform:translateY(-1px);
}

.cookie-consent__text{
  margin:0;
  color:#cbd5e1;
  line-height:1.72;
  font-size:15px;
}

.cookie-consent__text a{
  color:#93c5fd;
  text-decoration:none;
  font-weight:700;
}

.cookie-consent__actions{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:22px;
}

.cookie-btn{
  min-height:52px;
  padding:0 18px;
  border-radius:16px;
  border:1px solid transparent;
  font-weight:800;
  font-size:15px;
  cursor:pointer;
  transition:.2s ease;
  font-family:inherit;
}

.cookie-btn:hover{
  transform:translateY(-1px);
}

.cookie-btn--primary{
  background:linear-gradient(135deg, #3b82f6, #2563eb);
  color:#fff;
  box-shadow:0 12px 26px rgba(37,99,235,.28);
}

.cookie-btn--secondary{
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:rgba(255,255,255,.10);
}

.cookie-btn--ghost{
  background:transparent;
  color:#dbeafe;
  border-color:rgba(255,255,255,.14);
}

.cookie-settings{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  display:grid;
  gap:14px;
}

.cookie-setting{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
}

.cookie-setting strong{
  display:block;
  margin-bottom:4px;
  color:#fff;
  font-size:15px;
}

.cookie-setting p{
  margin:0;
  color:#cbd5e1;
  font-size:13px;
  line-height:1.6;
}

.cookie-switch{
  position:relative;
  width:56px;
  height:32px;
  flex:0 0 auto;
}

.cookie-switch input{
  opacity:0;
  width:0;
  height:0;
}

.cookie-switch span{
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.14);
  border-radius:999px;
  transition:.2s ease;
}

.cookie-switch span::before{
  content:"";
  position:absolute;
  width:24px;
  height:24px;
  left:4px;
  top:4px;
  border-radius:999px;
  background:#fff;
  transition:.2s ease;
}

.cookie-switch input:checked + span{
  background:linear-gradient(135deg, #3b82f6, #2563eb);
}

.cookie-switch input:checked + span::before{
  transform:translateX(24px);
}

.cookie-settings__footer{
  display:flex;
  justify-content:flex-end;
  margin-top:4px;
}

/* RESPONSIVE */
@media (max-width: 1060px){
  .hero-layout,
  .benefits,
  .contact-wrap{
    grid-template-columns:1fr;
  }
  .showcase{
    min-height:auto;
  }
  .services,
  .projects{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .cookie-consent__panel{
    width:calc(100% - 16px);
    max-height:calc(100vh - 24px);
    padding:20px;
    border-radius:22px;
  }

  .cookie-consent__header{
    align-items:flex-start;
  }

  .cookie-consent__header h3{
    font-size:24px;
  }

  .cookie-consent__actions{
    grid-template-columns:1fr;
  }

  .cookie-settings__footer{
    display:block;
  }

  .cookie-btn{
    width:100%;
  }

  .cookie-setting{
    align-items:flex-start;
  }
}

@media (max-width: 760px){
  .analysis-banner-wrap{
    padding:10px 0 6px;
  }
  .analysis-cta-banner{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:16px;
    border-radius:18px;
  }
  .analysis-cta-copy h2{
    font-size:22px;
  }
  .analysis-cta-copy p{
    font-size:14px;
    line-height:1.5;
  }
  .analysis-cta-button{
    width:100%;
    min-height:48px;
    border-radius:13px;
  }
  .nav-links{
    display:none;
  }
  .nav-inner{
    padding:12px 0;
  }
  .brand{
    font-size:17px;
    gap:10px;
  }
  .logo{
    height:46px;
  }
  .brand-mark{
    width:32px;
    height:32px;
    border-radius:10px;
  }
  .hero{
    padding:24px 0 22px;
  }
  .hero-layout{
    grid-template-columns:1fr;
    gap:16px;
    align-items:start;
  }
  .eyebrow{
    font-size:13px;
    padding:9px 12px;
    margin-bottom:16px;
  }
  .hero h1{
    font-size:clamp(40px, 11vw, 54px);
    max-width:12ch;
    margin-bottom:14px;
    line-height:0.96;
  }
  .hero .lead{
    font-size:16px;
    line-height:1.65;
    max-width:100%;
  }
  .hero-actions{
    flex-direction:column;
    gap:14px;
    margin-top:26px;
  }
  .btn{
    width:100%;
    min-height:54px;
    border-radius:16px;
  }
  .hero-note{
    gap:8px 12px;
    margin-top:14px;
    font-size:13px;
  }
  .showcase{
    margin-top:8px;
  }
  .showcase-bg{
    inset:0;
  }
  .device-laptop{
    width:100%;
    max-width:100%;
  }
  .floating-card{
    width:100%;
    max-width:100%;
  }
  .section{
    padding:52px 0;
  }
  .services,
  .projects,
  .before-after,
  .benefits,
  .contact-wrap,
  .ui-panels{
    grid-template-columns:1fr;
  }
  .benefit-box,
  .contact-box,
  .card,
  .project,
  .state{
    min-width:0;
  }
  .project-visual{
    height:220px;
  }
  .benefit-box,
  .contact-box{
    padding:22px;
    border-radius:22px;
  }

  .cookie-consent__panel{
    bottom:12px;
    width:calc(100% - 16px);
    padding:18px;
    border-radius:20px;
  }
  .cookie-consent__header h3{
    font-size:22px;
  }
  .cookie-consent__actions,
  .cookie-settings__footer{
    display:grid;
  }
  .cookie-btn{
    width:100%;
  }
  .cookie-setting{
    align-items:flex-start;
  }
  .footer-legal{
    flex-direction:column;
    gap:8px;
  }
}
@media (max-width: 540px){
  .container{
    width:min(100% - 24px, 1180px);
  }
  .hero h1{
    font-size:40px;
    max-width:12ch;
    line-height:0.96;
  }
  .section-head h2,
  .contact-copy h2{
    font-size:34px;
  }
  .eyebrow{
    font-size:13px;
    padding:9px 12px;
    margin-bottom:18px;
  }
  .card h3,
  .project-body h3{
    font-size:24px;
  }
  .price{
    font-size:28px;
  }
  .ui-title{
    font-size:24px;
  }
  .device-screen{
    padding:18px;
  }
  .project-visual{
    height:190px;
  }
}

/* FORM CONSENT */

.form-consent{
margin:10px 0 4px 0;
font-size:14px;
color:#cbd5e1;
}

.consent-checkbox{
display:flex;
align-items:center;
gap:12px;
line-height:1.5;
cursor:pointer;
}

.consent-checkbox input{
flex-shrink:0;
width:18px;
height:18px;
margin:0;
}

.consent-checkbox span{
display:inline;
}

.consent-checkbox a{
color:#93c5fd;
text-decoration:underline;
font-weight:600;
}

.consent-checkbox a:hover{
color:#60a5fa;
}

.form-trust{
margin-top:2px;
font-size:12px;
color:#94a3b8;
}
