
:root{
 --bg:#f5f6f7;
 --panel:#d9ebda;
 --text:#000000;
 --muted:#204e6f;
 --brand:#204e6f;
 --accent:#329696;
 --border:rgba(255,255,255,.12);
 --radius:16px;
 --shadow:0 12px 34px rgba(0,0,0,.4);
 --max:1140px;
 --font-brand: 'Mokoto', 'Questrial', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
 --font-base: 18px;
 --space-sm:12px;
 --space-md:20px;
 --space-xl:40px;
 --space-xxl:72px;

 --yellow:rgb(245, 172, 27);
 --blue:#204e6f;
 --blue-dark:#1f4e6f;
}

body{
    margin:0;
    font-family:var(--font);
    font-size: var(--font-base);
    color:#252626;
    background:#f5f6f7;
    line-height:1.6;
}
    
h1,h2,h3,h4,h5,h6{
    margin:0 0 1rem;
    font-weight:600;
    line-height:1.2;
}

p{
  margin:0 0 1.5rem;
}
a{
  color:var(--brand);
  text-decoration:none;
}

.wrap{max-width:var(--max);margin:auto;padding:0 20px}

/* HEADER */
header{
  position:sticky;top:0;z-index:50;
  background:#f5f6f7;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
  color: #204e6f;
}
.nav{
  display:flex;justify-content:space-between;align-items:center;
  padding:14px 0;
}
.brand{display:flex;align-items:center;gap:10px;font-weight:700}
.logo{
  /*
  width:34px;height:34px;border-radius:10px;
  background:linear-gradient(135deg,var(--brand),var(--accent));
  */
}

.logo-link{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-logo{
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
/* Mobile optimization */
@media (max-width: 768px){
  .site-logo{
    height: 40px;
    max-width: 160px;
  }
}
.menu{display:flex;gap:16px;align-items:center}
.menu a{font-size:1.25rem;font-weight:700}
.menu a:hover{opacity:0.85}
select{
  background:rgba(0, 0, 0, 0.05);
  color:var(--text);
  border:1px solid var(--border);
  padding:8px 10px;
  border-radius:10px;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:2.5rem;
}

.topbar{
    background:var(--blue-dark);
    color:white;
}
.topbar-inner{
    display:flex;
    align-items:center;
    gap:2rem;
}
.logo{font-weight:700}
nav a{color:white;margin-right:1.2rem;text-decoration:none}
.lang-switch a{color:white;margin-left:.5rem;border:1px solid #ffffff55;padding:.2rem .5rem}
.hero{
    background:rgba(245,246,247,0.9);
    padding:4rem 0;
    margin-top:-60px;
    margin-bottom:2rem;
} 
.hero-grid{
      display:grid;
      grid-template-columns:1.2fr 1fr;
      gap:3rem;
      text-align: center;
      align-items:center;
      max-width:1200px;
      margin:auto;
    }

.hero-banner img{
  width:100%;
  height:auto;          
  object-fit:cover;
  display:block;
}

.hero-dashboard{
  width:100%;
  max-width:480px;
  height:auto;
  display:block;
  margin-left:auto;
}

.highlight{font-weight:600}

.hero-video {
  width: 100%;
  height: 220px; /* adjust if needed */
  overflow: hidden;
  position: relative;
}

.hero-video video {
  width: 100%;
  height: auto;
   /* makes video behave like background */
}


/* TRUST STRIP */
.trust-strip {
  background: rgb(218, 231, 240);
  position: relative;
  margin-top: -80px;
  box-shadow: 0 -10px 20px rgba(0,0,0,0.05);
  z-index: 3;
  padding: 12px 0;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;

  flex-wrap: wrap;
  text-align: center;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 30px;
}

.trust-logos img {
  height: 28px;
  object-fit: contain;
}

.trust-text {
  font-size: 16px;
  font-weight: 600;
  color: #1e2f3f;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .trust-container {
    gap: 25px;
  }

  .trust-logos img {
    height: 24px;
  }
}


@media (max-width: 600px) {

  .trust-strip {
    margin-top: 0; 
    padding: 20px 0;
  }

  .trust-container {
    flex-direction: column;
    gap: 15px;
  }

  .trust-text {
    font-size: 16px;
  }

  .trust-logos {
    gap: 20px;
  }

  .trust-logos img {
    height: 22px;
  }
}
.hero-cost {
  margin-top: 80px;
  text-align: center;
}

.hero-cost-title {
  font-size: 34px;
  font-weight: 700;
  color: #1e2f3f;
  margin-bottom: 50px;
}

.hero-cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto 40px auto;
}

.hero-cost-item {
  text-align: center;
  padding: 10px 20px;
}

.hero-cost-icon {
  margin-bottom: 20px;
}

.hero-cost-icon img {
  width: 60px;
  height: auto;
  object-fit: contain;
}

.hero-cost-item p {
  font-size: 18px;
  color: #4a5a6a;
  line-height: 1.6;
}

.hero-cost-message {
  font-weight: 700;
  font-size: 18px;
  margin: 40px 0 25px;
  color: #1e2f3f;
}

.hero-cost-cta {
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 30px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-cost-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-cost-title {
    font-size: 26px;
  }

  .hero-cost-icon img {
    width: 50px;
  }
}

/* BUTTONS */
.btn{
  padding:10px 14px;border-radius:12px;
  border:1px solid var(--border);
  background:rgb(245, 172, 27);
}
.btn.primary{
  background:rgb(245, 172, 27);
  border:none;
  color:#ffffff;font-weight:700;
}

.ctaBand .cta-btn {
  background: #ffffff;
  border:none;
  color: rgb(245, 172, 27);
}


/* ================= VALUE SECTION ================= */

.value-section{
  background:#204e6f; 
  padding:20px 10px;
}

.value-content{
  max-width:800px;
  margin:0 auto;
  text-align:center;
}

.value-content h2{
  font-size:clamp(2rem,3vw,2.6rem);
  font-weight:700;
  color:#ffffff;
  margin-bottom:10px;
}

.value-content p{
  font-size:1.05rem;
  line-height:1.6;
  color:rgba(255,255,255,.9);
}


/* ================= COST SECTION ================= */

.cost-proof{
  background:#f6f7f8;
}

/* COST SECTION */

.cost-wrap{
  max-width:1200px;
  margin:0 auto;
  padding:80px 24px 64px;
  text-align:center;
}

.cost-title{
  font-size:clamp(1.8rem,3vw,2.4rem);
  font-weight:700;
  margin-bottom:56px;
  color:#1f2933;
}

.cost-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:48px;
  margin-bottom:48px;
}

.cost-item{
  max-width:320px;
  margin:0 auto;
}

.cost-icon{
  font-size:2.2rem;
  color:#2f7d5c;
  margin-bottom:16px;
}

.cost-item p{
  font-size:1.05rem;
  line-height:1.6;
  color:#374151;
}

.cost-message{
  font-size:1.05rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#1f2933;
  margin-top:32px;
}

/* PROOF BAND */
.proof-band{
  background:#204e6f;
  color:#fff;
  padding:40px 24px;
  text-align:center;
}

.proof-title{
  font-size:1.8rem;
  font-weight:600;
  margin-bottom:40px;
}

.proof-grid{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:48px;
}

.proof-item strong{
  display:block;
  font-size:2rem;
  font-weight:700;
  margin-bottom:8px;
}

.proof-item span{
  font-size:0.95rem;
  opacity:.9;
}

/* TESTIMONIAL */
.testimonial-section{
  background:#ffffff;
  padding:96px 24px;
}

.testimonial-container{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.testimonial-title{
  font-size:clamp(1.9rem,3vw,2.4rem);
  font-weight:700;
  color:#1f2933;
  margin-bottom:48px;
}

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

.testimonial-card{
  background:#dbe7ef; /* soft blue like screenshot */
  border-radius:24px;
  padding:50px 40px;
  text-align:center;
  position:relative;
}

.quote-icon{
  font-size:48px;
  color:#1f5b52; /* dark green accent */
  font-weight:700;
  margin-bottom:0px;
}

.testimonial-text{
  font-size:1.05rem;
  line-height:1.6;
  color:#1f2937;
  margin-bottom:20px;
}

.testimonial-author{
  font-size:1rem;
  color:#374151;
  margin-bottom:25px;
}

.testimonial-logo{
  height:45px;
  object-fit:contain;
}

/* Responsive */
@media(max-width:900px){
  .testimonial-grid{
    grid-template-columns:1fr;
  }
}


/* RESPONSIVE */
@media (max-width:900px){
  .cost-grid,
  .proof-grid{
    grid-template-columns:1fr;
    gap:32px;
  }
}

.cost-comparison{
  max-width:1200px;
  margin:0 auto;
  padding:72px 24px 88px;
  text-align:center;
  background:#f6f7f8;
}

.comparison-title{
  font-size:clamp(1.9rem,3vw,2.5rem);
  font-weight:700;
  color:#1f2933;
  margin-bottom:24px;
}

.comparison-text{
  max-width:780px;
  margin:0 auto 16px;
  font-size:1.05rem;
  line-height:1.6;
  color:#374151;
}

.comparison-message{
  font-size:.95rem;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:48px;
  color:#1f2933;
}

/* SUBSCRIPTION */
.subscription-box{
  background:#e9f3ef;
  border-radius:20px;
  padding:48px 32px 56px;
}

.subscription-title{
  font-size:1.5rem;
  font-weight:600;
  margin-bottom:32px;
  color:#1f2933;
}

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

.sub-card{
  background:#204e6f;
  color:#fff;
  padding:20px 12px;
  border-radius:14px;
  font-weight:600;
  font-size:1rem;
}

.sub-card span{
  display:block;
  margin-top:6px;
  font-weight:400;
  font-size:1rem;
  opacity:.9;
}
/*
.sub-card.highlight{
  background:#f4a61f;
  color:#1f2933;
}
*/
.subscription-note{
  margin-top:16px;
  font-size:.9rem;
  color:#374151;
}

.subscription-cta{
  margin-top:28px;
  display:inline-block;
}

/* RESPONSIVE */
@media (max-width:900px){
  .subscription-grid{
    grid-template-columns:repeat(2,1fr);
  }
}


/* ================= HOW FLOW SECTION ================= */

.how-flow{
  background:#f3f4f6;
  padding: 60px 20px;
  text-align:center;
}

.how-flow-container{
  max-width:1400px;
  margin:0 auto;
}

/* TITLE */

.flow-title{
  font-size:clamp(2rem,3vw,2.8rem);
  font-weight:700;
  margin-bottom:40px;
  color:#111;
}

.flow-title span{
  color:#1fa463; /* PDF green */
}

/* FLOW LAYOUT */

.flow-wrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:0;
}

/* OVERLAPPING EFFECT */

.flow-step{
  position:relative;
}

.flow-step:not(:first-child){
  margin-left:-40px; /* overlap */
}

/* CIRCLES */

.flow-circle{
  width:190px;
  height:190px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:25px;
  font-weight:600;
  font-size:1rem;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  color:#ffffff;
  position:relative;
  z-index:2;
}

/* EXACT PDF-LIKE GRADIENTS */

.flow-circle.dark{
  background:linear-gradient(135deg,#0f766e,#158f7a);
}

.flow-circle.mid{
  background:linear-gradient(135deg,#1fa463,#2bb7a3);
}

.flow-circle.light{
  background:linear-gradient(135deg,#74cfc8,#a7e3df);
  color:#111;
}

/* ARROWS */

.flow-arrow{
  z-index:3;
  margin:0 -10px;
}

.flow-arrow svg{
  display:block;
}

/* RESPONSIVE */

@media(max-width:1200px){

  .flow-wrapper{
    flex-wrap:wrap;
    gap:30px;
  }

  .flow-step:not(:first-child){
    margin-left:0;
  }

  .flow-arrow{
    display:none;
  }

  .flow-circle{
    width:160px;
    height:160px;
    font-size:1rem;
  }
}


/* Bottom Benefits */

.flow-benefits{
  display:flex;
  justify-content:center;
  gap:60px;
  margin-top:60px;
  flex-wrap:wrap;
}

.benefit{
  text-align:center;
  max-width:220px;
}

.benefit-icon{
  width:80px;
  height:80px;
  margin:0 auto 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#0f2f3d;              /* dark brand tone */
  box-shadow:0 6px 18px rgba(0,0,0,.15);
}

.benefit-icon img{
  width:40px;
  height:40px;
  object-fit:contain;
}

.benefit p{
  font-size:1rem;
  line-height:1.5;
  color:#333;
}

.benefit-icon{
  background:#0f2f3d;
  border:2px solid #1fa36b;     
  box-shadow:0 0 18px rgba(31,163,107,.4);
}


/* Responsive */

@media(max-width:1000px){
  .flow-wrapper{
    gap:20px;
  }

  .flow-arrow{
    display:none;
  }

  .flow-circle{
    width:150px;
    height:150px;
    font-size:.1rem;
  }
}

@media(max-width:768px){
  .flow-benefits{
    grid-template-columns:1fr;
  }
}


/* ================= ADVANCED BENEFITS ================= */

.advanced-benefits{
  background:#f5f6f7;
  padding:60px 20px;
}

.advanced-container{
  max-width:1200px;
  margin:0 auto;
}

.advanced-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  text-align:center;
  margin-bottom:60px;
}

.advanced-item h3{
  font-size:1rem;
  font-weight:700;
  margin:20px 0 12px;
  color:#1f2e36;
  letter-spacing:.5px;
}

.advanced-item p{
  font-size:1rem;
  line-height:1.6;
  color:#555;
}

.advanced-icon{
  width:70px;
  height:70px;
  object-fit:contain;
}

/* Dashboard images */

.advanced-images{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.advanced-images img{
  width:480px;
  max-width:100%;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

@media(max-width:992px){
  .advanced-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .advanced-grid{
    grid-template-columns:1fr;
  }

  .advanced-images{
    flex-direction:column;
    align-items:center;
  }
}


/* ================= BENEFITS SECTION ================= */

.benefits-section{
  background:#ffffff;
  padding:60px 20px 90px;
}

.benefits-container{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

/* ================= ORIGINAL BENEFITS ================= */

.benefits-original{
  background:#f4f6f8;
  padding:90px 24px;
}

.benefits-wrapper{
  max-width:1100px;
  margin:0 auto;
}

.benefits-main-title{
  text-align:center;
  font-size:clamp(2rem,3vw,2.6rem);
  font-weight:700;
  margin-bottom:40px;
  color:#1f2e36;
}

/* Layout rows */

.benefits-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  margin-bottom:70px;
}

.benefits-row.reverse{
  grid-template-columns:1fr 1fr;
}

/* Text */

.benefits-text h3{
  font-size:1.25rem;
  font-weight:700;
  margin-bottom:18px;
  letter-spacing:.5px;
  color:#1f2e36;
}

.benefits-text p{
  font-size:1.25rem;
  line-height:1.7;
  color:#555;
}

/* Images */

.benefits-image img{
  width: 100%;
  max-width: 300px;
  border-radius:6px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

/* Closing */

.benefits-closing{
  text-align:center;
  font-size:1.2rem;
  font-weight:600;
  margin:30px 0 30px;
  color:#1f2e36;
}

/* CTA */

.benefits-cta{
  text-align:center;
}

.benefits-cta .btn{
  padding:14px 32px;
  border-radius:30px;
  font-weight:600;
}

@media(max-width:900px){

  .benefits-row{
    grid-template-columns:1fr;
    gap:30px;
  }

  .benefits-row.reverse{
    display:flex;
    flex-direction:column;
  }

}


/* ================= MODERN CONTACT ================= */

.contact-modern{
  background:#f4f6f8;
  padding:100px 24px;
}

.contact-wrapper{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.contact-title{
  font-size:clamp(2rem,3vw,2.5rem);
  font-weight:700;
  margin-bottom:18px;
  color:#1f2e36;
}

.contact-subtitle{
  max-width:800px;
  margin:0 auto 70px;
  font-size:1.25rem;
  line-height:1.6;
  color:#666;
}

/* GRID */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  margin-bottom:40px;
}

/* LEFT CARD */

.contact-card{
  background:#2c5876;
  padding:30px 40px;
  border-radius:20px;
  text-align:left;
}

.form-group{
  margin-bottom:10px;
}

.form-group select{
  width:100%;
  padding:10px 20px;
  border:none;
  border-radius:20px;
  background:#c7d2db;
  font-size:1.25rem;
  outline:none;
  appearance:none;
  cursor:pointer;
}

/* Optional subtle dropdown arrow */
.form-group select{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%232c5876' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='%232c5876' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 10px center;
  background-size:14px;
}

.form-group label{
  display:block;
  margin-bottom:10px;
  font-weight:500;
  color:#fff;
}

.form-group input{
  width:100%;
  padding:10px 12px;
  border:none;
  border-radius:20px;
  background:#c7d2db;
  font-size:1.25rem;
  outline:none;
}

/* RIGHT IMAGE PANEL */

.contact-image-panel{
  background:#dbe4ea;
  padding:30px;
  border-radius:28px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.contact-image-panel img{
  width:100%;
  max-width:400px;
  border-radius:16px;
}

/* CTA */

.contact-cta{
  margin-top:30px;
}

.contact-cta .btn{
  padding:14px 40px;
  border-radius:30px;
  font-weight:600;
}

@media(max-width:900px){

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

  .contact-card{
    padding:30px 20px;
  }

}


/* ================= FOOTER ================= */

.site-footer{
  background:#2c5876;
  color:#ffffff;
  padding-top:20px;
}

/* Top CTA */
.footer-cta{
  text-align:center;
  padding:20px 10px 30px;
}

.footer-cta h2{
  font-size:clamp(1.8rem,3vw,2.4rem);
  font-weight:400;
  margin-bottom:10px;
}

.footer-cta-buttons{
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
}

.footer-btn{
  background:#f2a81d;
  color:#ffffff;
  padding:10px 28px;
  border-radius:30px;
  text-decoration:none;
  font-weight:500;
  transition:.3s ease;
}

.footer-btn:hover{
  background:#e49b12;
}

/* Lower footer */
.footer-container{
  max-width:1100px;
  margin:0 auto;
  padding:20px 10px 30px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
}

.footer-col h4{
  margin-bottom:10px;
  font-size:1.1rem;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col a{
  color:#dbe6ee;
  text-decoration:none;
  font-size:1rem;
}

.footer-col a:hover{
  color:#ffffff;
}

.footer-social-link{
  display:inline-block;
  margin-top:10px;
  transition:.3s ease;
}

.linkedin-icon{
  width:28px;
  height:auto;
  display:block;
  filter:brightness(0) invert(1); /* Makes dark icon white */
  transition:.3s ease;
}

/* Hover effect */
.footer-social-link:hover .linkedin-icon{
  transform:scale(1.1);
  opacity:0.85;
}



/* Responsive */
@media (max-width:900px){
  .footer-container{
    grid-template-columns:1fr;
    gap:32px;
  }
}

/* RESPONSIVE */
@media(max-width:900px){
.hero-grid,.cost-grid,.pricing-grid,.how-grid,.benefits-grid{grid-template-columns:1fr}
}
