:root{
  --primary:#0f766e;
  --primary-dark:#0b5d57;
  --secondary:#0f172a;
  --accent:#f59e0b;
  --text:#1f2937;
  --muted:#6b7280;
  --light:#f8fafc;
  --white:#ffffff;
  --border:#e5e7eb;
  --shadow:0 10px 30px rgba(15, 23, 42, 0.08);
  --radius:18px;
  --radius-sm:12px;
  --container:1180px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}

input,
select,
textarea,
button{
  font-family:'Inter',sans-serif;
}

.container{
  width:min(100% - 32px, var(--container));
  margin:0 auto;
}

.section{
  padding:88px 0;
}

.section-light{
  background:var(--light);
}

.section-dark{
  background:linear-gradient(135deg, #0f172a 0%, #111827 100%);
  color:#fff;
}

.section-head{
  max-width:760px;
  margin:0 auto 42px;
  text-align:center;
}

.section-head.left-align{
  margin:0 0 28px;
  text-align:left;
}

.section-head.center{
  text-align:center;
}

.section-head.white h2,
.section-head.white p{
  color:#fff;
}

.section-tag{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.3px;
  text-transform:uppercase;
  background:rgba(15, 118, 110, 0.1);
  color:var(--primary);
  margin-bottom:14px;
}

.light-tag{
  background:rgba(255,255,255,0.1);
  color:#d1fae5;
}

.section-head h2{
  font-size:clamp(30px,4vw,46px);
  line-height:1.15;
  margin-bottom:14px;
  color:var(--secondary);
}

.section-head p{
  color:var(--muted);
  font-size:17px;
}

.topbar{
  background:#0b1324;
  color:#cbd5e1;
  font-size:14px;
}

.topbar-wrap{
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding:10px 0;
}

.topbar-left,
.topbar-right{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}

.topbar i{
  margin-right:6px;
  color:#7dd3fc;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(229,231,235,0.8);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:84px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:22px;
  font-weight:800;
  color:var(--secondary);
}

.logo-mark{
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:22px;
  font-weight:800;
  box-shadow:var(--shadow);
}

.logo-text strong{
  color:var(--primary);
}

.site-nav ul{
  display:flex;
  align-items:center;
  gap:26px;
}

.site-nav a{
  font-size:15px;
  font-weight:600;
  color:var(--secondary);
  transition:.25s ease;
}

.site-nav a:hover{
  color:var(--primary);
}

.nav-cta{
  display:flex;
  align-items:center;
  gap:12px;
}

.call-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:#eefaf8;
  color:var(--primary-dark);
  font-size:14px;
  font-weight:700;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:50px;
  padding:0 22px;
  border:none;
  border-radius:14px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:.3s ease;
}

.btn-primary{
  background:linear-gradient(135deg, var(--primary) 0%, #14b8a6 100%);
  color:#fff;
  box-shadow:0 12px 24px rgba(15,118,110,.2);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-outline{
  border:1px solid var(--border);
  color:var(--secondary);
  background:#fff;
}

.btn-outline:hover{
  border-color:var(--primary);
  color:var(--primary);
}

.btn-dark{
  background:var(--secondary);
  color:#fff;
}

.btn-dark:hover{
  background:#0b1120;
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:none;
  border-radius:12px;
  background:#f1f5f9;
  color:var(--secondary);
  font-size:20px;
  cursor:pointer;
}

.hero-section{
  padding:80px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(20,184,166,.16), transparent 34%),
    radial-gradient(circle at top right, rgba(245,158,11,.14), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:34px;
  align-items:start;
}

.badge{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  background:#ecfeff;
  color:var(--primary);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.3px;
  margin-bottom:18px;
}

.hero-copy h1{
  font-size:clamp(34px,5vw,60px);
  line-height:1.08;
  color:var(--secondary);
  margin-bottom:18px;
}

.hero-lead{
  font-size:18px;
  color:var(--muted);
  margin-bottom:26px;
  max-width:720px;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px 18px;
  margin-bottom:28px;
}

.hero-points div{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 14px;
  font-weight:600;
  box-shadow:var(--shadow);
}

.hero-points i{
  color:var(--primary);
  margin-right:8px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:26px;
}

.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  color:#475569;
  font-size:14px;
  font-weight:600;
}

.hero-trust i{
  color:var(--accent);
  margin-right:7px;
}

.quote-card{
  background:#fff;
  border:1px solid rgba(229,231,235,.9);
  border-radius:26px;
  padding:28px;
  box-shadow:0 20px 50px rgba(15, 23, 42, 0.08);
}

.quote-head h3{
  font-size:28px;
  color:var(--secondary);
  margin-bottom:8px;
}

.quote-head p{
  color:var(--muted);
  margin-bottom:22px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.form-grid .full{
  grid-column:1 / -1;
}

input,
select,
textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  color:var(--text);
  padding:14px 16px;
  outline:none;
  transition:.25s ease;
  font-size:15px;
}

input:focus,
select:focus,
textarea:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 4px rgba(15,118,110,.1);
}

textarea{
  min-height:120px;
  resize:vertical;
}

.form-note{
  font-size:13px;
  color:var(--muted);
  margin-top:14px;
}

.stats-bar{
  padding:0 0 24px;
  background:#fff;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.stat-card{
  background:#fff;
  border:1px solid var(--border);
  padding:26px 22px;
  border-radius:20px;
  box-shadow:var(--shadow);
}

.stat-card h3{
  font-size:22px;
  color:var(--secondary);
  margin-bottom:8px;
}

.stat-card p{
  color:var(--muted);
  font-size:15px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:26px 24px;
  box-shadow:var(--shadow);
  transition:.3s ease;
}

.service-card:hover{
  transform:translateY(-5px);
}

.service-icon{
  width:62px;
  height:62px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(15,118,110,.12), rgba(20,184,166,.18));
  color:var(--primary);
  font-size:28px;
  margin-bottom:18px;
}

.service-card h3{
  font-size:22px;
  margin-bottom:10px;
  color:var(--secondary);
}

.service-card p{
  color:var(--muted);
}

.about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:30px;
  align-items:center;
}

.about-card{
  min-height:100%;
}

.visual-card{
  background:linear-gradient(160deg, #0f172a 0%, #111827 100%);
  border-radius:28px;
  padding:30px;
  box-shadow:var(--shadow);
}

.visual-block{
  min-height:100%;
  display:grid;
  gap:18px;
}

.visual-mini-card{
  padding:22px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
}

.visual-mini-card span{
  display:block;
  font-size:13px;
  color:#cbd5e1;
  margin-bottom:8px;
}

.visual-mini-card strong{
  font-size:19px;
  line-height:1.4;
}

.about-copy p{
  color:var(--muted);
  margin-bottom:16px;
}

.check-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 18px;
  margin:24px 0;
}

.check-list li{
  font-weight:600;
  color:var(--text);
}

.check-list i{
  color:var(--primary);
  margin-right:8px;
}

.business-box{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:20px;
  padding:22px;
}

.business-box h3{
  margin-bottom:12px;
  color:var(--secondary);
}

.business-box p{
  margin-bottom:8px;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.why-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:26px 22px;
}

.why-card i{
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  color:#d1fae5;
  font-size:24px;
  margin-bottom:18px;
}

.why-card h3{
  font-size:21px;
  margin-bottom:10px;
  color:#fff;
}

.why-card p{
  color:#cbd5e1;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.process-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}

.step-no{
  display:inline-flex;
  min-width:58px;
  height:36px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#ecfeff;
  color:var(--primary);
  font-weight:800;
  font-size:13px;
  margin-bottom:14px;
}

.process-card h3{
  font-size:20px;
  margin-bottom:10px;
  color:var(--secondary);
}

.process-card p{
  color:var(--muted);
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.faq-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow);
}

.faq-item h3{
  font-size:19px;
  color:var(--secondary);
  margin-bottom:10px;
}

.faq-item p{
  color:var(--muted);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
}

.contact-info-card,
.contact-form-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:26px;
  padding:28px;
  box-shadow:var(--shadow);
}

.contact-info-card p,
.contact-form-card p{
  color:var(--muted);
  margin-bottom:18px;
}

.info-list{
  display:grid;
  gap:16px;
  margin-top:12px;
}

.info-list li{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fbfdff;
}

.info-list i{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#ecfeff;
  color:var(--primary);
  font-size:18px;
  flex-shrink:0;
}

.info-list strong{
  display:block;
  margin-bottom:4px;
  color:var(--secondary);
}

.disclaimer-box{
  margin-top:22px;
  padding:20px;
  border-radius:18px;
  background:#fff7ed;
  border:1px solid #fed7aa;
}

.disclaimer-box h3{
  color:#9a3412;
  margin-bottom:8px;
}

.disclaimer-box p{
  margin:0;
  color:#7c2d12;
  font-size:15px;
}

.contact-form-card h3{
  font-size:28px;
  color:var(--secondary);
  margin-bottom:8px;
}

.contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.contact-form .full{
  grid-column:1 / -1;
}

.legal-section{
  background:#0f172a;
}

.legal-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.legal-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  padding:26px;
  border-radius:22px;
}

.legal-card h3{
  font-size:23px;
  margin-bottom:12px;
}

.legal-card p{
  color:#cbd5e1;
}

.site-footer{
  background:#0b1324;
  color:#cbd5e1;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr .85fr;
  gap:26px;
  padding:60px 0 26px;
}

.site-footer h3{
  color:#fff;
  margin-bottom:14px;
  font-size:20px;
}

.footer-brand p{
  color:#94a3b8;
}

.footer-links{
  display:grid;
  gap:10px;
}

.footer-links li,
.footer-links a{
  color:#cbd5e1;
  font-size:15px;
}

.footer-links a:hover{
  color:#fff;
}

.footer-disclaimer{
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:16px;
  text-align:center;
  color:#f8fafc;
  font-size:14px;
}

.footer-bottom{
  text-align:center;
  padding:18px 16px 26px;
  color:#94a3b8;
  font-size:14px;
}

.sticky-cta{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:1200;
}

.sticky-cta a{
  width:56px;
  height:56px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:22px;
  box-shadow:0 12px 30px rgba(15,23,42,.22);
}

.sticky-call{
  background:var(--secondary);
}

.sticky-whatsapp{
  background:#22c55e;
}

@media (max-width: 1100px){
  .hero-grid,
  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .stats-grid,
  .why-grid,
  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }

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

@media (max-width: 860px){
  .menu-toggle{
    display:grid;
    place-items:center;
  }

  .site-nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    border-bottom:1px solid var(--border);
    box-shadow:0 18px 30px rgba(15,23,42,.08);
    padding:12px 16px 20px;
    display:none;
  }

  .site-nav.active{
    display:block;
  }

  .site-nav ul{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .nav-cta{
    display:none;
  }

  .hero-points,
  .check-list,
  .faq-grid,
  .legal-grid,
  .contact-form,
  .form-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .stats-grid,
  .service-grid,
  .why-grid,
  .process-grid{
    grid-template-columns:1fr;
  }

  .section{
    padding:72px 0;
  }

  .quote-card,
  .contact-info-card,
  .contact-form-card{
    padding:22px;
  }
}

@media (max-width: 560px){
  .container{
    width:min(100% - 22px, var(--container));
  }

  .topbar-wrap{
    justify-content:center;
  }

  .hero-section{
    padding-top:56px;
  }

  .hero-copy h1{
    font-size:34px;
  }

  .badge,
  .section-tag{
    font-size:12px;
  }

  .btn{
    width:100%;
  }

  .hero-actions{
    flex-direction:column;
  }

  .sticky-cta{
    right:12px;
    bottom:12px;
  }

  .sticky-cta a{
    width:52px;
    height:52px;
  }
}