:root{
  --navy:#003e63;
  --gold:#f3b202;
  --white:#ffffff;
  --black:#111111;
}

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

body{
  font-family:'Poppins', sans-serif;
  font-weight:200;
  color:var(--black);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family:'Sora', sans-serif;
  font-weight:700;
  color:var(--navy);
  line-height:1.25;
}

h1{font-size:clamp(2rem,4vw,2.8rem);}
h2{font-size:clamp(1.5rem,3vw,2.1rem); text-align:center; margin-bottom:1.2rem;}
h3{font-size:1.1rem; font-weight:600;}

p{font-weight:200;}

.container{
  max-width:1440px;
  margin:0 auto;
  padding:0 24px;
}

a{color:var(--navy); text-decoration:none;}

/* BUTTONS */
.btn{
  display:inline-block;
  font-family:'Sora', sans-serif;
  font-size:.95rem;
  font-weight:700;
  padding:14px 26px;
  border-radius:6px;
  border:2px solid transparent;
  cursor:pointer;
  text-align:center;
  transition:all .2s ease;
}
.btn-primary{
  background:var(--gold);
  color:var(--black);
  border-color:var(--gold);
}
.btn-primary:hover{background:#d99e00; border-color:#d99e00;}
.btn-outline{
  background:transparent;
  color:var(--navy);
  border-color:var(--navy);
}
.btn-outline:hover{background:var(--navy); color:var(--white);}
.btn-block{width:100%;}
.btn-whatsapp{
  background:#25D366;
  color:var(--white);
  border-color:#25D366;
}
.btn-whatsapp:hover{background:#1ebe5b; border-color:#1ebe5b;}

.hero-ctas{display:flex; flex-wrap:wrap; gap:14px; margin:1.8rem 0 1rem;}

/* HEADER */
.site-header{
  background:var(--navy);
  padding:16px 0;
}
.header-inner{
  display:flex; justify-content:space-between; align-items:center; gap:20px;
}
.logo-img{height:38px; display:block; filter: brightness(0) invert(1)}
.main-nav{
  display:flex; gap:26px; flex:1; justify-content:center;
}
.main-nav a{
  color:#dceaf1;
  font-family:'Sora', sans-serif;
  font-weight:600;
  font-size:.92rem;
  position:relative;
  padding-bottom:4px;
  transition:color .2s ease;
}
.main-nav a::after{
  content:'';
  position:absolute; left:0; bottom:0; width:0; height:2px;
  background:var(--gold);
  transition:width .25s ease;
}
.main-nav a:hover{color:var(--white);}
.main-nav a:hover::after{width:100%;}
.header-phone{
  color:var(--gold);
  font-weight:600;
  white-space:nowrap;
}

/* HERO */
.hero{
  background:linear-gradient(135deg, var(--navy) 0%, #012d47 100%);
  padding:60px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:40px;
  align-items:center;
}
.hero h1{color:var(--white);}
.hero .subhead{color:#cfe3ee; font-size:1.1rem; margin-top:1rem; max-width:520px;}
.trust-line{color:#a9c6d8; font-size:.9rem; margin-top:.5rem;}
.trust-line strong{color:var(--gold);}

.hero-form-card{
  background:var(--white);
  border-radius:12px;
  padding:30px;
  box-shadow:0 20px 50px rgba(0,0,0,.3);
}
.hero-form-card h3{margin-bottom:1rem;}

.lead-form{display:flex; flex-direction:column; gap:12px;}
.lead-form input, .lead-form textarea{
  font-family:'Poppins', sans-serif;
  font-weight:300;
  padding:12px 14px;
  border:1px solid #d5d5d5;
  border-radius:6px;
  font-size:.95rem;
  resize:vertical;
}
.lead-form input:focus, .lead-form textarea:focus{
  outline:none; border-color:var(--navy);
}

/* TRUST STRIP */
.trust-strip{
  background:#f4f7f9;
  padding:46px 0;
  text-align:center;
  border-top:1px solid #e6ebee;
  border-bottom:1px solid #e6ebee;
}
.trust-strip-label{
  font-weight:500; color:var(--navy); margin-bottom:28px;
  font-size:1rem;
}
.logo-row{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:42px;
}
.logo-row img{
  height:64px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  transition:transform .25s ease;
}
.logo-row img:hover{
  transform:translateY(-3px);
}

/* PROBLEM/PROMISE */
.problem-promise{padding:70px 0;}
.problem-grid{
  display:grid; grid-template-columns:.9fr 1.1fr; gap:50px; align-items:center;
}
.problem-image img{
  width:100%; border-radius:14px; box-shadow:0 20px 40px rgba(0,62,99,.18);
}
.problem-copy h2.text-left{text-align:left;}
.problem-promise .lede{margin-bottom:1.5rem; font-size:1.05rem;}
.check-list{list-style:none; margin-bottom:2rem; text-align:left;}
.check-list li{padding:8px 0; font-weight:400;}

/* SERVICES */
.services{background:var(--navy); padding:70px 0;}
.services h2{color:var(--white);}
.services-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px; margin-top:2rem;
}
.service-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.15);
  border-radius:12px;
  padding:30px 22px;
  transition:transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.service-card:hover{
  transform:translateY(-8px);
  background:rgba(243,178,2,.08);
  border-color:var(--gold);
  box-shadow:0 16px 30px rgba(0,0,0,.25);
}
.service-icon{
  font-size:2rem;
  width:60px; height:60px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(243,178,2,.12);
  border-radius:50%;
  margin-bottom:16px;
  transition:transform .3s ease, background .3s ease;
}
.service-card:hover .service-icon{
  transform:scale(1.12) rotate(-6deg);
  background:var(--gold);
}
.service-card h3{color:var(--gold);}
.service-card p{color:#cfe3ee; font-size:.92rem; margin-top:.6rem;}

/* PROOF */
.proof{padding:70px 0; text-align:center;}
.proof-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:28px; max-width:760px; margin:2rem auto 0;
}
.proof-card{
  display:block;
  border:1px solid #e2e2e2;
  border-radius:14px;
  overflow:hidden;
  padding:0 0 28px;
  transition:transform .3s ease, box-shadow .3s ease;
}
.proof-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 34px rgba(0,62,99,.15);
}
.proof-img{
  width:100%; height:230px;
  background:#f4f7f9;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.proof-img img{
  width:100%; height:100%; object-fit:cover;
}
.proof-card h3{padding:0 24px; margin-top:20px; font-size:1.25rem;}
.proof-card .link-arrow{padding:0 24px; font-size:1rem;}
.link-arrow{color:var(--navy); font-weight:600; display:inline-block; margin-top:.5rem;}
.proof-quote{
  max-width:680px; margin:2.5rem auto 0; font-style:italic; color:#555;
}

/* FAQ */
.faq{background:#f4f7f9; padding:70px 0;}
.faq-list{max-width:760px; margin:2rem auto 0;}
.faq-list details{
  background:var(--white);
  border:1px solid #e2e2e2;
  border-radius:8px;
  padding:16px 20px;
  margin-bottom:12px;
}
.faq-list summary{
  font-family:'Sora', sans-serif;
  font-weight:600;
  color:var(--navy);
  cursor:pointer;
}
.faq-list p{margin-top:10px; font-size:.95rem; color:#444;}

/* FINAL CTA */
.final-cta{
  background:var(--gold);
  padding:70px 0;
  text-align:center;
}
.final-cta h2{color:var(--black);}
.final-cta p{margin-bottom:1rem; font-size:1.05rem;}
.final-cta .hero-ctas{justify-content:center;}
.final-cta .btn-primary{
  background:var(--navy);
  color:var(--white);
  border-color:var(--navy);
}
.final-cta .btn-primary:hover{background:#012d47; border-color:#012d47;}
.final-cta .btn-outline{
  background:transparent;
  color:var(--navy);
  border-color:var(--navy);
}
.final-cta .btn-outline:hover{background:var(--navy); color:var(--white);}

/* FOOTER */
.site-footer{background:var(--black); padding:30px 0;}
.footer-inner{
  display:flex; flex-wrap:wrap; justify-content:space-between; align-items:center; gap:16px;
}
.footer-logo{height:32px; filter:brightness(0) invert(1); opacity:.9;}
.footer-links a{color:#ccc; margin-right:18px; font-size:.9rem;}
.footer-links a:hover{color:var(--gold);}
.footer-copy{width:100%; color:#777; font-size:.8rem; margin-top:14px;}

/* STICKY MOBILE CTA */
.sticky-cta{
  display:none;
  position:fixed; bottom:0; left:0; right:0;
  background:var(--white);
  padding:12px 16px;
  box-shadow:0 -4px 12px rgba(0,0,0,.15);
  z-index:500;
}

/* MODAL */
.modal-overlay{
  display:none;
  position:fixed; inset:0;
  background:rgba(0,0,0,.6);
  z-index:1000;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.modal-overlay.active{display:flex;}
.modal-box{
  background:var(--white);
  border-radius:12px;
  padding:34px;
  max-width:420px;
  width:100%;
  position:relative;
}
.modal-box h3{margin-bottom:.3rem;}
.modal-sub{color:#666; font-size:.9rem; margin-bottom:1.2rem;}
.modal-close{
  position:absolute; top:14px; right:16px;
  background:none; border:none; font-size:1.6rem; cursor:pointer; color:#888;
  line-height:1;
}
.modal-close:hover{color:var(--black);}

/* ANIMATIONS */
.fade-in{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
.fade-in.in-view{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .proof-grid{grid-template-columns:1fr;}
  .problem-grid{grid-template-columns:1fr;}
  .problem-copy h2.text-left{text-align:center;}
  .main-nav{display:none;}
  .sticky-cta{display:block;}
  body{padding-bottom:70px;}
}
@media (max-width:520px){
  .services-grid{grid-template-columns:1fr;}
  .logo-row{gap:24px;}
  .logo-row img{height:36px;}
}