:root{
  --bg: #07122A;
  --bg2:#0B1B3A;
  --card:#0D2450;
  --text:#EAF2FF;
  --muted:#B8C7E6;
  --line: rgba(255,255,255,0.10);

  --blue:#2E7BFF;
  --blue2:#1E56C8;

  --shadow: 0 18px 45px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 28px;
  --max: 1120px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(46,123,255,.20), transparent 60%),
              radial-gradient(900px 600px at 90% 30%, rgba(30,86,200,.16), transparent 55%),
              linear-gradient(180deg, var(--bg), #050B18 70%);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }
img{ max-width:100%; display:block; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto;
  background: rgba(255,255,255,.06); padding:10px 12px; border-radius: 10px;
  outline: 2px solid var(--blue);
}

/* Header */
.header{
  position: sticky;
  top:0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(7,18,42,.55);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand__mark{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 12px 25px rgba(46,123,255,.28);
  font-weight: 800;
}
.brand__name{ font-weight: 800; letter-spacing: .2px; }
.brand__tag{ font-size: 12px; color: var(--muted); margin-top:2px; }

.nav{ display:flex; gap: 18px; }
.nav a{
  font-weight: 600;
  color: var(--muted);
  text-decoration:none;
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
  text-decoration:none;
}

.header__cta{ display:flex; gap:10px; align-items:center; }

.menu-btn{
  display:none;
  width:44px; height:44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 14px;
  cursor: pointer;
}
.menu-btn span{
  display:block;
  height:2px;
  width:18px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 2px;
  opacity:.9;
}

.mobile-nav{
  border-top:1px solid var(--line);
  padding: 12px 20px 18px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav a{ text-decoration:none; font-weight: 700; }
.mobile-nav .btn{ justify-content: center; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-weight: 800;
  text-decoration:none;
  cursor: pointer;
  user-select: none;
}
.btn:hover{ text-decoration:none; transform: translateY(-1px); }
.btn--primary{
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 14px 35px rgba(46,123,255,.22);
}
.btn--ghost{
  background: rgba(255,255,255,.04);
}
.btn--full{ width:100%; }
.btn--small{ padding: 9px 12px; border-radius: 12px; font-weight: 900; }

/* Hero */
.hero{
  position: relative;
  padding: 56px 0 26px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: start;
}
.hero__bg{
  position:absolute; inset:0;
  pointer-events:none;
  opacity:.8;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 12px;
}
.hero h1{
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.8px;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 18px;
}
.hero__actions{ display:flex; gap:10px; flex-wrap: wrap; margin-bottom: 18px; }

.hero__trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.trust-card{
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}
.trust-card__title{ font-size: 12px; color: var(--muted); font-weight: 700; }
.trust-card__value{ font-size: 14px; font-weight: 800; margin-top: 6px; }

.apology{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
}
.apology__title{ font-weight: 900; margin-bottom: 6px; }
.apology__text{ color: rgba(184,199,230,.9); font-weight: 800; }

.hero__visual{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.before-after{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.before-after__top{
  display:flex;
  justify-content: space-between;
  padding: 12px 12px 0;
}
.badge{
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}
.badge--right{ opacity:.92; }
.before-after__images{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 12px;
}
.before-after__images img{
  height: 340px;
  width: 100%;
  object-fit: cover;
  background: rgba(0,0,0,.25);
}
.note{
  color: var(--muted);
  font-size: 13px;
  border: 1px dashed rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 12px 14px;
}

/* Sections */
.section{ padding: 56px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}
.section__head h2{
  margin:0;
  font-size: 28px;
  letter-spacing: -0.3px;
}
.section__head p{ margin:0; color: var(--muted); }

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.card h3{ margin: 0 0 8px; font-size: 18px; }
.card p{ margin: 0 0 10px; color: var(--muted); line-height: 1.6; }
.card ul{ margin:0; padding-left: 18px; color: var(--muted); }
.card li{ margin: 6px 0; }

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.callout{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(46,123,255,.18), rgba(255,255,255,.03));
  padding: 18px;
  box-shadow: var(--shadow);
}
.callout h3{ margin:0 0 8px; }
.callout p{ margin:0 0 12px; color: var(--muted); line-height: 1.6; }
.callout__btns{ display:flex; gap: 10px; flex-wrap: wrap; }

.info-list{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
.info-item{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.info-item__label{ color: var(--muted); font-weight: 800; font-size: 13px; }
.info-item__value{ font-weight: 900; }

.gallery{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gallery__item{
  margin:0;
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}
.gallery__item img{
  height: 380px;
  width:100%;
  object-fit: cover;
}
.gallery__item figcaption{
  padding: 12px 14px;
  color: var(--muted);
  font-weight: 900;
}

/* Form */
.form-card{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 18px;
  box-shadow: var(--shadow);
}
.field{
  display:block;
  margin-bottom: 12px;
}
.field span{
  display:block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,18,42,.55);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(46,123,255,.55);
  box-shadow: 0 0 0 4px rgba(46,123,255,.16);
}
.form-note{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.hidden{ display:none; }
.smallprint{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  line-height: 1.6;
}
.quicklinks{ margin-top: 12px; }
.quicklink{
  display:inline-block;
  color: rgba(234,242,255,.92);
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(46,123,255,.10);
}

/* Footer */
.footer{
  padding: 30px 0 22px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.18);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 16px;
  align-items:start;
}
.footer__brand{ font-weight: 900; font-size:
