
:root{
  --bg:#ffffff;
  --text:#101114;
  --muted:#5f6673;
  --line:#e8e8ee;
  --soft:#f7f8fb;
  --accent:#ff5a3c;
  --accent-dark:#e0472b;
  --shadow:0 18px 50px rgba(16,17,20,.08);
  --radius:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.container{
  width:min(1120px, calc(100% - 32px));
  margin-inline:auto;
}

.topbar{
  background:#111214;
  color:#fff;
  font-size:.92rem;
}
.topbar-inner{
  display:flex;
  flex-wrap:wrap;
  gap:12px 24px;
  justify-content:center;
  padding:10px 0;
}

.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:84px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.brand img{
  width:62px;
  height:62px;
  object-fit:cover;
  border-radius:50%;
  border:2px solid #f0f0f0;
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.2;
}
.brand-text strong{
  font-size:1rem;
}
.brand-text span{
  font-size:.86rem;
  color:var(--muted);
}

.menu{
  display:flex;
  align-items:center;
  gap:22px;
}
.menu a{
  color:#222;
  font-weight:600;
  font-size:.96rem;
}
.menu a:hover{color:var(--accent)}
.menu-toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-size:1.1rem;
  cursor:pointer;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
  border:1px solid transparent;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 14px 30px rgba(255,90,60,.22);
}
.btn-primary:hover{background:var(--accent-dark)}
.btn-secondary{
  background:#fff;
  color:#111214;
  border-color:var(--line);
}
.btn-large{
  padding:16px 28px;
  font-size:1rem;
}

.hero{
  position:relative;
  overflow:hidden;
  padding:72px 0 40px;
  background:
    radial-gradient(circle at top right, rgba(255,90,60,.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(255,90,60,.04), transparent 45%),
    linear-gradient(300deg, rgba(16,17,20,.03), transparent 40%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:38px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  margin:0 0 10px;
  color:var(--accent);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.83rem;
}
.hero h1{
  margin:0;
  font-size:clamp(2.4rem, 5vw, 4.2rem);
  line-height:1.02;
}
.hero h2{
  margin:10px 0 16px;
  font-size:clamp(1.2rem, 2vw, 1.7rem);
  color:#24262d;
  font-weight:700;
}
.lead{
  font-size:1.08rem;
  color:var(--muted);
  max-width:720px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:28px 0 24px;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero-badges span{
  padding:10px 14px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  font-weight:600;
  font-size:.92rem;
}
.hero-card{
  display:grid;
  gap:20px;
}
.logo-wrap,
.info-card,
.feature-card,
.product-card,
.service-card,
.coverage-card,
.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.logo-wrap{
  padding:28px;
}
.logo-wrap img{
  width:min(100%, 420px);
  margin:0 auto;
  border-radius:50%;
}
.info-card{
  padding:24px;
}
.info-card h3{
  margin:0 0 14px;
  font-size:1.18rem;
}
.info-card p{
  margin:8px 0;
  color:var(--muted);
}

.section{
  padding:84px 0;
}
.section-alt{
  background:var(--soft);
}
.section-heading{
  max-width:760px;
  margin:0 auto 34px;
  text-align:center;
}
.section-heading.left{
  text-align:left;
  margin-inline:0;
}
.section-heading h2{
  margin:0 0 12px;
  font-size:clamp(1.8rem, 3vw, 2.8rem);
  line-height:1.1;
}
.section-heading p{
  margin:0;
  color:var(--muted);
  font-size:1.02rem;
}

.features-grid,
.products-grid,
.services-grid,
.coverage-cards,
.contact-grid,
.footer-grid{
  display:grid;
  gap:22px;
}
.features-grid{
  grid-template-columns:repeat(4,1fr);
}
.feature-card{
  padding:24px;
}
.feature-card h3{
  margin:0 0 10px;
  font-size:1.08rem;
}
.feature-card p{
  margin:0;
  color:var(--muted);
}

.products-grid{
  grid-template-columns:repeat(4,1fr);
}
.product-card{
  padding:24px;
  min-height:140px;
  position:relative;
  overflow:hidden;
}
.product-card span{
  color:var(--accent);
  font-size:.9rem;
  font-weight:800;
}
.product-card h3{
  margin:22px 0 0;
  font-size:1.12rem;
}
.highlight-card{
  background:linear-gradient(135deg, #111214, #23262c);
  color:#fff;
  border-color:#111214;
}
.highlight-card h3,.highlight-card span{color:#fff}

.services-grid{
  grid-template-columns:repeat(2,1fr);
}
.service-card{
  padding:28px;
}
.service-card h3{
  margin:0 0 12px;
  font-size:1.18rem;
}
.service-card p{
  margin:0;
  color:var(--muted);
}

.coverage-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:start;
}
.coverage-cards{
  grid-template-columns:repeat(2,1fr);
}
.coverage-card{
  padding:24px;
}
.coverage-card h3{
  margin:0 0 10px;
}
.coverage-card p{
  margin:0;
  color:var(--muted);
}

.cta-section{
  padding-top:20px;
}
.cta-box{
  background:#111214;
  color:#fff;
  border-radius:28px;
  padding:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  box-shadow:var(--shadow);
}
.cta-box h2{
  margin:0 0 10px;
  font-size:clamp(1.7rem, 3vw, 2.4rem);
}
.cta-box p{
  margin:0;
  color:rgba(255,255,255,.78);
}

.contact-grid{
  grid-template-columns:1.2fr .8fr;
}
.contact-card{
  padding:28px;
}
.contact-card h2,.contact-card h3{
  margin-top:0;
}
.contact-list{
  list-style:none;
  padding:0;
  margin:0 0 24px;
}
.contact-list li{
  padding:10px 0;
  border-bottom:1px solid var(--line);
}
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.text-link{
  color:var(--accent);
  font-weight:700;
}

.footer{
  background:#111214;
  color:#fff;
  padding:36px 0;
}
.footer-grid{
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  align-items:start;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:16px;
}
.footer-brand img{
  width:72px;
  height:72px;
  object-fit:cover;
  border-radius:50%;
  background:#fff;
}
.footer h3,.footer h4{
  margin:0 0 10px;
}
.footer p,.footer a{
  margin:0 0 8px;
  color:rgba(255,255,255,.78);
}

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:1200;
  background:#25d366;
  color:#fff;
  padding:15px 18px;
  border-radius:999px;
  font-weight:800;
  box-shadow:0 16px 34px rgba(37,211,102,.34);
}

@media (max-width: 980px){
  .hero-grid,
  .coverage-grid,
  .contact-grid,
  .footer-grid,
  .features-grid,
  .products-grid{
    grid-template-columns:1fr 1fr;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .menu-toggle{
    display:block;
  }

  .menu{
    position:absolute;
    top:85px;
    left:16px;
    right:16px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    box-shadow:var(--shadow);
    padding:16px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
  }

  .menu.open{
    display:flex;
  }

  .desktop-cta{
    width:100%;
  }
}

@media (max-width: 640px){
  .topbar-inner{
    justify-content:flex-start;
  }

  .hero{
    padding-top:52px;
  }

  .hero-grid,
  .features-grid,
  .products-grid,
  .coverage-grid,
  .coverage-cards,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .nav{
    min-height:74px;
  }

  .brand img{
    width:52px;
    height:52px;
  }

  .brand-text strong{
    font-size:.92rem;
  }

  .brand-text span{
    font-size:.78rem;
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
    padding:28px;
  }

  .section{
    padding:68px 0;
  }
}
