
:root{
  --brand-900: #0b4f8a;
  --brand-700: #1473b7;
  --accent: #0fb06c;
  --muted: #6b7280;
  --bg: #f8fafc;
  --card: #ffffff;
  --radius: 12px;
  --container: 1100px;
  --shadow: 0 6px 18px rgba(11,79,138,0.08);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color-scheme: light;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:#0f1724;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}

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

/* container */
.container{
  width:calc(100% - 32px);
  max-width:var(--container);
  margin:0 auto;
  padding:0 16px;
}

/* header */
.site-header{
  background:#ffffffee;
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(11,79,138,0.06);
  position:sticky;
  top:0;
  z-index:40;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}
.logo{height:52px}
.nav{display:flex;gap:18px;align-items:center;font-size:14px}
.nav a{
  color:var(--brand-900);
  text-decoration:none;
  font-weight:600;
}
.nav a:hover{color:var(--brand-700)}

.btn{
  padding:10px 16px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  display:inline-block;
  font-size:14px;
  border:0;
  cursor:pointer;
}
.btn.primary{
  background:var(--brand-700);
  color:#fff;
}
.btn.primary:hover{
  background:#0f5f9c;
}
.btn.ghost{
  background:transparent;
  border:1px solid rgba(11,79,138,0.12);
  color:var(--brand-700);
}
.btn.ghost:hover{
  border-color:var(--brand-700);
}
.btn.link{
  background:transparent;
  color:var(--brand-700);
  text-decoration:underline;
  padding:6px 8px;
}
.btn.full{
  width:100%;
}
.whatsapp-btn{
  background:#25D366;
  color:#fff;
  border-radius:999px;
  padding:8px 16px;
  margin-left:12px;
  font-size:13px;
}
.whatsapp-btn:hover{
  filter:brightness(0.95);
}

/* hero */
.hero{
  position:relative;
  padding:32px 0 40px;
  background:linear-gradient(180deg, rgba(20,115,183,0.08), rgba(15,176,108,0.02));
}
.hero-overlay{
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.9) 0, rgba(255,255,255,0) 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.7) 0, rgba(255,255,255,0) 35%);
  mix-blend-mode:soft-light;
  pointer-events:none;
}
.hero-inner{
  position:relative;
  display:grid;
  gap:24px;
}
.hero-left{
  max-width:560px;
}
.hero-right{
  max-width:360px;
  margin-left:auto;
}
@media(min-width:880px){
  .hero-inner{
    grid-template-columns:minmax(0,1.6fr) minmax(0,1.1fr);
    align-items:flex-start;
  }
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-size:12px;
  font-weight:700;
  color:var(--brand-700);
  margin:0 0 6px;
}
h1{
  font-size:30px;
  margin:0 0 12px;
  color:var(--brand-900);
}
.lead{
  color:var(--muted);
  margin:0 0 16px;
}
.hero-features{
  list-style:none;
  padding:0;
  margin:0 0 14px;
}
.hero-features li{
  margin-bottom:4px;
  font-size:14px;
}
.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:8px;
}
.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:#fff;
  box-shadow:0 2px 8px rgba(15,23,42,0.06);
  color:var(--brand-900);
}

/* hero card */
.hero-card{
  background:var(--card);
  border-radius:16px;
  padding:18px 18px 16px;
  box-shadow:var(--shadow);
}
.hero-card-header h2{
  margin:0 0 4px;
  font-size:18px;
  color:var(--brand-900);
}
.hero-card-header .small{
  margin:0;
}
.hero-form{
  margin-top:12px;
  display:grid;
  gap:10px;
}
.hero-form label{
  display:flex;
  flex-direction:column;
  font-size:13px;
  color:#111827;
}
.hero-form input,
.hero-form select{
  margin-top:4px;
  padding:9px 10px;
  border-radius:8px;
  border:1px solid #e6eef6;
  font-size:14px;
}
.hero-contact-snippet{
  border-top:1px solid #e5e7eb;
  margin-top:12px;
  padding-top:10px;
}
.hero-contact-phones{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:6px;
  margin:4px 0 0;
}
.phone-link{
  font-weight:600;
  color:var(--brand-900);
  text-decoration:none;
  font-size:14px;
}
.phone-link:hover{color:var(--brand-700);}

/* main sections */
.main{
  margin:18px 0 28px;
}

/* trust strip */
.trust{
  display:flex;
  gap:14px;
  justify-content:space-between;
  background:transparent;
  padding:14px 0;
  border-radius:12px;
  margin-top:8px;
  flex-wrap:wrap;
}
.trust-item{
  flex:1;
  text-align:center;
  padding:10px;
  background:var(--card);
  border-radius:10px;
  box-shadow:var(--shadow);
  font-size:13px;
}
.trust-item strong{
  display:block;
  font-size:20px;
  color:var(--brand-900);
}

/* sections */
.section-header{
  text-align:center;
  margin:28px 0 10px;
}
.section-header.left{
  text-align:left;
}
.section-header h2{
  margin:0 0 6px;
  color:var(--brand-900);
}
.muted{
  color:var(--muted);
}
.small{
  font-size:13px;
}

/* cards services */
.grid-3{
  display:grid;
  grid-template-columns:repeat(1,1fr);
  gap:14px;
}
@media(min-width:900px){
  .grid-3{grid-template-columns:repeat(3,1fr);}
}
.card{
  background:var(--card);
  border-radius:12px;
  box-shadow:var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.card-img{
  width:100%;
  height:170px;
  object-fit:cover;
}
.card-body{
  padding:14px 14px 16px;
  font-size:14px;
}
.card-body h3{
  margin:0 0 6px;
  font-size:16px;
  color:var(--brand-900);
}
.price{
  font-weight:700;
  margin-top:8px;
  color:var(--brand-900);
}

/* pricing table */
.pricing{margin-top:10px;}
.price-table{
  width:100%;
  border-collapse:collapse;
  margin-top:12px;
  background:var(--card);
  box-shadow:var(--shadow);
  border-radius:10px;
  overflow:hidden;
  font-size:14px;
}
.price-table th,
.price-table td{
  padding:12px;
  text-align:left;
  border-bottom:1px solid #f1f5f9;
}
.price-table thead th{
  background:linear-gradient(90deg, rgba(11,79,138,0.06), rgba(15,176,108,0.02));
  color:var(--brand-900);
}

/* about grid */
.about-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  margin-top:30px;
}
.photo-illustration{
  min-height:180px;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(20,115,183,0.12), rgba(11,79,138,0.06));
  box-shadow:var(--shadow);
}
.bullets{
  list-style:none;
  padding-left:0;
  margin:8px 0 0;
}
.bullets li{
  position:relative;
  padding-left:22px;
  margin-bottom:8px;
  font-size:14px;
}
.bullets li::before{
  content:"";
  position:absolute;
  left:0;
  top:7px;
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--accent);
}
@media(min-width:980px){
  .about-grid{
    grid-template-columns:1.2fr 1fr;
    align-items:center;
  }
}

/* testimonials */
.testimonials{margin-top:28px;}
.testimonial{
  background:var(--card);
  padding:16px;
  border-radius:12px;
  box-shadow:var(--shadow);
  font-size:14px;
}
.testimonial footer{
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
}

/* contact / form */
.contact{
  margin-top:32px;
  background:var(--card);
  padding:18px 16px 20px;
  border-radius:12px;
  box-shadow:var(--shadow);
}
.survey-form label{
  display:block;
  margin-bottom:10px;
  font-size:14px;
}
.survey-form input[type="text"],
.survey-form input[type="tel"],
.survey-form textarea,
.survey-form select{
  width:100%;
  padding:10px;
  border-radius:8px;
  border:1px solid #e6eef6;
  font-size:14px;
  margin-top:4px;
}
.row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.row label{flex:1;min-width:200px;}
.grid-days,
.grid-time,
.areas,
.extras{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
  margin-bottom:12px;
}
.grid-time{
  grid-template-columns:repeat(3,1fr);
}
.areas label,
.extras label{
  font-size:13px;
}
textarea{resize:vertical;}
.form-actions{
  display:flex;
  gap:12px;
  align-items:center;
  margin-top:12px;
  flex-wrap:wrap;
}

/* footer */
.site-footer{
  border-top:1px solid rgba(11,79,138,0.06);
  padding:18px 0;
  margin-top:24px;
  background:#ffffff;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.footer-actions .social{
  margin-left:10px;
  color:var(--brand-700);
  text-decoration:none;
  font-size:14px;
}
.footer-actions .social:hover{
  text-decoration:underline;
}

/* responsive tweaks */
@media(max-width:720px){
  .nav{display:none;}
  h1{font-size:24px;}
}
