:root{
  --bg:#060709;
  --bg-soft:#0c1014;
  --bg-elevated:#11161d;
  --surface:rgba(255,255,255,.055);
  --surface-2:rgba(255,255,255,.08);
  --surface-3:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.96);
  --muted:rgba(255,255,255,.72);
  --line:rgba(255,255,255,.12);
  --yellow:#f4c400;
  --yellow-strong:#ffdd55;
  --red:#db2d2d;
  --red-deep:#9f1717;
  --shadow:0 22px 50px rgba(0,0,0,.42);
  --shadow-soft:0 10px 24px rgba(0,0,0,.22);
  --radius:26px;
  --radius-md:20px;
  --radius-sm:14px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  line-height:1.6;
  background:
    radial-gradient(900px 580px at 10% 8%, rgba(244,196,0,.14), transparent 60%),
    radial-gradient(860px 520px at 92% 14%, rgba(219,45,45,.14), transparent 64%),
    linear-gradient(180deg, #050608 0%, #090d12 55%, #07090d 100%);
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(120deg, transparent 0 40%, rgba(255,255,255,.015) 40% 41%, transparent 41% 100%),
    linear-gradient(transparent 0 96%, rgba(255,255,255,.03) 96% 100%);
  opacity:.28;
  z-index:-1;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}
:focus-visible{outline:2px solid var(--yellow-strong);outline-offset:2px}

code{
  padding:.16em .42em;
  border-radius:8px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size:.95em;
}

.skip-link{
  position:absolute;
  left:16px;
  top:-44px;
  z-index:200;
  padding:10px 14px;
  border-radius:12px;
  background:#fff;
  color:#111;
  font-weight:700;
}
.skip-link:focus{top:12px}

.container{max-width:var(--max);margin:0 auto;padding:0 20px}
.section{padding:40px 0}
.section--tight{padding:28px 0}
.section--hero{padding:34px 0 28px}
.section--contrast{position:relative}
.section-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
  margin-bottom:18px;
}
.section-heading h2{
  margin:0;
  font-size:clamp(28px, 3.4vw, 40px);
  line-height:1.08;
  letter-spacing:-.04em;
}
.section-heading p{
  margin:8px 0 0;
  max-width:58ch;
  color:var(--muted);
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(244,196,0,.22);
  background:rgba(244,196,0,.09);
  font-size:13px;
  font-weight:800;
  color:rgba(255,255,255,.92);
}
.kicker::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--yellow);
  box-shadow:0 0 0 6px rgba(244,196,0,.12);
}

.surface{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.045));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.surface::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.06), transparent 22%);
  opacity:.55;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(12px);
  background:rgba(5,6,8,.78);
  border-bottom:1px solid var(--line);
}
.header-inner{
  min-height:88px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.brand img{
  width:clamp(220px, 28vw, 360px);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:#000;
  box-shadow:var(--shadow-soft);
}
.main-nav ul{
  list-style:none;
  display:flex;
  justify-content:center;
  gap:6px;
  flex-wrap:wrap;
  margin:0;
  padding:0;
}
.main-nav a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 12px;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
  border-radius:12px;
}
.main-nav a:hover{
  background:rgba(255,255,255,.06);
  color:var(--text);
}
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 18px;
  border-radius:16px;
  border:1px solid var(--line);
  font-weight:800;
  letter-spacing:.01em;
  transition:transform .16s ease, filter .16s ease, background .16s ease, border-color .16s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px)}
.btn-ghost{background:rgba(255,255,255,.06);color:var(--text)}
.btn-ghost:hover{background:rgba(255,255,255,.1)}
.btn-accent{
  background:linear-gradient(180deg, rgba(244,196,0,.18), rgba(244,196,0,.08));
  border-color:rgba(244,196,0,.24);
}
.btn-call{
  color:#fff;
  border-color:rgba(255,255,255,.08);
  background:linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  box-shadow:0 14px 30px rgba(219,45,45,.24);
}
.btn-call:hover{filter:brightness(1.06)}
.btn-wide{width:100%}

.hero-grid{
  display:grid;
  grid-template-columns:1.06fr .94fr;
  gap:20px;
  align-items:stretch;
}
.hero-copy{
  padding:30px;
}
.hero-title{
  margin:0 0 14px;
  font-size:clamp(36px, 5vw, 60px);
  line-height:.98;
  letter-spacing:-.055em;
}
.hero-lead{
  margin:0;
  max-width:64ch;
  color:var(--muted);
  font-size:18px;
}
.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:24px 0 22px;
}
.hero-note{
  margin-top:14px;
  color:var(--muted);
  font-size:14px;
}
.quick-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:24px;
}
.quick-card{
  padding:16px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
.quick-card strong{
  display:block;
  margin-bottom:4px;
  font-size:15px;
}
.quick-card span{
  display:block;
  color:var(--muted);
  font-size:14px;
}
.hero-stack{
  display:grid;
  gap:16px;
}
.visual-card{
  min-height:360px;
}
.visual-media{
  position:relative;
  min-height:100%;
}
.visual-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:360px;
}
.visual-overlay{
  position:absolute;
  inset:auto 18px 18px 18px;
  display:grid;
  gap:12px;
  padding:18px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(6,7,9,.28), rgba(6,7,9,.82));
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
}
.visual-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.08);
  font-size:12px;
  font-weight:800;
}
.visual-overlay h3{
  margin:0;
  font-size:22px;
  letter-spacing:-.03em;
}
.visual-overlay p{
  margin:0;
  color:rgba(255,255,255,.86);
}

.contact-card{
  padding:22px;
  display:grid;
  gap:16px;
}
.contact-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.contact-top strong{font-size:18px}
.status-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  color:#111;
  background:linear-gradient(180deg, var(--yellow-strong), var(--yellow));
}
.hotline-block{
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}
.label{
  display:block;
  margin-bottom:8px;
  color:var(--muted);
  font-size:13px;
}
.phone-link{
  display:inline-block;
  font-size:clamp(28px, 5vw, 38px);
  line-height:1;
  font-weight:900;
  letter-spacing:-.05em;
}
.contact-list{
  display:grid;
  gap:10px;
  color:var(--muted);
  font-size:15px;
}
.contact-list strong,
.contact-list a{color:var(--text)}
.contact-actions{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:10px;
}
.inline-note{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(244,196,0,.18);
  background:rgba(244,196,0,.08);
  color:rgba(255,255,255,.88);
  font-size:14px;
}

.info-strip{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
}
.info-strip .item{
  padding:18px;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
.info-strip strong{display:block;margin-bottom:6px;font-size:15px}
.info-strip span{display:block;color:var(--muted);font-size:14px}

.card-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}
.card-grid--three{grid-template-columns:repeat(3, minmax(0,1fr))}
.info-card,
.service-card,
.step-card,
.faq-card,
.legal-card,
.text-card{
  padding:22px;
  border-radius:22px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow-soft);
}
.service-card{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
}
.service-card::before,
.step-card::before,
.text-card::before{
  content:"";
  display:block;
  width:54px;
  height:4px;
  margin-bottom:16px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--yellow), rgba(244,196,0,0));
}
.service-card h3,
.step-card h3,
.text-card h3,
.faq-card h3,
.legal-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.16;
  letter-spacing:-.03em;
}
.service-card p,
.step-card p,
.text-card p,
.faq-card p,
.legal-card p,
.legal-card li,
.text-card li{
  margin:0;
  color:var(--muted);
}
.card-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(244,196,0,.22);
  background:rgba(244,196,0,.1);
  font-size:12px;
  font-weight:800;
}
.split-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:16px;
  align-items:start;
}
.check-list,
.clean-list{
  display:grid;
  gap:12px;
  margin:18px 0 0;
  padding:0;
  list-style:none;
}
.check-list li,
.clean-list li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:var(--muted);
}
.check-list li::before{
  content:"✓";
  width:24px;
  height:24px;
  flex:0 0 24px;
  display:grid;
  place-items:center;
  border-radius:8px;
  font-weight:900;
  color:#111;
  background:linear-gradient(180deg, var(--yellow-strong), var(--yellow));
}
.clean-list li::before{
  content:"•";
  width:12px;
  flex:0 0 12px;
  color:var(--yellow);
  font-size:24px;
  line-height:1;
  transform:translateY(-2px);
}
.metric-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}
.metric{
  padding:16px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
.metric strong{display:block;font-size:16px;margin-bottom:6px}
.metric span{display:block;color:var(--muted);font-size:14px}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}
.step-number{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  margin-bottom:14px;
  border-radius:14px;
  font-weight:900;
  color:#fff;
  background:linear-gradient(180deg, var(--red), var(--red-deep));
  box-shadow:0 10px 18px rgba(219,45,45,.24);
}

.tip-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}
.tip-list{
  display:grid;
  gap:12px;
  margin-top:16px;
}
.tip-item{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  align-items:flex-start;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}
.tip-item .icon{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:12px;
  border:1px solid rgba(244,196,0,.22);
  background:rgba(244,196,0,.1);
  font-weight:900;
}
.tip-item strong{display:block;margin-bottom:4px}
.tip-item p{margin:0;color:var(--muted)}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.faq-card details{
  border-top:1px solid rgba(255,255,255,.08);
  padding:14px 0;
}
.faq-card details:first-of-type{border-top:0;padding-top:0}
.faq-card summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-weight:800;
}
.faq-card summary::-webkit-details-marker{display:none}
.faq-card summary::after{
  content:"＋";
  flex:0 0 auto;
  font-size:18px;
  color:var(--yellow);
}
.faq-card details[open] summary::after{content:"–"}
.faq-card .answer{
  margin-top:10px;
  color:var(--muted);
}

.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  padding:24px;
}
.cta-band h2{
  margin:0 0 8px;
  font-size:clamp(28px, 3.3vw, 38px);
  line-height:1.05;
  letter-spacing:-.04em;
}
.cta-band p{
  margin:0;
  color:var(--muted);
  max-width:56ch;
}

.site-footer{
  margin-top:24px;
  padding:28px 0 96px;
  border-top:1px solid var(--line);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.footer-brand img{
  width:min(320px, 70vw);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:#000;
  box-shadow:var(--shadow-soft);
  margin-bottom:14px;
}
.footer-brand p,
.footer-links p,
.footer-links li{
  margin:0;
  color:var(--muted);
}
.footer-links ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.footer-links a{color:var(--text)}
.footer-links .link-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.muted{color:var(--muted)}
.small{font-size:14px}

.legal-shell{
  padding:38px 0 30px;
}
.legal-page .content-card{
  padding:28px;
}
.legal-page h1{
  margin:0 0 10px;
  font-size:clamp(34px, 4.6vw, 52px);
  line-height:1.02;
  letter-spacing:-.05em;
}
.legal-page .subtitle{
  margin:0 0 28px;
  color:var(--muted);
}
.legal-page h2{
  margin:28px 0 10px;
  font-size:22px;
  letter-spacing:-.02em;
}
.legal-page p,
.legal-page li{
  color:var(--muted);
}
.legal-note{
  margin-top:24px;
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(244,196,0,.22);
  background:rgba(244,196,0,.08);
}
.legal-page ul{padding-left:18px}
.back-link{
  display:inline-flex;
  margin-top:22px;
  color:var(--text);
  font-weight:700;
}

.mobile-callbar{
  position:fixed;
  left:14px;
  right:14px;
  bottom:14px;
  z-index:120;
  display:none;
  padding:10px;
  border-radius:20px;
  background:rgba(6,7,9,.92);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 40px rgba(0,0,0,.35);
  backdrop-filter:blur(10px);
}
.mobile-callbar .btn{width:100%}

@media (max-width: 1100px){
  .hero-grid,
  .split-grid,
  .footer-grid{grid-template-columns:1fr}
  .card-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .steps-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .faq-grid,
  .tip-grid,
  .info-strip{grid-template-columns:1fr 1fr}
}

@media (max-width: 880px){
  .site-header{position:sticky}
  .header-inner{
    grid-template-columns:1fr;
    justify-items:start;
    padding:14px 0;
    gap:12px;
  }
  .main-nav{
    width:100%;
    overflow:auto;
    -ms-overflow-style:none;
    scrollbar-width:none;
  }
  .main-nav::-webkit-scrollbar{display:none}
  .main-nav ul{
    justify-content:flex-start;
    flex-wrap:nowrap;
    width:max-content;
    padding-bottom:2px;
  }
  .header-actions{width:100%}
  .header-actions .btn-ghost{display:none}
  .header-actions .btn-call{width:100%}
  .hero-copy,
  .contact-card,
  .legal-page .content-card{padding:22px}
  .quick-grid,
  .card-grid,
  .card-grid--three,
  .steps-grid,
  .faq-grid,
  .tip-grid,
  .info-strip,
  .metric-grid,
  .contact-actions{grid-template-columns:1fr}
  .visual-card,
  .visual-media img{min-height:280px}
}

@media (max-width: 640px){
  .section{padding:32px 0}
  .section--hero{padding-top:22px}
  .container{padding:0 16px}
  .brand img{width:min(320px, 92vw)}
  .hero-title{font-size:clamp(34px, 11vw, 50px)}
  .hero-lead{font-size:16px}
  .cta-band{padding:20px}
  .mobile-callbar{display:block}
  .site-footer{padding-bottom:120px}
}
