*{box-sizing:border-box}
:root{
  --bg:#071019;
  --bg-2:#0d1723;
  --panel:#0f1b29;
  --panel-2:#121f2f;
  --line:rgba(255,255,255,.08);
  --text:#f6f7fb;
  --muted:#9fb0c4;
  --accent:#ff6b2c;
  --accent-2:#ff8d49;
  --white:#ffffff;
  --shadow:0 22px 60px rgba(0,0,0,.28);
  --radius:22px;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255,107,44,.12), transparent 22%),
    radial-gradient(circle at left center, rgba(255,255,255,.04), transparent 18%),
    linear-gradient(180deg, #071019 0%, #09121c 100%);
  color:var(--text);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1180px, calc(100% - 32px)); margin:0 auto}
.topbar{
  background:#050b11;
  border-bottom:1px solid var(--line);
  font-size:13px;
  color:var(--muted);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:10px 0;
}
.topbar a{color:#ffd3bf; font-weight:600}
.header{
  position:sticky; top:0; z-index:10;
  backdrop-filter:blur(16px);
  background:rgba(7,16,25,.72);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:16px 0;
}
.brand-badge{
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.02);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  padding:14px 22px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
}
.brand-badge img{
  height:90px;
  width:auto;
  filter:drop-shadow(0 6px 18px rgba(0,0,0,0.6));
}
.brand-badge.small img{height:46px}
.menu{
  display:flex; align-items:center; gap:28px;
  color:#d6e2f0;
  font-weight:500;
}
.menu a:hover{color:#fff}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 22px; border-radius:14px; font-weight:700;
  transition:.22s ease; border:1px solid transparent;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  color:#fff; box-shadow:0 16px 32px rgba(255,107,44,.26);
}
.btn-secondary{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.1);
  color:#fff;
}
.btn-outline{
  border-color:rgba(255,255,255,.16);
  color:#fff;
  background:rgba(255,255,255,.03);
}
.hero{padding:56px 0 34px}
.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:34px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:#ffc4ab;
  margin-bottom:16px;
}
.hero-copy h1{
  margin:0 0 18px;
  font-size:clamp(36px, 5vw, 64px);
  line-height:1.04;
  letter-spacing:-.04em;
}
.hero-copy p{
  margin:0 0 24px;
  font-size:18px;
  line-height:1.72;
  color:var(--muted);
  max-width:680px;
}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:26px}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.stat{
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:18px;
}
.stat strong{
  display:block; margin-bottom:8px; font-size:15px;
}
.stat span{
  color:var(--muted); font-size:13.5px; line-height:1.55;
}
.hero-visual{display:flex; flex-direction:column; gap:18px}
.visual-card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  box-shadow:var(--shadow);
}
.main-visual{padding:18px}
.visual-label{
  position:absolute; top:18px; left:18px;
  font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:#ffd4c0; background:rgba(0,0,0,.24); border:1px solid rgba(255,255,255,.08);
  padding:10px 14px; border-radius:999px;
}
.hero-illustration{width:100%; height:auto; display:block}
.mini-cards{
  display:grid; grid-template-columns:repeat(2,1fr); gap:18px;
}
.mini-card{
  background:var(--panel);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:22px;
}
.mini-card h3{margin:0 0 8px; font-size:18px}
.mini-card p{margin:0; color:var(--muted); line-height:1.6}
.trust{padding:14px 0 16px}
.trust-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}
.trust-card{
  padding:24px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
}
.trust-card strong{display:block; margin-bottom:8px; font-size:17px}
.trust-card span{color:var(--muted); line-height:1.6}
.section{padding:90px 0}
.section-dark{
  background:linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.015));
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.section-heading{
  max-width:760px;
  margin:0 auto 34px;
  text-align:center;
}
.section-heading h2{
  margin:0 0 14px;
  font-size:clamp(28px, 3vw, 46px);
  line-height:1.12;
  letter-spacing:-.03em;
}
.section-heading p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-size:17px;
}
.cards{display:grid; gap:20px}
.cards.three{grid-template-columns:repeat(3,1fr)}
.cards.four{grid-template-columns:repeat(4,1fr)}
.card, .product-card, .form-card, .contact-card, .process-panel{
  background:var(--panel);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  box-shadow:var(--shadow);
}
.service-card{padding:28px}
.icon-wrap{
  width:62px;height:62px;border-radius:18px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,107,44,.1); color:var(--accent);
  margin-bottom:20px;
}
.icon-wrap svg{width:34px;height:34px}
.service-card h3{margin:0 0 12px; font-size:21px}
.service-card p{margin:0; color:var(--muted); line-height:1.7}
.product-card{overflow:hidden}
.product-image{
  height:210px;
  background:
    radial-gradient(circle at 75% 25%, rgba(255,255,255,.10), transparent 18%),
    linear-gradient(145deg, #111827, #1e293b);
  position:relative;
}
.product-image:before, .product-image:after{
  content:"";
  position:absolute;
}
.product-1:before{
  width:150px;height:14px;border-radius:10px;background:#f8fafc;left:32px;top:96px;
  box-shadow:176px 0 0 #f8fafc, 82px -66px 0 #f8fafc, 82px 66px 0 #f8fafc;
}
.product-1:after{
  width:92px;height:48px;border-radius:24px;background:#cbd5e1;left:110px;top:78px;
  box-shadow:0 -30px 0 0 #f8fafc inset;
}
.product-2:before{
  width:88px;height:88px;border-radius:50%; border:12px solid #94a3b8; left:42px; top:55px;
  box-shadow:165px 0 0 -8px rgba(148,163,184,.42);
}
.product-2:after{
  width:185px;height:16px;border-radius:8px;background:linear-gradient(90deg,var(--accent),#ffb07d);left:96px;top:96px;
}
.product-3:before{
  width:120px;height:64px;border-radius:18px;background:#111827;border:2px solid #475569;left:36px;top:70px;
  box-shadow:170px 0 0 #111827;
}
.product-3:after{
  width:62px;height:12px;border-radius:6px;background:var(--accent);left:66px;top:96px;
  box-shadow:170px 0 0 var(--accent), 78px -28px 0 28px rgba(255,255,255,.08);
}
.product-4:before{
  width:215px;height:125px;border-radius:24px;background:#0f172a;border:2px solid #334155;left:44px;top:42px;
}
.product-4:after{
  width:124px;height:12px;border-radius:6px;background:#f8fafc;left:90px;top:102px;
  box-shadow:0 28px 0 #f8fafc, 0 -28px 0 #f8fafc;
}
.product-body{padding:22px}
.product-body h3{margin:0 0 8px; font-size:20px}
.product-body p{margin:0; color:var(--muted); line-height:1.65}
.process-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:28px; align-items:start;
}
.timeline{display:flex; flex-direction:column; gap:18px; margin-top:20px}
.timeline-item{
  display:grid; grid-template-columns:64px 1fr; gap:16px;
  padding:20px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
}
.timeline-item span{
  width:64px;height:64px;border-radius:18px;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;
  background:rgba(255,107,44,.12);
  color:#ffb48d;
}
.timeline-item strong{display:block; margin-bottom:8px; font-size:18px}
.timeline-item p{margin:0; color:var(--muted); line-height:1.65}
.process-panel{padding:22px}
.process-visual{
  overflow:hidden;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.06);
}
.process-visual svg{display:block; width:100%; height:auto}
.process-points{
  display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:18px;
}
.process-points div{
  padding:16px; border-radius:18px; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.06);
}
.process-points strong{display:block; margin-bottom:6px}
.process-points span{color:var(--muted); font-size:14px; line-height:1.5}
.section-cta{padding-top:20px}
.cta-box{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding:34px;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(255,107,44,.14), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.08);
}
.cta-box h2{margin:0 0 10px; font-size:clamp(26px, 3vw, 42px); line-height:1.1}
.cta-box p{margin:0; color:#d8e1ec; line-height:1.7}
.contact-grid{
  display:grid; grid-template-columns:.92fr 1.08fr; gap:22px;
}
.contact-card, .form-card{padding:28px}
.contact-card h2{margin:0 0 14px; font-size:clamp(28px, 3vw, 42px); line-height:1.12}
.contact-card p{margin:0 0 18px; color:var(--muted); line-height:1.7}
.contact-list{
  list-style:none; padding:0; margin:22px 0 0;
  display:flex; flex-direction:column; gap:14px;
}
.contact-list li{
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.07);
  color:#dde6f2;
}
.field{display:flex; flex-direction:column; gap:8px; margin-bottom:16px}
label{font-size:14px; color:#e7eff8; font-weight:600}
input, textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.08);
  background:#0a1420;
  color:#fff;
  border-radius:14px;
  padding:15px 16px;
  outline:none;
  font:inherit;
}
input::placeholder, textarea::placeholder{color:#71849a}
input:focus, textarea:focus{border-color:rgba(255,107,44,.5)}
.full{width:100%}
.footer{
  padding:26px 0 70px;
  border-top:1px solid rgba(255,255,255,.06);
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.footer-brand{display:flex; align-items:center; gap:16px}
.footer-brand p, .footer-note{margin:0; color:var(--muted)}
.whatsapp-float{
  position:fixed; right:22px; bottom:22px; z-index:12;
  width:68px; height:68px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, #25D366, #1fb456);
  color:#fff; box-shadow:0 18px 38px rgba(37,211,102,.34);
  border:4px solid rgba(255,255,255,.16);
}
.whatsapp-float svg{width:30px; height:30px; fill:currentColor}
@media (max-width: 1080px){
  .hero-grid, .process-grid, .contact-grid{grid-template-columns:1fr}
  .cards.four{grid-template-columns:repeat(2,1fr)}
  .hero-copy p{max-width:none}
}
@media (max-width: 860px){
  .menu, .desktop-cta{display:none}
  .brand-badge img{height:70px}
  .hero{padding-top:38px}
  .hero-stats, .trust-grid, .cards.three, .mini-cards, .process-points{grid-template-columns:1fr}
  .cards.four{grid-template-columns:1fr}
  .cta-box, .footer-inner, .footer-brand, .topbar-inner{flex-direction:column; align-items:flex-start}
  .cta-box{padding:26px}
}
@media (max-width: 560px){
  .container{width:min(100% - 22px, 1180px)}
  .topbar-inner{padding:10px 0 12px}
  .nav{padding:12px 0}
  .brand-badge{padding:10px 14px; border-radius:14px}
  .brand-badge img{height:60px}
  .hero-copy h1{font-size:34px}
  .hero-copy p{font-size:16px}
  .btn{width:100%}
  .hero-actions{flex-direction:column}
  .stat, .mini-card, .trust-card, .service-card, .product-body, .contact-card, .form-card, .process-panel{padding:20px}
  .section{padding:72px 0}
  .whatsapp-float{width:62px;height:62px;right:16px;bottom:16px}
}
