@font-face {
  font-family: "Artico";
  src: url("../fonts/Artico.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Artico";
  src: url("../fonts/Artico Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Artico";
  src: url("../fonts/Artico Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Artico";
  src: url("../fonts/Artico Bold Italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Artico";
  src: url("../fonts/Artico Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Artico";
  src: url("../fonts/Artico Black Italic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
:root{
  --blue:#4E7FC2;
  --blue-dark:#315f9f;
  --blue-soft:#eef5ff;
  --green:#28b52f;
  --green-dark:#1e9626;
  --ink:#183048;
  --muted:#66788a;
  --line:#dfe9f3;
  --white:#fff;
  --shadow:0 18px 50px rgba(37,79,120,.12);
  --radius:26px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family: "Artico", sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
   font-weight: 400;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,calc(100% - 36px));margin:0 auto}

.topbar{
  background:#f6faff;
  border-bottom:1px solid #edf3f9;
  font-size:14px;
}
.topbar .container{
  min-height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.topbar strong{color:var(--blue-dark)}
.topbar a{color:var(--blue-dark);font-weight:700}

header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.24);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(223,233,243,.7);
}

nav{
  min-height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:10px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:240px;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 240px;
}

.brand-logo {
  display: block;
  width: 180px;
  height: auto;
}
@media (max-width:620px){
  nav{
    position: relative;
    justify-content: center;
  }

  .brand{
    margin: 0 auto;
    min-width: 0;
  }

  .brand-logo{
    width: 175px;
    margin: 0 auto;
  }
}
.menu{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:14px;
  font-weight:700;
  color:#456078;
}
.menu a:hover{color:var(--blue)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  transition:.2s ease;
  border:1px solid transparent;
  cursor:pointer;
  font-family:inherit;
}
.btn-primary{
  background:var(--green);
  color:#fff;
  box-shadow:0 10px 25px rgba(40,181,47,.20);
}
.btn-primary:hover{transform:translateY(-2px);background:var(--green-dark)}
.btn-secondary{
  background:#fff;
  color:var(--blue-dark);
  border-color:#cadbee;
}
.btn-secondary:hover{border-color:var(--blue);background:var(--blue-soft)}

.hero{
  position:relative;
  overflow:hidden;
  padding:92px 0 76px;
  background:
    radial-gradient(circle at 80% 10%,rgba(40,181,47,.10),transparent 24%),
    radial-gradient(circle at 5% 20%,rgba(78,127,194,.13),transparent 22%),
    linear-gradient(180deg,#fbfdff 0%,#fff 100%);
}
.hero:before{
  content:"";
  position:absolute;left:0;top:0;width:210px;height:210px;
  opacity:.42;
  background-image:radial-gradient(var(--blue) 1.7px,transparent 1.7px);
  background-size:16px 16px;
  transform:translate(-54px,-44px);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:center;
  gap:70px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  background:rgba(237, 248, 238, 0.72);
  color:var(--green-dark);
  border:1px solid rgba(207, 238, 207, 0.95);
  padding:8px 13px;
  border-radius:999px;
  font-size:16px;
  font-weight:800;
  margin-bottom:20px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 8px 20px rgba(40, 181, 47, 0.10);
}
h1{
  margin:0;
  color:var(--blue);
  font-size:clamp(46px,6vw,80px);
  line-height:.98;
  letter-spacing:-.045em;
  text-transform:uppercase;
  font-weight:900;
}
h1 span{
  display:block;
  margin-top:13px;
  color:#5c89c5;
  font-size:.52em;
  font-weight:500;
  letter-spacing:-.025em;
}
.lead{
  max-width:650px;
  margin:28px 0 30px;
  font-size:18px;
  color:var(--muted);
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-trust{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
  margin-top:34px;
  color:#536c81;
  font-size:14px;
  font-weight:700;
}
.hero-trust span:before{
  content:"✓";
  color:var(--green);
  font-weight:900;
  margin-right:8px;
}

.hero-card{
  position:relative;
  background:blur(50px);
  border:1px solid #e5edf6;
  border-radius:36px;
  box-shadow:var(--shadow);
  padding:12px;
  min-height:500px;
  overflow:visible;
}

.foot-graphic{
  width:100%;
  height:500px;
  border-radius:28px;
  overflow:hidden;
  background:none;
}

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

.floating-card{
  position:absolute;
  left:-36px;
  bottom:28px;
  background:
    radial-gradient(circle at 80% 10%,rgba(40,181,47,.10),transparent 54%),
    radial-gradient(circle at 5% 20%,rgba(78,127,194,.13),transparent 52%),
    linear-gradient(180deg,#fbfdff 0%,#fff 100%);
  border:1px solid var(--line);
  box-shadow:0 14px 34px rgba(39,77,115,.15);
  border-radius:20px;
  padding:16px 18px;
  width:225px;
  z-index:3;
}
.floating-card b{display:block;color:var(--blue-dark);font-size:15px}
.floating-card small{color:var(--muted)}

section{padding:88px 0}
.section-kicker{
  color:var(--green);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  margin-bottom:9px;
}
.section-title{
  margin:0 0 16px;
  font-size:clamp(34px,4vw,52px);
  line-height:1.08;
  letter-spacing:-.035em;
  color:#274b73;
}
.section-subtitle{
  margin:0;
  color:var(--muted);
  max-width:700px;
  font-size:17px;
}

.services{background:#f8fbff}
.services-grid{
  margin-top:42px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.service{
  background:#fff;
  border:1px solid #e1eaf4;
  border-radius:24px;
  padding:26px;
  transition:.25s ease;
}
.service:hover{
  transform:translateY(-5px);
  box-shadow:0 16px 38px rgba(49,95,159,.10);
  border-color:#c7d9ed;
}
.icon{
  width:52px;height:52px;
  border-radius:17px;
  background:var(--blue-soft);
  color:var(--blue);
  display:grid;place-items:center;
  font-size:24px;
  margin-bottom:18px;
  font-weight:800;
}
.service h3{margin:0 0 8px;font-size:18px;color:#315f9f}
.service p{margin:0;color:#718394;font-size:14px}
.service.green .icon{background:#ecf9ed;color:var(--green)}

.about-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}
.about-box{
  min-height:470px;
  border-radius:32px;
  background:
    linear-gradient(145deg,rgba(78,127,194,.10),rgba(40,181,47,.10)),
    #f9fcff;
  border:1px solid #dfe9f3;
  padding:34px;
  position:relative;
  overflow:hidden;
}
.about-box:before{
  content:"";
  position:absolute;inset:18px;
  border:1px dashed rgba(78,127,194,.22);
  border-radius:24px;
}
.about-photo-placeholder{
  height:100%;
  min-height:400px;
  display:grid;
  place-items:center;
  text-align:center;
  color:#6b8296;
  position:relative;
  z-index:1;
}
.about-photo-placeholder .circle{
  width:120px;height:120px;border-radius:50%;
  background:#fff;
  display:grid;place-items:center;
  font-size:48px;
  box-shadow:0 12px 30px rgba(37,79,120,.1);
  margin:0 auto 20px;
}
.checks{margin-top:28px;display:grid;gap:14px}
.check{
  display:flex;
  gap:13px;
  align-items:flex-start;
  color:#536c81;
}
.check i{
  width:26px;height:26px;border-radius:50%;
  flex:0 0 26px;
  display:grid;place-items:center;
  background:#eaf7eb;
  color:var(--green);
  font-style:normal;
  font-weight:900;
}

.cta-band{padding:0;background:#fff}
.cta-inner{
  background:linear-gradient(135deg,var(--blue-dark),var(--blue));
  color:#fff;
  border-radius:32px;
  padding:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  overflow:hidden;
  position:relative;
}
.cta-inner:after{
  content:"+";
  position:absolute;
  right:38%;
  top:-20px;
  font-size:120px;
  font-weight:800;
  color:rgba(255,255,255,.07);
}
.cta-inner h2{margin:0 0 10px;font-size:34px;line-height:1.1}
.cta-inner p{margin:0;color:#d9e8f8}

.contact{padding-bottom:40px}
.contact-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.contact-card{
  border:1px solid #dfe9f3;
  border-radius:26px;
  padding:30px;
  box-shadow:0 12px 32px rgba(37,79,120,.07);
}
.contact-row{
  display:flex;gap:14px;align-items:flex-start;
  padding:16px 0;border-bottom:1px solid #edf3f8;
}
.contact-row:last-child{border-bottom:0}
.contact-row .mini{
  width:42px;height:42px;border-radius:14px;
  background:var(--blue-soft);display:grid;place-items:center;
  color:var(--blue);font-weight:900;
  flex:0 0 42px;
}
.contact-row b{display:block;color:#315f9f;margin-bottom:2px}
.contact-row span{color:#718394}

.map{
  border-radius:26px;
  min-height:380px;
  border:1px solid #dfe9f3;
  overflow:hidden;
  background:#eef4f8;
}
.map iframe{
  display:block;
  width:100%;
  height:100%;
  min-height:380px;
  border:0;
}

.contact-form-wrap{
  margin-top:28px;
  background:#fff;
  border:1px solid #dfe9f3;
  border-radius:26px;
  padding:30px;
  box-shadow:0 12px 32px rgba(37,79,120,.07);
}
.contact-form-wrap h3{
  margin:0 0 20px;
  font-size:28px;
  color:#315f9f;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
input,textarea{
  width:100%;
  border:1px solid #cfddeb;
  border-radius:14px;
  padding:14px 16px;
  margin-bottom:14px;
  font:inherit;
  color:var(--ink);
  background:#fff;
}
input:focus,textarea:focus{
  outline:none;
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(78,127,194,.10);
}
textarea{resize:vertical}
.consent{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:18px;
  color:var(--muted);
  font-size:14px;
}
.consent input{width:auto;margin:5px 0 0}
.form-status{
  margin-top:14px;
  font-weight:700;
  color:var(--blue-dark);
}

footer{
  margin-top:40px;
  border-top:1px solid #e8eff6;
  padding:28px 0;
  color:#7a8c9d;
  font-size:13px;
}
footer .container{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

@media (max-width:920px){
  .menu{display:none}
  .hero-grid,.about-grid,.contact-grid{grid-template-columns:1fr}
  .hero{padding-top:68px}
  .hero-card{min-height:420px}
  .services-grid{grid-template-columns:1fr 1fr}
  .floating-card{left:18px}
  .cta-inner{align-items:flex-start;flex-direction:column}
}

@media (max-width:620px){
  .topbar .container{justify-content:center;text-align:center}
  .topbar span:first-child{display:none}
  nav{height:68px}
  .brand{min-width:auto}
  .brand .big{font-size:15px}
  .brand .small{font-size:10px}
  nav>.btn{display:none}
  .hero{padding:54px 0 56px}
  h1{font-size:44px}
  .services-grid{grid-template-columns:1fr}
  section{padding:64px 0}
  .hero-card{padding:20px;min-height:360px}
  .floating-card{position:relative;left:auto;bottom:auto;margin-top:18px;width:100%}
  .hero-card{display:block}
  .foot-graphic{margin:auto}
  .cta-inner{padding:34px 26px}
  .form-grid{grid-template-columns:1fr}
}
