:root{
  --bg:#f5f4ef;
  --surface:#ffffff;
  --soft:#efeee8;
  --text:#181818;
  --muted:#5f5f5b;
  --primary:#123055;
  --primary-2:#264d78;
  --accent:#c79b49;
  --line:#e5dfd3;
  --shadow:0 12px 30px rgba(16,25,40,0.06);
  --shadow-hover:0 18px 36px rgba(16,25,40,0.08);
  --max:1200px;
  --radius:20px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(100% - 40px, var(--max));margin:auto}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(10px);
  background:rgba(245,244,239,0.86);
  border-bottom:1px solid rgba(18,48,85,0.06);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:82px;
}
.brand,.footer-brand{
  font-family:"Lora",serif;
  color:var(--primary);
  font-size:1.7rem;
  font-weight:600;
  letter-spacing:.2px;
}
.brand span,.footer-brand span{color:var(--accent)}

.site-nav{
  display:flex;
  align-items:center;
  gap:26px;
}
.site-nav a{
  color:#222;
  font-weight:500;
  font-size:.96rem;
  position:relative;
}
.site-nav a:hover{color:var(--primary)}
.site-nav a:not(.nav-cta)::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:1.5px;
  background:var(--accent);
  transition:width 0.2s ease;
}
.site-nav a:not(.nav-cta):hover::after{
  width:100%;
}

.nav-cta{
  padding:12px 18px;
  background:#111;
  color:#fff !important;
  border-radius:10px;
}
.menu-toggle{
  display:none;
  border:none;
  background:transparent;
  font-size:1.7rem;
  cursor:pointer;
}

/* HERO */
.hero{
  padding:120px 0 70px;
}
.hero-grid{
  display:block;
}
.hero-copy{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}
.eyebrow,.section-label{
  color:var(--primary);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.82rem;
  font-weight:700;
  margin-bottom:14px;
}
h1,h2,h3{
  font-family:"Lora",serif;
  line-height:1.08;
  margin:0 0 16px;
  color:#111;
  letter-spacing:-0.02em;
}
h1{
  font-size:clamp(2.8rem, 5vw, 4.5rem);
  max-width:860px;
  margin-left:auto;
  margin-right:auto;
}
h2{
  font-size:clamp(1.95rem, 4vw, 3rem);
  max-width:820px;
}
h3{font-size:1.4rem}
.lead{
  max-width:760px;
  font-size:1.12rem;
  line-height:1.8;
  color:#4a4a4a;
  margin:0 auto 30px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
  margin:0 0 24px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:12px;
  font-weight:600;
  font-size:.96rem;
  letter-spacing:.01em;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:#111;
  color:#fff;
  box-shadow:0 10px 22px rgba(17,17,17,0.12);
}
.btn-outline{
  border:1px solid #202020;
  color:#111;
  background:transparent;
}
.hero-points{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px 18px;
  list-style:none;
  padding:0;
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}
.hero-points li{
  position:relative;
  padding-left:18px;
}
.hero-points li:before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:var(--accent);
  font-weight:800;
}

/* hide old hero illustration if still present */



.visual-top{
  display:flex;
  gap:8px;
  margin:0 0 10px;
}
.dot{
  width:10px;height:10px;border-radius:50%;background:#d8d1c4;
}
.hero-svg{width:100%;height:auto}

/* METRICS */
.metrics{
  padding:12px 0 26px;
}
.metrics-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.metric{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px 20px;
  transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.metric:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
  border-color:#d7ccb7;
}
.metric strong{
  display:block;
  color:var(--primary);
  margin-bottom:8px;
  font-size:1.05rem;
}
.metric span{color:var(--muted);font-size:.95rem}

/* SECTIONS */
.section{padding:96px 0}
.soft-bg{background:rgba(255,255,255,0.34)}

.split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
}
.section-copy p,.section-intro,.explainer-item p,.faq-list p,.contact-copy p{color:#3f3f3c}
.info-panel{
  display:grid;
  gap:18px;
}
.panel-box{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  box-shadow:var(--shadow);
  transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.panel-box:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
  border-color:#d7ccb7;
}
.panel-box ul{
  margin:0;
  padding-left:18px;
}
.panel-box li{margin-bottom:8px}
.accent-box{
  background:linear-gradient(180deg,#fffaf1,#fffdf8);
}
.inline-link,.text-link{
  color:var(--primary);
  font-weight:600;
}
.inline-link:hover,.text-link:hover{text-decoration:underline}

.section-title{
  max-width:900px;
}
.section-intro{
  max-width:780px;
  margin:0 0 30px;
}

.section-note{
  margin-top:14px;
  color:var(--primary);
  font-weight:600;
  max-width:540px;
}

/* CARDS */
.cards-grid{
   margin-top:32px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px 22px;
  box-shadow:var(--shadow);
  transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height:100%;
    display:flex;
    flex-direction:column;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
  border-color:#d7ccb7;
}
.card-icon,.process-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;height:46px;
  border-radius:999px;
  background:#f4efe5;
  color:var(--primary);
  font-weight:700;
  margin-bottom:16px;
}
.card p,.process-item p{color:#494945;font-size:.96rem}

/* PROCESS */
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.process-item{
  padding:22px 18px 10px 0;
  border-top:2px solid var(--accent);
}

/* EXPLAINER */
.explainer{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
  align-items:start;
}
.explainer-list{
  display:grid;
  gap:18px;
}
.explainer-item{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.explainer-item:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
  border-color:#d7ccb7;
}

/* FAQ */
.faq-list{
max-width:900px;
}

.faq-item{
border-top:1px solid #ddd6ca;
padding:20px 0;
}

.faq-item:last-child

.faq-item summary{
cursor:pointer;
font-weight:600;
font-size:1.1rem;
list-style:none;
}

.faq-item summary::-webkit-details-marker{
display:none;
}

.faq-item p{
margin-top:14px;
color:#555;
line-height:1.8;
}


/* CONTACT */
.contact-section{
text-align:center;
}

.contact-section .section-title{
margin-left:auto;
margin-right:auto;
}

.contact-section .section-intro{
max-width:720px;
margin-left:auto;
margin-right:auto;
}

.contact-actions{
display:flex;
justify-content:center;
gap:16px;
margin-top:40px;
flex-wrap:wrap;
}


/* FOOTER */
.site-footer{
  padding:34px 0 46px;
  border-top:1px solid rgba(18,48,85,0.08);
}
.footer-wrap{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.site-footer p{
  color:var(--muted);
  margin:4px 0;
}
.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.footer-links a{
  color:#222;
  font-weight:500;
}
.footer-links a:hover{
  color:var(--primary);
}

/* FLOATING WA */
.floating-wa{
  position:fixed;
  right:22px;
  bottom:22px;
  background:#25D366;
  color:#fff;
  padding:14px 18px;
  border-radius:999px;
  box-shadow:0 10px 24px rgba(37,211,102,.24);
  font-weight:700;
  z-index:1200;
}

/* RESPONSIVE */
@media (max-width: 1080px){
  .split,.explainer,.contact-grid{
    grid-template-columns:1fr;
  }
  .cards-grid,.process-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 760px){
  .container{width:min(100% - 28px, var(--max))}
  .menu-toggle{display:block}
  .site-nav{
    position:absolute;
    top:82px;
    left:0;
    right:0;
    background:rgba(245,244,239,.98);
    border-bottom:1px solid rgba(18,48,85,.06);
    padding:16px 20px 22px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }
  .site-nav.open{display:flex}
  .cards-grid,.process-grid,.metrics-grid,.field-grid{
    grid-template-columns:1fr;
  }
  .hero{
    padding:92px 0 52px;
  }
  .section{
    padding:72px 0;
  }
  .floating-wa{
    right:14px;
    left:14px;
    bottom:14px;
    justify-content:center;
    text-align:center;
  }
}
.brand img{
    width:52px;
    height:auto;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:60px;
    align-items:center;
}

.hero-content{
    max-width:700px;
}



.hero-premium{
    padding-top: 60px;
    padding-bottom: 80px;
}

.process-section{
padding:100px 0;
}

.process-cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
margin-top:50px;
}

.process-card{
background:#fff;
border:1px solid var(--line);
border-radius:20px;
padding:30px 24px;
transition:.2s ease;
}

.process-card:hover{
transform:translateY(-4px);
}

.process-step{
width:48px;
height:48px;
border-radius:50%;
background:#f4efe5;
color:var(--primary);
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
margin-bottom:18px;
}

.process-card h3{
margin-bottom:12px;
}

.process-card p{
color:#555;
}

@media(max-width:900px){
.process-cards{
grid-template-columns:1fr;
}
}
.process-section h2{
    max-width:none;
}

@media (max-width: 760px){

  .hero-premium{
    padding:42px 0 64px;
  }

  .hero-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:34px;
  }

  .hero-content{
    max-width:100%;
  }

  hero-content h1{
      font-size:3.5rem;
      line-height:1.05;
  }

  .hero-sub{
    font-size:1rem;
    line-height:1.65;
    max-width:100%;
  }

  .hero-visual{
    justify-content:flex-start;
  }

   .hero-visual img{
      width:100%;
      max-width:420px;
      margin:0 auto;
      display:block;
  }

}
@media (max-width: 768px) {
  .hero-content h1{
    font-size: 2.6rem;
    line-height: 1.05;
  }
}
@media (max-width: 420px){

  .hero-content h1{
    font-size:2.6rem;
    line-height: 1.05;
  }

  .eyebrow{
    font-size:.72rem;
    letter-spacing:.07em;
  }

}

@media(max-width:900px){
    .cards-grid{
        grid-template-columns:1fr;
    }
}

.service-card{
    display:flex;
    flex-direction:column;
    height:100%;
}
.section-note{
margin:24px 0 40px;
font-size:1.15rem;
font-weight:600;
color:var(--primary);
max-width:700px;
}

.cards-grid.three-col{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

@media(max-width:900px){
.cards-grid.three-col{
grid-template-columns:1fr;
}
}
.section-principle{
    font-size:1.4rem;
    font-weight:600;
    color:var(--primary);
    border-left:4px solid var(--primary);
    padding-left:20px;
    margin:40px 0;
}
.approach-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.approach-grid .card{
    height:100%;
}
.section-divider{
    width:120px;
    height:1px;
    background:#d8d2c7;
    margin:0 auto;
}
.site-footer{
  border-top:1px solid #ddd6ca;
  margin-top:60px;
}

.footer-wrap{
  display:grid;
  grid-template-columns:1.2fr 1fr auto;
  gap:40px;
  align-items:start;
  padding:46px 0 34px;
}

.footer-logo{
  color:var(--primary);
  font-weight:700;
  letter-spacing:.12em;
  font-size:.95rem;
}

.footer-brand-block p{
  margin:18px 0 0;
  font-family:"Lora",serif;
  font-size:1.55rem;
  font-weight:600;
  color:#666;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px 22px;
}

.footer-links a,
.footer-contact a{
  color:#222;
  font-weight:500;
}

.footer-links a:hover,
.footer-contact a:hover{
  color:var(--primary);
}

.footer-bottom{
  border-top:1px solid #e5dfd3;
  text-align:center;
  padding:20px 0;
  color:#666;
  font-size:.92rem;
}

@media(max-width:760px){
  .footer-wrap{
    grid-template-columns:1fr;
    gap:22px;
    padding:36px 0 26px;
  }

  .footer-brand-block p{
    font-size:1.25rem;
  }
}