/* QFNfix site styles — clean, conversion-focused */
:root{
  --navy:#0B2A5B;
  --orange:#F59E0B;
  --bg:#0A1020;
  --text:#0E1726;
  --muted:#5B6472;
  --card:#ffffff;
  --line:#E6E8EE;
  --shadow: 0 12px 35px rgba(10,16,32,.10);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.45;
}

a{color:inherit}
.container{width:min(1120px, 92vw); margin:0 auto}

.skip{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:16px; top:16px; width:auto; height:auto; background:#fff; padding:10px 12px; border:1px solid var(--line); border-radius:10px; z-index:50}

.site-header{
  position:sticky; top:0; z-index:40;
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(230,232,238,.8);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:12px 0;
}

.brand{display:flex; align-items:center; gap:10px}
.brand-link{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand-logo{width:36px; height:36px}
.brand-name{font-weight:800; letter-spacing:.2px; font-size:18px}
.brand-name .qfn{color:var(--navy)}
.brand-name .fix{color:var(--orange)}

.nav{display:flex; align-items:center; gap:10px}
.nav-links{display:flex; align-items:center; gap:16px}
.nav-links a{color:#233049; text-decoration:none; font-weight:600; font-size:14px}
.nav-links a:hover{text-decoration:underline}

.header-cta{display:flex; align-items:center; gap:12px}
.phone{color:#233049; text-decoration:none; font-weight:700; font-size:14px}
.phone:hover{text-decoration:underline}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid transparent;
  background:linear-gradient(135deg, var(--navy), #123E8A);
  color:#fff; text-decoration:none;
  font-weight:800; letter-spacing:.2px;
  box-shadow: 0 10px 25px rgba(11,42,91,.20);
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-small{padding:9px 12px; font-size:13px}
.btn-block{width:100%}
.btn-ghost{
  background:#fff;
  color:var(--navy);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn-ghost:hover{border-color:#cfd6e5}

.hero{
  background:
    radial-gradient(1200px 450px at 20% -10%, rgba(245,158,11,.25), transparent 60%),
    radial-gradient(900px 400px at 85% 0%, rgba(11,42,91,.22), transparent 55%),
    linear-gradient(180deg, #ffffff, #F7F9FF);
  padding:34px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:24px;
  align-items:start;
}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  background:#fff;
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  color:#233049;
  box-shadow:0 10px 30px rgba(10,16,32,.06);
  margin:0 0 14px;
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height:1.08;
  letter-spacing:-.6px;
}
.sub{margin:0 0 16px; color:#2A364D; font-size:16px}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:16px}

.trust{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:12px; margin-top:18px;
}
.trust-item{
  background:rgba(255,255,255,.8);
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 12px;
}
.trust-title{font-weight:800}
.trust-desc{color:var(--muted); font-size:13px; margin-top:2px}

.hero-card{
  background:var(--card);
  border:1px solid rgba(230,232,238,.9);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.hero-card h2{margin:0 0 4px}
.muted{color:var(--muted)}
.fineprint{color:var(--muted); font-size:12px; margin:10px 0 0}
.alt-contact{margin:12px 0 0; font-size:13px; color:var(--muted)}
.alt-contact a{font-weight:700}

.section{padding:44px 0}
.section-alt{background:#F7F9FF; border-top:1px solid rgba(230,232,238,.7); border-bottom:1px solid rgba(230,232,238,.7)}
.section-head{display:flex; align-items:end; justify-content:space-between; gap:18px; margin-bottom:18px}
.section-head h2{margin:0; font-size:28px; letter-spacing:-.3px}
.section-head p{margin:0}

.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 12px 30px rgba(10,16,32,.06);
}
.card h3{margin:0 0 6px}
.card p{margin:0 0 10px; color:#2A364D}
.card ul{margin:0; padding-left:18px; color:var(--muted)}
.card li{margin:6px 0}
.card.highlight{
  border:1px solid rgba(245,158,11,.55);
  background: linear-gradient(180deg, #fff, rgba(245,158,11,.08));
}
.callout{
  border:1px dashed rgba(11,42,91,.35);
  border-radius:14px;
  padding:12px;
  background:rgba(255,255,255,.7);
}

.area-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.area-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 12px 30px rgba(10,16,32,.06);
}
.columns{
  columns:2;
  column-gap:18px;
  margin:0; padding-left:18px;
  color:var(--muted);
}
.columns li{break-inside:avoid; margin:7px 0}

.reviews-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:14px;
}
.review-samples, .review-form-wrap{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 12px 30px rgba(10,16,32,.06);
}
.review{border-bottom:1px solid rgba(230,232,238,.8); padding:12px 0}
.review:last-child{border-bottom:0}
.stars{letter-spacing:2px; font-weight:800}
.who{color:var(--muted); font-size:13px; margin-top:6px}

.book-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:14px;
  align-items:start;
}
.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 12px 30px rgba(10,16,32,.06);
}
.divider{height:1px; background:rgba(230,232,238,.9); margin:14px 0}
.steps{margin:0; padding-left:18px}
.steps li{margin:8px 0; color:#2A364D}

.form{display:flex; flex-direction:column; gap:10px}
.form.big{gap:12px}
label{display:flex; flex-direction:column; gap:6px; font-weight:700; font-size:13px}
input, select, textarea{
  font:inherit;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  outline:none;
  background:#fff;
}
textarea{resize:vertical}
input:focus, select:focus, textarea:focus{
  border-color: rgba(11,42,91,.55);
  box-shadow: 0 0 0 4px rgba(11,42,91,.12);
}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:10px}

.checkbox{flex-direction:row; align-items:center; gap:10px; font-weight:800}
.checkbox input{width:18px; height:18px}
.checkbox.inline{margin-top:4px}

.vip{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  border:1px solid rgba(245,158,11,.35);
  background:rgba(245,158,11,.06);
  padding:10px 12px;
  border-radius:14px;
}
.vip-row{justify-content:flex-start}
.info{
  width:34px; height:34px;
  border-radius:999px;
  border:1px solid rgba(11,42,91,.25);
  background:#fff;
  font-weight:900;
  cursor:pointer;
}
.info:hover{border-color:rgba(11,42,91,.45)}
.form-status{
  margin-top:6px;
  font-size:13px;
  color:#0b5134;
  font-weight:700;
}
.form-status.error{color:#8a1111}

.rating{display:flex; align-items:center; justify-content:space-between; gap:10px}
.rating .label{font-weight:800; font-size:13px}
.stars-input{display:flex; flex-direction:row-reverse; gap:6px}
.stars-input input{appearance:none; width:0; height:0; margin:0}
.stars-input span{font-size:22px; cursor:pointer; color:#c7cbd6}
.stars-input input:checked ~ span,
.stars-input label:hover span,
.stars-input label:hover ~ label span {color: var(--orange)}
.hint{font-size:12px}

.site-footer{
  padding:28px 0;
  background:#0B1020;
  color:#F2F6FF;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .7fr .9fr;
  gap:14px;
  align-items:start;
}
.footer-links{display:flex; flex-direction:column; gap:10px}
.footer-links a{color:#F2F6FF; text-decoration:none; opacity:.9}
.footer-links a:hover{opacity:1; text-decoration:underline}
.footer-contact{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.footer-brand{gap:10px; margin-bottom:10px}
.footer-bottom{border-top:1px solid rgba(242,246,255,.12); margin-top:18px; padding-top:12px}

.nav-toggle{display:none; background:#fff; border:1px solid var(--line); border-radius:12px; padding:10px; cursor:pointer}
.hamburger{display:block; width:18px; height:2px; background:#233049; position:relative}
.hamburger:before,.hamburger:after{content:""; position:absolute; left:0; width:18px; height:2px; background:#233049}
.hamburger:before{top:-6px}
.hamburger:after{top:6px}
.sr-only{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0}

.modal{position:fixed; inset:0; display:none; z-index:60}
.modal[aria-hidden="false"]{display:block}
.modal-backdrop{position:absolute; inset:0; background:rgba(10,16,32,.55)}
.modal-card{
  position:relative;
  width:min(560px, 92vw);
  margin:8vh auto 0;
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(230,232,238,.9);
  box-shadow:0 20px 60px rgba(10,16,32,.25);
  overflow:hidden;
}
.modal-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px; border-bottom:1px solid rgba(230,232,238,.9)
}
.modal-body{padding:14px 16px; color:#233049}
.modal-actions{padding:14px 16px; border-top:1px solid rgba(230,232,238,.9); display:flex; justify-content:flex-end}
.modal-close{border:0; background:transparent; font-size:26px; cursor:pointer; line-height:1}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .trust{grid-template-columns:1fr; gap:10px}
  .cards{grid-template-columns:1fr 1fr}
  .area-grid{grid-template-columns:1fr}
  .reviews-grid{grid-template-columns:1fr}
  .book-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-contact{justify-content:flex-start}
}
@media (max-width: 720px){
  .header-cta{display:none}
  .nav-toggle{display:inline-flex}
  .nav-links{
    display:none;
    position:absolute;
    right:4vw;
    top:60px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:14px;
    padding:12px;
    box-shadow: var(--shadow);
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    min-width:220px;
  }
  .nav-links.open{display:flex}
  .grid-2{grid-template-columns:1fr}
  .columns{columns:1}
}


/* HERO SECTION WITH BACKGROUND IMAGE */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("../img/hero-bg.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 40px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  max-width: 700px;
  color: #fff;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 34px; }
  .hero { padding: 60px 20px; }
}


/* TRUST BLOCK */
.trust {
  background:#f7f9fc;
  padding:40px 20px;
}
.trust-grid {
  max-width:1000px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  font-weight:600;
}

/* REVIEWS */
.reviews {
  padding:60px 20px;
  text-align:center;
  background:#fff;
}
.reviews .review {
  max-width:600px;
  margin:20px auto;
  font-style:italic;
}

/* STICKY CALL BUTTON */
.call-sticky {
  position:fixed;
  bottom:20px;
  right:20px;
  background:#ff6a00;
  color:#fff;
  padding:14px 20px;
  border-radius:50px;
  font-weight:700;
  text-decoration:none;
  z-index:999;
}


/* PRICING */
.card .big{font-size:28px;font-weight:800;margin:10px 0 12px}
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;margin-top:18px}
.step{background:#fff;border:1px solid rgba(11,42,91,.08);border-radius:16px;padding:18px;box-shadow:0 10px 30px rgba(0,0,0,.04)}
.section-alt .step{background:#f7f9fc}
.step-num{width:40px;height:40px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-weight:800;background:rgba(255,106,0,.12);color:#ff6a00;margin-bottom:10px}

/* FAQ */
.faq{max-width:900px;margin:0 auto}
.faq details{background:#fff;border:1px solid rgba(11,42,91,.08);border-radius:14px;padding:14px 16px;margin:10px 0}
.faq summary{cursor:pointer;font-weight:700}
.faq p{margin:10px 0 0}

/* STICKY BUTTONS */
.whatsapp-sticky{
  position:fixed;
  bottom:72px;
  right:20px;
  background:#25D366;
  color:#fff;
  padding:12px 18px;
  border-radius:50px;
  font-weight:800;
  text-decoration:none;
  z-index:999;
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}
.call-sticky{box-shadow:0 12px 28px rgba(0,0,0,.18)}
