:root{
  --primary:#455079;
  --background:#D4CFD2;

  /* NO BROWN: blue accent */
  --accent:#5C6FA6;

  --dark:#0F172A;
  --light:#FFFFFF;

  --muted: rgba(15, 23, 42, .70);
  --card:#FFFFFF;
  --shadow: 0 16px 40px rgba(15, 23, 42, .12);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, .10);
  --radius: 18px;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}
.hero {
  overflow: hidden;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--background);
  color: var(--dark);
  line-height: 1.6;
}

a{color:inherit;text-decoration:none} /* no underlines */
.container{max-width:1100px;margin:0 auto;padding:0 20px}

.section{padding: 90px 0}

/* FULL-WIDTH SECTION BACKGROUNDS */
.section-bg-light{ background: rgba(255,255,255,.55); }
.section-bg-dim{ background: rgba(255,255,255,.22); }

.section-title{
  text-align:center;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing:-0.02em;
}
.section-subtitle{
  text-align:center;
  max-width: 720px;
  margin: 10px auto 0;
  color: var(--muted);
  font-weight: 600;
}

/* NAV */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(212, 207, 210, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  padding: 2px 0;            /* extra vertical space */
}

.nav{
  height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.brand{
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 22px;   /* BIGGER brand text */
}

.brand-strong{color: var(--dark)}
.brand-accent{color: var(--accent)}

.navlinks{display:flex;gap:26px;align-items:center}
.navlink{
  color: rgba(15, 23, 42, .75);
  font-weight: 650;
  font-size: 16px;   /* BIGGER nav text */
  transition: color .2s ease;
}

.navlinks{
  justify-self: center;
}
.btn.btn-primary{
  justify-self: end;
}

.navlink:hover{color: var(--primary)}

.hamburger{
  display:none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, .12);
  background: rgba(255,255,255,.45);
  cursor:pointer;
}
.hamburger span{
  display:block;
  width: 18px;
  height: 2px;
  background: rgba(15, 23, 42, .75);
  margin: 4px auto;
  border-radius: 10px;
}
.mobilemenu{
  display:none;
  gap: 12px;
  padding: 16px 20px 22px;
  border-top: 1px solid rgba(15, 23, 42, .08);
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  height: 48px;      /* slightly taller */
  padding: 0 22px;   /* better balance */
  border-radius: 14px;
  font-weight: 750;
  font-size: 16px;   /* BIGGER button text */
}

.btn:active{transform: translateY(1px)}
.btn-primary{
  background: var(--primary);
  color: var(--light);
  box-shadow: 0 12px 28px rgba(69, 80, 121, .20);
}
.btn-primary:hover{transform: translateY(-1px); box-shadow: 0 16px 40px rgba(69, 80, 121, .26)}
.btn-outline{
  background: transparent;
  border: 2px solid rgba(69, 80, 121, .45);
  color: rgba(15, 23, 42, .78);
}
.btn-outline:hover{
  border-color: rgba(69, 80, 121, .65);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.btn-wide{width: 100%}
.arrow{font-size: 16px; line-height: 1}

/* HERO */
.hero{padding: 110px 0 80px}
.hero-inner{
  position: relative;
  min-height: 520px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  text-align:center;
}
.hero-title{
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.05;
  letter-spacing:-0.035em;
}
.hero-accent{color: rgba(69, 80, 121, .92)}
.hero-subtitle{
  margin-top: 18px;
  max-width: 760px;
  color: rgba(15, 23, 42, .65);
  font-weight: 650;
}
.hero-cta{margin-top: 26px; display:flex; gap: 14px; flex-wrap:wrap; justify-content:center}

.downchev{
  margin-top: 44px;
  color: rgba(69, 80, 121, .9);
  width: 44px; height: 44px;
  display:grid; place-items:center;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}
.downchev:hover{transform: translateY(2px); background: rgba(255,255,255,.35)}

/* Hero soft bubbles like screenshot */
.hero-bubble{
  position:absolute;
  border-radius: 999px;
  opacity: .35;
  pointer-events:none;
}
.bubble-1{
  width: 340px; height: 340px;
  right: -80px; top: 50px;

  /* NO BROWN: changed to blue accent */
  background: radial-gradient(circle at 30% 30%, rgba(92,111,166,.45), rgba(92,111,166,0));
}
.bubble-2{
  width: 440px; height: 440px;
  left: -140px; top: 120px;
  background: radial-gradient(circle at 40% 40%, rgba(69,80,121,.35), rgba(69,80,121,0));
}

/* SERVICES CARDS */
.cards{
  margin-top: 44px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card{
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, .06);
  transition: transform .15s ease, box-shadow .15s ease;
  min-height: 180px;
}
.card:hover{transform: translateY(-3px); box-shadow: var(--shadow)}
.iconbox{
  width: 44px; height: 44px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(15, 23, 42, .06);
  color: rgba(69, 80, 121, .9);
  margin-bottom: 14px;
}
.card h3{font-size: 18px; letter-spacing:-0.01em}
.card p{margin-top: 8px; color: rgba(15, 23, 42, .65); font-weight: 650; font-size: 14px}

/* ABOUT SPLIT */
.split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items:center;
}
.split-title{
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
  letter-spacing:-0.03em;
}
.split-text{
  margin-top: 14px;
  color: rgba(15, 23, 42, .68);
  font-weight: 650;
  max-width: 520px;
}
.checklist{
  margin-top: 18px;
  list-style: none;
  display:grid;
  gap: 10px;
}
.checklist li{
  position: relative;
  padding-left: 28px;
  font-weight: 750;
  color: rgba(15, 23, 42, .85);
  font-size: 14px;
}
.checklist li::before{
  content: "✓";
  position:absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}
.stats-card{
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 23, 42, .06);
  padding: 26px;
}
.stat{padding: 8px 0}
.stat-number{
  font-size: 42px;
  font-weight: 900;
  letter-spacing:-0.03em;
  color: rgba(69, 80, 121, .95);
}
.stat-label{
  margin-top: 4px;
  color: rgba(15, 23, 42, .7);
  font-weight: 750;
}
.divider{
  height: 1px;
  background: rgba(15, 23, 42, .10);
  margin: 18px 0;
}

/* CONTACT */
.contact-grid{
  margin-top: 34px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items:start;
}
.contact-form{max-width: 520px}
.contact-form label{display:block; margin-bottom: 16px}
.contact-form span{
  display:block;
  font-weight: 850;
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(15, 23, 42, .85);
}
input, textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, .14);
  padding: 12px 12px;
  background: rgba(255,255,255,.82);
  outline: none;
  font-size: 14px;
  font-weight: 650;
  transition: box-shadow .15s ease, border-color .15s ease;
}
input:focus, textarea:focus{
  border-color: rgba(69, 80, 121, .55);
  box-shadow: 0 0 0 6px rgba(69, 80, 121, .12);
}
.form-note{margin-top: 12px; color: rgba(15, 23, 42, .7); font-weight: 750; min-height: 20px}

.contact-side{display:grid; gap: 14px}
.info-card{
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 18px;
  padding: 16px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.info-icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(69, 80, 121, .12);
  color: rgba(69, 80, 121, .95);
}
.info-icon.accent{
  /* NO BROWN: now blue accent */
  background: rgba(92,111,166,.18);
  color: rgba(92,111,166,.95);
}
.info-title{font-weight: 900}
.info-text{margin-top: 3px; color: rgba(15, 23, 42, .7); font-weight: 750}
.info-text a{color: rgba(69, 80, 121, .95); text-decoration: none} /* no underline */

/* FOOTER */
.footer{
  background: var(--primary);
  color: rgba(255,255,255,.92);
  padding: 34px 0 22px;
  margin-top: 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 18px;
  align-items:center;
}
.footer-sub{margin-top: 6px; color: rgba(255,255,255,.75); font-weight: 750; font-size: 13px}
.footer-links{
  display:flex;
  gap: 20px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.footer-links a:hover{opacity:1}
.footer-bottom{margin-top: 18px}
.footer-line{height:1px; background: rgba(255,255,255,.18); margin-bottom: 14px}
.copyright{font-size: 12px; color: rgba(255,255,255,.7); font-weight: 750; text-align:center}

/* RESPONSIVE */
@media (max-width: 980px){
  .cards{grid-template-columns: repeat(2, 1fr)}
  .split, .contact-grid{grid-template-columns: 1fr}
  .stats-card{max-width: 520px}
}
@media (max-width: 720px){
.navlinks, .nav > .btn.btn-primary{display:none}
  .hamburger{display:block}
  .hamburger{margin-left: auto;}
  .mobilemenu{display:grid}
  .hero{padding: 96px 0 60px}
  .cards{grid-template-columns: 1fr}
}
/* Remove focus/active outline from buttons */
button,
.btn{
  outline: none;
  border: none;
}

button:focus,
button:active,
button:focus-visible,
.btn:focus,
.btn:active,
.btn:focus-visible{
  outline: none;
  box-shadow: none;
}
.brand-with-logo{
  display: flex;
  align-items: center;
  gap: 0;              /* removes space between logo + text */
}

.brand-with-logo img{
  height: 48px;        /* bigger logo */
  width: auto;
  display: block;
}

/* Header hide-on-scroll behavior */
.topbar{
  position: fixed;      /* needed so it can slide away */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(0);
  transition: transform .25s ease;
}

/* When hidden */
.topbar.is-hidden{
  transform: translateY(-110%);
}

/* Prevent content from being hidden under fixed header */
body{
  padding-top: 88px; /* match your header height (84px) + padding */
}
@media (max-width: 720px) {
  .hero-inner {
    text-align: center;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  .downchev {
    margin-top: 28px;
  }
}
