:root{
  --bg: #f5f8fc;
  --bg-alt: #ffffff;
  --bg-accent: #eef3f9;
  --text: #1e293b;
  --muted: #64748b;
  --muted2: #94a3b8;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --radius: 12px;
  --max: 1000px;
  --accent: #2ebfac;
  --accent2: #10b981;
}

*{box-sizing:border-box}
html{
  font-size: 16px;
  scroll-behavior: smooth;
}
body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.125rem;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

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

/* Sections with alternating backgrounds */
.section{padding: 80px 0}
.sectionAlt{background: var(--bg-alt)}
.ctaSection{background: var(--bg-accent)}

.card{
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Navigation */
.topbar{
  position: sticky; 
  top: 0; 
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(245,248,252,0.9);
  border-bottom: 1px solid var(--border);
}
.nav{
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  height: 64px;
}
.brand{
  display: flex; 
  gap: 8px; 
  align-items: center;
  font-weight: 600; 
  font-size: 1.2rem;
}
.brandLogo{
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.logoDot{
  width: 10px; 
  height: 10px; 
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.navlinks{
  display: flex; 
  gap: 8px; 
  align-items: center;
}
.navlinks a{
  font-size: 1.05rem;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}
.navlinks a:hover{
  color: var(--text); 
  background: rgba(0,0,0,0.04);
}
.navcta{
  display: flex; 
  gap: 8px; 
  align-items: center;
}

/* Buttons */
.btn{
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-weight: 500;
  font-size: 1.1rem;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn:hover{
  background: var(--bg-accent);
}
.btn.primary{
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}
.btn.primary:hover{
  filter: brightness(1.1);
}
.btn .arrow{
  font-size: 1rem;
}

/* Mobile menu */
.hamburger{
  display: none;
  width: 40px; 
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}
.mobilemenu{
  display: none;
  border-top: 1px solid var(--border);
  padding: 12px 0 16px;
  background: #ffffff;
}
.mobilemenu a{
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 1.1rem;
}
.mobilemenu a:hover{
  background: var(--bg-accent); 
  color: var(--text);
}
.mobilemenu.open{display: block}

/* Hero */
.hero{
  padding: 100px 0 80px;
  background: var(--bg);
}
.heroCenter{
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.heroHeadline{
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
  text-align: center;
}
.heroSub{
  font-size: 1.25rem;
  color: var(--muted);
  margin: 0 0 32px;
  text-align: center;
}
.heroCta{
  margin-bottom: 32px;
}
.heroCta .btn{
  padding: 14px 28px;
  font-size: 1rem;
}
.heroTrust{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 1.05rem;
  color: var(--muted);
}
.heroTrust .dot{
  color: var(--muted2);
}

/* Section headers */
.h2{
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 8px;
  text-align: center;
}
.sub{
  color: var(--muted);
  margin: 0 0 32px;
  font-size: 1.1rem;
  text-align: center;
}

/* Services Grid */
.servicesGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.serviceCard{
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}
.serviceCard:hover{
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.serviceIcon{
  width: 44px;
  height: 44px;
  background: rgba(46,191,172,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.serviceCard h3{
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.serviceCard p{
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Process Section */
.processSection{
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.processLabel{
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted2);
  margin: 0 0 12px;
  font-weight: 500;
}
.processTitle{
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 12px;
}
.processSub{
  color: var(--muted);
  max-width: 920px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}
.processGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.processCard{
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: left;
}
.stepNumber{
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted2);
  background: rgba(0,0,0,0.04);
  padding: 4px 10px;
  border-radius: 6px;
}
.processIcon{
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,0.04);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.processCard h3{
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.processCard p{
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* CTA Section */
.ctaSection{
  padding: 80px 0;
}
.ctaContent{
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.ctaTitle{
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 12px;
}
.ctaSub{
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 32px;
}
.ctaBenefits{
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 48px;
  justify-content: center;
  text-align: left;
  margin: 0 auto 36px;
}

.benefitItem{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--text);
}
.checkIcon{
  width: 24px;
  height: 24px;
  background: rgba(16,185,129,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--accent2);
  flex-shrink: 0;
}

/* Form */
.ctaFormWrapper{
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.ctaForm{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.formRow{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field{
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.field.full{
  grid-column: 1 / -1;
}
.field label{
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.input, .textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-size: 1.1rem;
  outline: none;
  transition: border-color 0.2s;
}
.input:focus, .textarea:focus{
  border-color: var(--accent);
}
.textarea{
  min-height: 100px; 
  resize: vertical;
}
.formActions{
  margin-top: 4px;
}
.ctaForm .btn{
  width: auto;
  padding: 14px 28px;
  font-size: 1.1rem;
  align-self: center;
}
.formMsg{
  font-size: 1rem;
  color: var(--accent2);
  margin: 12px 0 0;
  text-align: center;
}

/* Footer */
.footer{
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footerRow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 1rem;
  color: var(--muted);
}
.footerRow a{
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s;
}
.footerRow a:hover{
  color: var(--text);
  background: var(--bg-accent);
}

/* Responsive */
@media (max-width: 768px){
  .heroHeadline{font-size: 2rem}
  .servicesGrid{grid-template-columns: repeat(2, 1fr)}
  .processGrid{grid-template-columns: 1fr}
  .ctaBenefits{grid-template-columns: 1fr}
  .formRow{grid-template-columns: 1fr}
}
@media (max-width: 600px){
  .navlinks, .navcta{display: none}
  .hamburger{display: flex; align-items: center; justify-content: center}
  .servicesGrid{grid-template-columns: 1fr}
  .hero{padding: 60px 0 50px}
  .heroHeadline{font-size: 1.75rem}
  .heroTrust{flex-direction: column; gap: 6px}
  .heroTrust .dot{display: none}
  .section{padding: 60px 0}
}

/* Smaller hero for inner pages */
.heroSmall{
  padding: 60px 0 50px;
}
.heroSmall .heroHeadline{
  font-size: 2.25rem;
}

/* About page styles */
.aboutGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.aboutContent{
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.aboutContent p{
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 16px;
  font-size: 1.1rem;
}
.h2Left{
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 16px;
  text-align: left;
}

/* Solutions page styles */
.solutionsList{
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.solutionItem{
  display: flex;
  gap: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.solutionIcon{
  width: 56px;
  height: 56px;
  background: rgba(46,191,172,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.solutionContent h3{
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 10px;
}
.solutionContent p{
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
  font-size: 1.1rem;
}
.solutionBullets{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.solutionBullets li{
  font-size: 1.1rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.solutionBullets li::before{
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* CTA Box */
.ctaBox{
  text-align: center;
  padding: 20px 0;
}
.ctaBox .h2{
  margin-bottom: 8px;
}
.ctaBox .sub{
  margin-bottom: 24px;
}

/* Responsive for inner pages */
@media (max-width: 768px){
  .aboutGrid{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .solutionItem{
    flex-direction: column;
    gap: 16px;
  }
  .solutionBullets{
    grid-template-columns: 1fr;
  }
}

/* Contact page styles */
.contactGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contactInfo p{
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 24px;
  font-size: 1.1rem;
}
.contactBenefits{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}


@media (max-width: 768px){
  .contactGrid{
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Legal pages (Privacy Policy, Terms) */
.legalContent{
  max-width: 720px;
  margin: 0 auto;
}
.legalContent h2{
  font-size: 1.35rem;
  font-weight: 600;
  margin: 32px 0 16px;
  color: var(--text);
}
.legalContent p{
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 16px;
  font-size: 1.1rem;
}
.legalContent a{
  color: var(--accent);
  text-decoration: underline;
}
.legalContent a:hover{
  color: var(--text);
}
.legalMeta{
  background: var(--bg);
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}


/* ===== Desktop: keep key headlines/benefits on one line (allow wrap on small screens) ===== */
@media (min-width: 980px){
  .heroHeadline{ white-space: nowrap; }
  .processSub{ white-space: nowrap; }
  .benefitItem span:last-child{ white-space: nowrap; }
}
@media (max-width: 979px){
  .heroHeadline, .processSub, .benefitItem span:last-child{ white-space: normal; }
}


/* Keep selected marketing lines on one line for desktop; allow wrapping on smaller screens */
@media (min-width: 980px){
  .nowrap-line{ white-space: nowrap; }
}
@media (max-width: 979px){
  .nowrap-line{ white-space: normal; }
}
