
:root{
  --brand:#C2410C;
  --brandText:#9A3412;
  --dark:#0F172A;
  --soft:#F8FAFC;
  --text:#475569;
  --border:#e2e8f0;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--soft);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto}
.container{max-width:1180px;margin:0 auto;padding:0 20px;width:100%}

.header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  min-height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.logo{
  display:flex;
  align-items:center;
  min-width:0;
  flex:0 1 auto;
}
.logo picture{display:flex;align-items:center;min-width:0}
.logo-img{
  height:86px;
  width:auto;
  max-width:430px;
  object-fit:contain;
  display:block;
}
.fallback-logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  color:var(--dark);
  font-size:20px;
}
.fallback-logo span:first-child{
  width:48px;height:48px;border-radius:16px;
  background:var(--brand);color:white;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 20px rgba(249,115,22,.25);
}
.nav{
  display:flex;
  gap:28px;
  font-size:14px;
  font-weight:700;
  color:var(--dark);
  white-space:nowrap;
  flex:0 0 auto;
}
.nav a:hover{color:var(--brand)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 24px;
  border-radius:18px;
  font-weight:900;
  box-shadow:0 14px 28px rgba(15,23,42,.12);
  transition:.2s;
  text-align:center;
}
.btn-brand{background:var(--brand);color:white}
.btn-brand:hover{background:#9A3412}
.btn-dark{background:var(--dark);color:white}
.btn-light{background:white;color:var(--dark)}
.header-cta{
  padding:12px 20px;
  border-radius:999px;
  white-space:nowrap;
  flex:0 0 auto;
}

.hero{
  background-image:
    radial-gradient(circle at top left,rgba(249,115,22,.18),transparent 32%),
    radial-gradient(circle at bottom right,rgba(15,23,42,.16),transparent 34%),
    linear-gradient(135deg,#fff 0%,#fff7ed 45%,#f8fafc 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:48px;
  align-items:center;
  padding:78px 0;
}
.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  background:white;
  border:1px solid #fdba74;
  color:var(--brandText);
  padding:9px 16px;
  border-radius:999px;
  font-weight:900;
  font-size:14px;
  box-shadow:0 6px 18px rgba(15,23,42,.06);
  margin:10px 0 24px;
  max-width:100%;
  overflow-wrap:anywhere;
}
h1,h2,h3{color:var(--dark);line-height:1.12;margin:0}
h1{
  font-size:58px;
  font-weight:950;
  letter-spacing:-1.8px;
}
.hero p.lead{
  font-size:20px;
  color:#64748b;
  margin:26px 0 0;
}
.hero-actions{
  display:flex;
  gap:16px;
  margin-top:34px;
  flex-wrap:wrap;
}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
  margin-top:34px;
}
.trust-item{
  background:white;
  border-radius:18px;
  padding:16px;
  font-weight:900;
  color:var(--dark);
  box-shadow:0 8px 18px rgba(15,23,42,.05);
}
.hero-card{
  background:white;
  border:1px solid #f1f5f9;
  border-radius:32px;
  padding:34px;
  box-shadow:0 30px 70px rgba(15,23,42,.14);
  min-width:0;
}
.hero-card-head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  margin-bottom:24px;
}
.kicker{
  color:var(--brandText);
  font-size:13px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.hero-card h2{font-size:30px;margin-top:4px}
.icon-box{
  width:60px;height:60px;border-radius:18px;
  background:#ffedd5;color:var(--brandText);
  display:flex;align-items:center;justify-content:center;
  font-size:28px;flex:0 0 auto;
}
.check-list{display:grid;gap:12px;margin-top:24px}
.check{
  display:flex;gap:12px;align-items:center;
  background:#f8fafc;border-radius:18px;padding:14px;
}
.check b{color:var(--brand)}

.section{padding:78px 0}
.section-white{background:white}
.section-title{max-width:760px;margin-bottom:36px}
.section-title.center{text-align:center;margin-left:auto;margin-right:auto}
.section-title .label{color:var(--brandText);font-weight:950;margin-bottom:10px}
.section-title h2{font-size:42px;font-weight:950}
.section-title p{font-size:18px;color:#64748b}

.steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.card{
  background:white;
  border:1px solid #f1f5f9;
  border-radius:28px;
  padding:28px;
  box-shadow:0 8px 20px rgba(15,23,42,.04);
  transition:.2s;
  min-width:0;
}
.card:hover{
  box-shadow:0 18px 36px rgba(15,23,42,.11);
  transform:translateY(-3px);
}
.card .emoji{font-size:38px;margin-bottom:16px}
.card h3{font-size:22px;font-weight:950}
.card p{margin:12px 0 0}
.card a{display:inline-flex;margin-top:18px;color:var(--brandText);font-weight:950}

.content-box{max-width:920px;margin:0 auto}
.content-box p{font-size:18px}
.regions h3{font-size:26px;margin:28px 0 16px}
.link-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
}
.region-link{
  background:white;
  border:1px solid #f1f5f9;
  border-radius:18px;
  padding:18px 14px;
  text-align:center;
  font-weight:950;
  color:var(--dark);
  box-shadow:0 6px 16px rgba(15,23,42,.04);
  min-width:0;
  overflow-wrap:anywhere;
}
.region-link:hover{border-color:var(--brandText);color:var(--brand)}

.reviews{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.stars{color:#B45309;font-size:22px}
.faq{max-width:860px;margin:0 auto;display:grid;gap:14px}
details{
  background:white;
  border:1px solid #f1f5f9;
  border-radius:18px;
  padding:22px;
}
summary{cursor:pointer;color:var(--dark);font-weight:950}

.cta{background:var(--dark);color:white;text-align:center}
.cta h2{color:white;font-size:48px}
.cta p{color:#cbd5e1;font-size:20px}
.cta-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  margin-top:30px;
  flex-wrap:wrap;
}

.footer{
  background:white;
  border-top:1px solid var(--border);
  padding:42px 0 88px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1.4fr;
  gap:34px;
}
.footer h3{font-size:20px}
.footer-links{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  font-size:14px;
}
.footer a:hover{color:var(--brand)}

.float-wa{
  position:fixed;
  right:22px;
  bottom:26px;
  width:64px;height:64px;
  border-radius:50%;
  background:#22c55e;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  z-index:50;
  box-shadow:0 18px 34px rgba(34,197,94,.35);
}
.mobile-bar{display:none}
.breadcrumb{
  margin-bottom:18px;
  color:#64748b;
  font-weight:700;
  font-size:14px;
}
.breadcrumb a{color:var(--brand)}

@media(max-width:1100px){
  .logo-img{height:78px;max-width:350px}
  .nav{gap:18px}
  .header-cta{padding:11px 16px}
}

@media(max-width:900px){
  .nav,.header-cta{display:none}
  .container{padding:0 16px}
  .header-inner{
    min-height:88px;
    justify-content:center;
  }
  .logo{
    width:100%;
    justify-content:center;
  }
  .logo-img{
    height:76px;
    max-width:92vw;
  }
  .hero-grid{
    grid-template-columns:1fr;
    padding:64px 0 48px;
    gap:28px;
  }
  .badge{
    margin-top:8px;
    margin-bottom:22px;
  }
  .hero-card{padding:24px;border-radius:26px}
  .hero-card-head{align-items:flex-start}
  h1{font-size:40px;letter-spacing:-1px}
  .hero p.lead{font-size:18px}
  .hero-actions .btn{width:100%}
  .trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .steps,.cards,.reviews{grid-template-columns:1fr}
  .link-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer-grid{grid-template-columns:1fr}
  .footer-links{grid-template-columns:1fr 1fr}
  .section{padding:54px 0}
  .section-title h2,.cta h2{font-size:32px}
  .float-wa{bottom:86px;right:18px;width:58px;height:58px}
  .mobile-bar{
    position:fixed;
    display:grid;
    grid-template-columns:1fr 1fr;
    bottom:0;left:0;right:0;
    background:white;
    border-top:1px solid var(--border);
    z-index:49;
  }
  .mobile-bar a{padding:15px;text-align:center;font-weight:950}
  .mobile-bar a:last-child{background:var(--brand);color:white}
  .mobile-bar a:first-child{color:var(--dark)}
}

@media(max-width:430px){
  .container{padding:0 14px}
  .header-inner{min-height:82px}
  .hero-grid{
    padding-top:56px;
  }
  .badge{
    margin-top:10px;
    font-size:13px;
    line-height:1.35;
    padding:8px 13px;
  }
  .logo-img{
    height:68px;
    max-width:94vw;
  }
  h1{font-size:34px}
  .hero-card h2{font-size:24px}
  .trust-item{padding:13px;font-size:14px}
  .card{padding:22px}
  .region-link{padding:15px 10px;font-size:14px}
}

.section,.hero{scroll-margin-top:110px}

a:focus-visible,button:focus-visible,summary:focus-visible{
  outline:3px solid #C2410C;
  outline-offset:3px;
}

.blog-figure{
  margin:30px 0;
}
.blog-figure img{
  width:100%;
  height:auto;
  display:block;
  border-radius:22px;
  box-shadow:0 12px 32px rgba(15,23,42,.12);
  border:1px solid #e2e8f0;
}
.img-caption{
  text-align:center;
  font-size:14px;
  color:#64748b;
  margin-top:10px;
}
