:root{
  --primary: #0069AF;
  --primary-dark: #18519D;
  --primary-deeper: #1F448C;
  --primary-soft: #eaf4fc;
  --white: #ffffff;
  --bg-soft: #f7fbff;
  --text: #173257;
  --muted: #5d7697;
  --line: #d9e7f3;
  --shadow: 0 14px 40px rgba(24, 81, 157, 0.12);
  --radius: 20px;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

a{
  text-decoration: none;
  color: inherit;
}

img{
  max-width: 100%;
  display: block;
}

.container{
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* HEADER */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner{
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__img{
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand__text{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name{
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-deeper);
}

.brand__tag{
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.nav{
  display: none;
  align-items: center;
  gap: 22px;
}

.nav a{
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}

.nav a:hover{
  color: var(--primary);
}

.topbar__actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BUTTONS */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn:hover{
  transform: translateY(-1px);
}

.btn--primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 105, 175, 0.18);
}

.btn--primary:hover{
  filter: brightness(1.03);
}

.btn--secondary{
  background: var(--white);
  color: var(--primary);
  border-color: #bfd8ec;
}

.btn--secondary:hover{
  background: var(--primary-soft);
}

.btn--white{
  background: var(--white);
  color: var(--primary);
}

.btn--lg{
  padding: 14px 20px;
  border-radius: 16px;
}

.btn--block{
  width: 100%;
}

/* HERO */
.hero{
  padding: 68px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(0, 105, 175, 0.09), transparent 38%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
}

.hero__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border: 1px solid #cce2f2;
  font-size: 13px;
  font-weight: 700;
}

.pill--link{
  cursor: pointer;
  transition: 0.2s ease;
}

.pill--link:hover{
  background: #dff0fb;
  transform: translateY(-1px);
}

h1{
  margin: 16px 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.8px;
  color: var(--primary-deeper);
  max-width: 18ch;
}

h2{
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--primary-deeper);
}

h3{
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--primary-dark);
}

.lead{
  margin: 0;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero__trust{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

.trustItem{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.trustItem__title{
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-dark);
}

.trustItem__text{
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

.card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card--hero{
  padding: 24px;
}

.card__title{
  margin: 0 0 8px;
  font-size: 26px;
  color: var(--primary-deeper);
}

.card__text{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* LISTS */
.checklist{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.checklist li{
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
  color: var(--muted);
  line-height: 1.5;
}

.checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

.miniList{
  margin: 0 0 18px 18px;
  padding: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* FORM */
.miniForm{
  display: grid;
  gap: 10px;
}

label{
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
}

input,
select{
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid #c9ddef;
  background: var(--white);
  color: var(--text);
  outline: none;
  font-family: inherit;
  font-size: 15px;
}

input:focus,
select:focus{
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 105, 175, 0.08);
}

.tiny{
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

/* SECTIONS */
.section{
  padding: 72px 0;
}

.section--light{
  background: var(--bg-soft);
}

.section--blue{
  background: linear-gradient(135deg, var(--primary-deeper), var(--primary-dark), var(--primary));
}

.sectionHead{
  margin-bottom: 24px;
}

.sectionHead p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.sectionHead--white h2,
.sectionHead--white p{
  color: var(--white);
}

.grid2{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.bullets{
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.bullet{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.bullet__icon{
  font-weight: 900;
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}

.bullet__title{
  font-weight: 800;
  color: var(--primary-dark);
}

.bullet__text{
  margin-top: 5px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.highlight{
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.cards3{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.quotes{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.quote{
  margin: 0;
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  backdrop-filter: blur(6px);
}

blockquote{
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

figcaption{
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.center{
  display: grid;
  place-items: center;
  gap: 10px;
  margin-top: 22px;
}

/* SCHEDULE */
.scheduleGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.schedule__list{
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

/* MAP */
.mapEmbed{
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.mapEmbed iframe{
  width: 100%;
  height: 320px;
  display: block;
}

/* FAQ */
.faq{
  display: grid;
  gap: 12px;
}

details{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

summary{
  cursor: pointer;
  font-weight: 800;
  color: var(--primary-dark);
}

details p{
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

/* FOOTER */
.footer{
  background: var(--primary-deeper);
  color: var(--white);
  padding: 32px 0 90px;
}

.footer__inner{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.footerBrand{
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer__name{
  font-size: 18px;
  font-weight: 800;
}

.tiny--footer{
  color: rgba(255, 255, 255, 0.78);
}

.footer__socials,
.footer__links{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.socialLink{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.94);
  font-weight: 700;
  transition: 0.2s ease;
}

.socialLink:hover{
  background: rgba(255,255,255,0.16);
  color: var(--white);
  transform: translateY(-1px);
}

.socialLink svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer__links a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.footer__links a:hover{
  color: var(--white);
  background: rgba(255,255,255,0.16);
}

/* FLOATING BUTTON */
.waFloat{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #3aa8f3);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 105, 175, 0.28);
}

.waFloat__icon{
  font-size: 16px;
  line-height: 1;
}

/* MOBILE */
@media (max-width: 819px){
  h1{
    max-width: 18ch;
    font-size: clamp(30px, 8vw, 44px);
  }

  .topbar__inner{
    min-height: 74px;
  }

  .brand__img{
    width: 38px;
    height: 38px;
  }

  .brand__name{
    font-size: 16px;
  }

  .brand__tag{
    font-size: 11px;
  }

  .topbar__actions .btn{
    padding: 11px 14px;
    font-size: 14px;
  }

  .footer__socials .socialLink,
  .footer__links a{
    flex: 1 1 calc(50% - 12px);
  }

  .footer__socials .socialLink span,
  .footer__links a{
    text-align: center;
  }

  .waFloat{
    right: 12px;
    bottom: 12px;
    padding: 13px 16px;
    font-size: 14px;
  }
}

/* DESKTOP */
@media (min-width: 820px){
  .nav{
    display: flex;
  }

  .hero__grid{
    grid-template-columns: 1.15fr 0.85fr;
  }

  .hero__trust{
    grid-template-columns: repeat(3, 1fr);
  }

  .grid2{
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .cards3{
    grid-template-columns: repeat(3, 1fr);
  }

  .quotes{
    grid-template-columns: repeat(3, 1fr);
  }

  .scheduleGrid{
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__inner{
    flex-direction: row;
    align-items: center;
  }

  .footer__socials,
  .footer__links{
    width: auto;
  }
}