:root{
  --navy:#0a3474;
  --red:#ff1731;
  --light:#f6f6f6;
  --text:#223d67;
  --muted:#51698d;
  --line:#d8e2f0;
  --container:1320px;
  --radius:18px;
  --shadow:0 16px 40px rgba(16, 33, 66, 0.10);
}
*,
*::before,
*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--text);
  background:#fff;
  font-family:'Montserrat', Arial, sans-serif;
  font-size:16px;
  line-height:1.7;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
.container{width:min(calc(100% - 80px), var(--container));margin:0 auto}
.section{padding:56px 0}
.section--tight-top{padding-top:28px}
.content-narrow{max-width:860px}

.topbar{
  background:var(--navy);
  color:#fff;
  font-size:14px;
  font-weight:600;
}
.topbar__inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
  min-height:42px;
}
.topbar__item--center{text-align:center}
.topbar__item--right{text-align:right}

.site-header{
  background:#fff;
  border-bottom:1px solid #edf1f7;
  position:sticky;
  top:0;
  z-index:100;
}
.admin-bar .site-header{top:32px}
.site-header__inner{
  display:grid;
  grid-template-columns:320px 1fr auto;
  align-items:center;
  gap:32px;
  min-height:112px;
}
.site-logo img{
  width:300px;
  max-width:100%;
}
.menu-toggle{
  display:none;
  border:1px solid var(--navy);
  background:#fff;
  color:var(--navy);
  border-radius:10px;
  padding:12px 14px;
  font-family:inherit;
  font-weight:600;
}
.site-nav{
  justify-self:center;
}
.site-nav .menu{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  align-items:center;
  gap:34px;
}
.site-nav .menu > li{
  position:relative;
}
.site-nav .menu > li > a{
  display:block;
  padding:10px 0;
  color:var(--navy);
  text-transform:uppercase;
  font-size:17px;
  font-weight:700;
  letter-spacing:0;
}
.site-nav .menu > li.current-menu-item > a,
.site-nav .menu > li.current_page_item > a{
  color:var(--red);
}
.site-nav .menu > li.menu-item-has-children > a::after{
  content:"⌄";
  font-size:14px;
  margin-left:6px;
  position:relative;
  top:-1px;
}
.site-nav .sub-menu{
  list-style:none;
  position:absolute;
  top:100%;
  left:0;
  min-width:260px;
  padding:12px 0;
  margin:0;
  background:#fff;
  border:1px solid #e7eef8;
  border-radius:14px;
  box-shadow:var(--shadow);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:all .2s ease;
  z-index:50;
}
.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.site-nav .sub-menu li a{
  display:block;
  padding:12px 16px;
  color:var(--navy);
  font-size:15px;
  font-weight:600;
  text-transform:none;
}
.site-nav .sub-menu li a:hover{
  background:#f6f9ff;
}
.header-quote-btn,
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 28px;
  border-radius:12px;
  font-size:16px;
  line-height:1;
  font-weight:500;
  letter-spacing:0;
  transition:all .2s ease;
}
.header-quote-btn{
  background:var(--red);
  color:#fff;
  text-transform:uppercase;
  white-space:nowrap;
  min-width:220px;
  box-shadow:0 12px 24px rgba(255, 23, 49, .18);
}
.header-quote-btn:hover{transform:translateY(-1px)}

.hero{
  background:#f4f4f4;
}
.hero__inner{
  display:grid;
  grid-template-columns:44% 56%;
  align-items:stretch;
  min-height:680px;
}
.hero__copy-wrap{
  background:linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.98) 76%, rgba(255,255,255,0) 100%);
  position:relative;
  z-index:2;
}
.hero__copy{
  max-width:470px;
  padding:72px 32px 56px 0;
  margin-left:auto;
  margin-right:36px;
}
.eyebrow{
  color:var(--red);
  font-size:60px;
  line-height:.95;
  font-weight:800;
  margin-bottom:10px;
}
.hero h1{
  margin:0;
  color:var(--navy);
  font-size:92px;
  line-height:.92;
  letter-spacing:-0.045em;
  font-weight:800;
}
.hero h2{
  margin:30px 0 8px;
  color:var(--red);
  font-size:28px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:-0.02em;
}
.hero-rule{
  width:230px;
  height:4px;
  background:var(--red);
  margin:16px 0 22px;
}
.hero p{
  margin:0 0 28px;
  max-width:460px;
  color:#455d83;
  font-size:18px;
  line-height:1.75;
  font-weight:400;
}
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.btn-primary{
  background:var(--red);
  color:#fff;
  box-shadow:0 12px 24px rgba(255, 23, 49, .18);
}
.btn-outline{
  background:#fff;
  color:var(--navy);
  border:2px solid var(--navy);
}
.btn-whatsapp{
  background:#25D366;
  color:#fff;
}
.hero__media{
  display:flex;
  align-items:stretch;
  justify-content:flex-end;
  overflow:hidden;
}
.hero__media img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:right bottom;
}

.section-heading{
  text-align:center;
  margin-bottom:34px;
}
.section-kicker{
  display:block;
  color:var(--red);
  text-transform:uppercase;
  font-size:15px;
  font-weight:700;
  letter-spacing:.08em;
  margin-bottom:8px;
}
.section-heading h2{
  margin:0;
  color:var(--navy);
  font-size:60px;
  line-height:.96;
  letter-spacing:-.04em;
  font-weight:800;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:22px;
}
.service-card{
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  padding:30px 28px 26px;
  min-height:330px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.service-card__icon{
  width:56px;
  height:56px;
  margin-bottom:18px;
}
.service-card h3{
  margin:0 0 14px;
  color:var(--navy);
  font-size:22px;
  line-height:1.05;
  font-weight:700;
  letter-spacing:-.025em;
}
.service-card p{
  margin:0;
  color:#4d6386;
  font-size:17px;
  line-height:1.6;
  font-weight:400;
}
.service-card a{
  margin-top:auto;
  padding-top:20px;
  color:var(--navy);
  text-transform:uppercase;
  font-size:16px;
  font-weight:700;
}

.trust-strip{
  background:var(--navy);
  color:#fff;
  padding:22px 0;
}
.trust-strip__inner{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
}
.trust-item{
  display:grid;
  grid-template-columns:60px 1fr;
  gap:16px;
  align-items:start;
  padding:10px 22px;
  min-height:124px;
}
.trust-item:not(:last-child){
  border-right:1px solid rgba(255,255,255,.18);
}
.trust-item__icon{
  width:36px;
  height:36px;
  margin-top:2px;
}
.trust-item h3{
  margin:0 0 8px;
  font-size:15px;
  line-height:1.25;
  font-weight:700;
  text-transform:uppercase;
  color:#fff;
}
.trust-item p{
  margin:0;
  font-size:15px;
  line-height:1.55;
  font-weight:400;
  color:#fff;
}

.before-after__grid{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:36px;
  align-items:center;
}
.before-after__intro h2{
  margin:0 0 12px;
  color:var(--navy);
  font-size:28px;
  line-height:1.1;
  font-weight:700;
  letter-spacing:-.03em;
}
.before-after__intro p{
  margin:0;
  color:#4d6386;
}
.before-after__slider{
  position:relative;
  overflow:hidden;
  border:6px solid var(--red);
  border-radius:20px;
  min-height:320px;
  box-shadow:var(--shadow);
}
.before-after__image{
  position:absolute;
  inset:0;
}
.before-after__image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.before-after__image--overlay{
  overflow:hidden;
  border-right:3px solid rgba(255,255,255,.85);
}
.before-after__handle{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  background:#fff;
  display:grid;
  place-items:center;
  color:var(--red);
  font-weight:700;
  z-index:3;
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}
.before-after__range{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor:ew-resize;
  z-index:4;
}
.before-label,
.after-label{
  position:absolute;
  bottom:16px;
  font-size:17px;
  font-weight:700;
  color:#fff;
  text-transform:uppercase;
  text-shadow:0 2px 10px rgba(0,0,0,.35);
}
.before-label{left:16px}
.after-label{right:16px}

.about-home__grid{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:40px;
  align-items:center;
}
.about-home__image{
  border-radius:18px;
  overflow:hidden;
  min-height:220px;
}
.about-home__image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.about-home__copy h2{
  margin:8px 0 14px;
  color:var(--navy);
  font-size:50px;
  line-height:.96;
  letter-spacing:-.04em;
  font-weight:800;
}
.about-home__copy p{margin:0;color:#4d6386}

.bottom-cta__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  border-radius:18px;
  overflow:hidden;
}
.bottom-cta__panel{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:24px;
  align-items:center;
  padding:40px 44px;
}
.bottom-cta__panel--call{
  background:var(--red);
  color:#fff;
}
.bottom-cta__panel--whatsapp{
  background:var(--navy);
  color:#fff;
}
.bottom-cta__icon{
  width:72px;
  height:72px;
}
.bottom-cta__title{
  font-size:28px;
  line-height:1.1;
  font-weight:700;
}
.bottom-cta__number{
  font-size:64px;
  line-height:1;
  font-weight:800;
}
.bottom-cta__content h3{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.1;
  font-weight:700;
}
.bottom-cta__content p{
  margin:0 0 18px;
  max-width:460px;
  color:#fff;
}

.site-footer{
  background:var(--navy);
  color:#fff;
  margin-top:36px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:44px;
  padding:54px 0 28px;
}
.footer-logo{
  width:240px;
  margin-bottom:16px;
  filter:brightness(0) invert(1);
}
.footer-col h4{
  margin:12px 0 16px;
  font-size:18px;
  font-weight:700;
}
.footer-col ul{
  list-style:disc;
  padding-left:22px;
  margin:0;
}
.footer-col li,
.footer-col p{
  margin:0 0 8px;
  color:#fff;
}
.footer-contact{list-style:none;padding-left:0}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.15);
  text-align:center;
  padding:18px 0 24px;
  color:#dfe7f5;
  font-size:14px;
}

.page-hero{
  background:#f6f8fc;
  padding:64px 0 24px;
}
.page-hero h1{
  margin:0;
  color:var(--navy);
  font-size:54px;
  line-height:1;
  font-weight:800;
  letter-spacing:-.04em;
}
.post-card{
  padding:24px 0;
  border-bottom:1px solid #e7eef8;
}
.post-card h2{
  margin:0 0 8px;
  font-size:34px;
  line-height:1.1;
  font-weight:700;
  color:var(--navy);
}
.entry-meta{
  color:#6c7e99;
  font-size:14px;
  margin-bottom:12px;
}

@media (max-width: 1400px){
  .hero h1{font-size:78px}
  .section-heading h2{font-size:52px}
  .about-home__copy h2{font-size:42px}
  .bottom-cta__number{font-size:52px}
}
@media (max-width: 1200px){
  .site-header__inner{grid-template-columns:280px 1fr auto;gap:18px}
  .site-nav .menu{gap:22px}
  .site-nav .menu > li > a{font-size:15px}
  .hero__inner{grid-template-columns:46% 54%}
  .hero h1{font-size:68px}
  .eyebrow{font-size:50px}
  .service-grid{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .trust-strip__inner{grid-template-columns:repeat(3, minmax(0, 1fr))}
  .trust-item:nth-child(3){border-right:none}
  .before-after__grid,
  .about-home__grid,
  .bottom-cta__grid,
  .footer-grid{grid-template-columns:1fr}
}
@media (max-width: 980px){
  .container{width:min(calc(100% - 40px), var(--container))}
  .topbar__inner{grid-template-columns:1fr;gap:4px;padding:10px 0}
  .topbar__item,.topbar__item--center,.topbar__item--right{text-align:center}
  .site-header__inner{
    grid-template-columns:1fr auto auto;
    min-height:88px;
  }
  .site-logo img{width:240px}
  .menu-toggle{display:inline-flex}
  .site-nav{
    position:absolute;
    left:20px;
    right:20px;
    top:calc(100% + 10px);
    background:#fff;
    border:1px solid #e7eef8;
    border-radius:16px;
    box-shadow:var(--shadow);
    padding:10px 16px;
    display:none;
  }
  .site-nav.is-open{display:block}
  .site-nav .menu{
    flex-direction:column;
    align-items:flex-start;
    gap:0;
  }
  .site-nav .menu > li,
  .site-nav .menu > li > a{width:100%}
  .site-nav .menu > li > a{padding:12px 0}
  .site-nav .sub-menu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    border:none;
    box-shadow:none;
    padding:0 0 8px 14px;
    min-width:0;
    display:block;
  }
  .header-quote-btn{
    min-width:0;
    padding:0 20px;
    font-size:15px;
  }
  .hero__inner{grid-template-columns:1fr}
  .hero__copy-wrap{
    background:#fff;
  }
  .hero__copy{
    max-width:none;
    padding:42px 0 24px;
    margin:0 auto;
  }
  .hero h1{font-size:58px}
  .hero__media img{
    height:auto;
  }
  .service-grid,
  .trust-strip__inner{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .trust-item:nth-child(odd){border-right:1px solid rgba(255,255,255,.18)}
  .trust-item:nth-child(even){border-right:none}
  .before-after__grid{gap:24px}
}
@media (max-width: 640px){
  .site-header__inner{
    grid-template-columns:1fr auto;
    gap:14px;
  }
  .header-quote-btn{display:none}
  .eyebrow{font-size:42px}
  .hero h1{font-size:48px}
  .hero h2{font-size:24px}
  .section-heading h2{font-size:38px}
  .service-grid,
  .trust-strip__inner{grid-template-columns:1fr}
  .trust-item,
  .trust-item:not(:last-child){border-right:none}
  .bottom-cta__panel{
    grid-template-columns:1fr;
    text-align:center;
    padding:34px 24px;
  }
  .bottom-cta__icon{margin:0 auto}
  .bottom-cta__number{font-size:40px}
  .footer-grid{gap:28px}
}



/* v4 precision fixes from supplied screenshots */
body{
  font-family:'Poppins', Arial, Helvetica, sans-serif;
}
.container{
  width:min(calc(100% - 120px), 1320px);
}
.site-header__inner{
  grid-template-columns:300px 1fr 210px;
  min-height:96px;
  gap:28px;
}
.site-logo img{
  width:285px;
}
.site-nav{
  justify-self:end;
}
.site-nav .menu{
  gap:28px;
  flex-wrap:nowrap;
}
.site-nav .menu > li > a{
  font-size:14px;
  font-weight:600;
  white-space:nowrap;
  letter-spacing:0;
}
.header-quote-btn{
  min-width:200px;
  min-height:58px;
  font-size:15px;
  font-weight:500;
}
.btn,
.wp-block-button__link,
button{
  font-weight:500 !important;
}
.hero{
  min-height:640px;
  background-image:var(--hero-image);
  background-repeat:no-repeat;
  background-position:right center;
  background-size:auto 100%;
  overflow:hidden;
}
.hero__inner{
  display:flex;
  align-items:center;
  min-height:640px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:64%;
  background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.98) 40%,rgba(255,255,255,.84) 62%,rgba(255,255,255,0) 100%);
  pointer-events:none;
}
.hero{position:relative}
.hero__copy{
  position:relative;
  z-index:1;
  max-width:520px;
  padding:46px 0 48px;
  margin:0;
}
.eyebrow{
  font-size:48px;
  line-height:1;
  font-weight:700;
  letter-spacing:-.035em;
}
.hero h1{
  font-size:64px;
  line-height:.98;
  font-weight:700;
  letter-spacing:-.055em;
}
.hero h2{
  font-size:25px;
  line-height:1.22;
  font-weight:700;
  max-width:560px;
}
.hero p{
  max-width:520px;
  font-size:17px;
  line-height:1.72;
}
.hero-rule{
  height:3px;
  width:220px;
}
.hero-actions .btn{
  min-height:54px;
  padding:0 24px;
  border-radius:8px;
  font-size:14px;
  font-weight:500 !important;
}
.section{
  padding:48px 0;
}
.section-heading{
  margin-bottom:34px;
}
.section-kicker{
  font-size:13px;
  font-weight:700;
}
.section-heading h2{
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
  font-size:42px;
  line-height:1.03;
  font-weight:700;
}
.service-grid{
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
}
.service-card{
  min-height:250px;
  padding:24px 24px 22px;
  border-radius:10px;
  box-shadow:0 12px 26px rgba(10,52,116,.04);
}
.service-card__icon{
  width:62px;
  height:62px;
  margin-bottom:18px;
}
.service-card h3{
  font-size:17px;
  line-height:1.08;
  font-weight:600;
  letter-spacing:-.02em;
  min-height:38px;
}
.service-card p{
  font-size:14px;
  line-height:1.55;
  font-weight:400;
}
.service-card a{
  font-size:12px;
  font-weight:600;
}
.trust-strip{
  padding:18px 0;
}
.trust-strip__inner{
  grid-template-columns:repeat(5, minmax(0, 1fr));
}
.trust-item{
  grid-template-columns:48px 1fr;
  gap:14px;
  min-height:108px;
  padding:10px 20px;
  align-items:center;
}
.trust-item__icon{
  width:42px;
  height:42px;
  margin-top:0;
}
.trust-item h3{
  font-size:13px;
  line-height:1.25;
  font-weight:500;
  letter-spacing:0;
  margin-bottom:6px;
}
.trust-item p{
  font-size:12px;
  line-height:1.45;
  font-weight:400;
}
.btn-whatsapp{
  background:#25D366;
  color:#fff;
  font-weight:500 !important;
}
.bottom-cta__panel--whatsapp .bottom-cta__icon{
  background:#fff;
  border-radius:50%;
  padding:0;
}
@media (max-width: 1200px){
  .container{width:min(calc(100% - 48px), 1120px)}
  .site-header__inner{grid-template-columns:250px 1fr auto;gap:18px}
  .site-logo img{width:245px}
  .site-nav .menu{gap:16px}
  .site-nav .menu > li > a{font-size:13px}
  .hero h1{font-size:58px}
  .hero{background-size:auto 100%;background-position:right center}
  .service-grid{gap:14px}
  .service-card{padding:22px 20px}
}
@media (max-width: 980px){
  .hero{
    background-size:cover;
    background-position:center top;
    min-height:auto;
  }
  .hero__inner{min-height:auto;padding:60px 0}
  .hero::before{width:100%;background:rgba(255,255,255,.84)}
  .service-grid,
  .trust-strip__inner{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .trust-item:nth-child(2n){border-right:0}
}
@media (max-width: 700px){
  .container{width:min(calc(100% - 32px), 1320px)}
  .hero h1{font-size:46px}
  .eyebrow{font-size:38px}
  .hero h2{font-size:22px}
  .hero-actions .btn{width:100%}
  .service-grid,
  .trust-strip__inner{grid-template-columns:1fr}
  .trust-item{border-right:0!important;border-bottom:1px solid rgba(255,255,255,.18)}
}


/* v5 client-requested layout corrections */
:root{--container:1320px;}
body{font-family:"Poppins","Montserrat",Arial,sans-serif;}

.topbar{display:block;}
.site-header{position:sticky;top:0;background:#fff;z-index:100;border-bottom:1px solid #edf1f7;}
.site-header__inner{
  display:grid;
  grid-template-columns:330px minmax(0,1fr) 220px;
  align-items:center;
  min-height:98px;
  gap:30px;
}
.site-logo img{width:305px;height:auto;}
.site-nav{display:block;justify-self:end;min-width:0;}
.site-nav .menu{
  display:flex !important;
  flex-direction:row;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:nowrap;
  gap:26px;
  list-style:none;
  margin:0;
  padding:0;
}
.site-nav .menu>li{position:relative;flex:0 0 auto;}
.site-nav .menu>li>a{
  color:var(--navy);
  text-transform:uppercase;
  font-size:14px;
  line-height:1;
  font-weight:600;
  letter-spacing:-.01em;
  white-space:nowrap;
  padding:42px 0;
}
.site-nav .menu>li.current-menu-item>a,
.site-nav .menu>li.current_page_item>a{color:var(--red);}
.site-nav .sub-menu{top:calc(100% - 12px);}
.header-quote-btn{
  min-width:210px;
  min-height:58px;
  border-radius:9px;
  font-size:14px;
  font-weight:500 !important;
  text-transform:uppercase;
}
.btn,.header-quote-btn,.service-card a{font-weight:500 !important;}

.hero{
  position:relative;
  min-height:560px;
  background-image:var(--hero-image);
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center center;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  width:62%;
  background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.97) 31%,rgba(255,255,255,.82) 48%,rgba(255,255,255,0) 100%);
  pointer-events:none;
}
.hero__inner{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  min-height:560px;
}
.hero__copy{
  max-width:560px;
  width:44%;
  min-width:500px;
  margin:0;
  padding:50px 0 58px;
}
.eyebrow{font-size:46px;font-weight:700;line-height:1;letter-spacing:-.035em;margin-bottom:8px;}
.hero h1{
  font-size:62px;
  line-height:.98;
  font-weight:700;
  letter-spacing:-.055em;
  margin:0;
  color:var(--navy);
}
.hero h2{
  font-size:26px;
  line-height:1.18;
  font-weight:700;
  max-width:none;
  margin:25px 0 8px;
}
.hero-rule{height:3px;width:220px;margin:14px 0 20px;}
.hero p{font-size:17px;line-height:1.65;max-width:530px;margin-bottom:26px;color:#415b82;}
.hero-actions{gap:16px;}
.hero-actions .btn{min-height:50px;padding:0 24px;border-radius:7px;font-size:14px;font-weight:500 !important;}

.services-section{padding-top:44px;padding-bottom:54px;}
.section-heading{margin-bottom:30px;}
.section-kicker{font-size:13px;font-weight:700;letter-spacing:.08em;}
.section-heading h2{
  font-size:36px;
  line-height:1.05;
  font-weight:700;
  letter-spacing:-.035em;
  max-width:none;
  white-space:nowrap;
}
.service-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:16px;
  align-items:stretch;
}
.service-card{
  min-height:238px;
  padding:22px 22px 21px;
  border:1px solid #dce5f1;
  border-radius:9px;
  box-shadow:0 12px 26px rgba(10,52,116,.035);
}
.service-card__icon{width:58px;height:58px;margin-bottom:16px;}
.service-card h3{
  font-size:17px;
  line-height:1.05;
  min-height:36px;
  font-weight:600;
  letter-spacing:-.03em;
  margin-bottom:12px;
}
.service-card p{font-size:14px;line-height:1.52;color:#425a80;}
.service-card a{font-size:12px;letter-spacing:0;}

.trust-strip{padding:19px 0;background:#0a3474;}
.trust-strip__inner{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
}
.trust-item{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:15px;
  align-items:center;
  min-height:106px;
  padding:10px 24px;
}
.trust-item__icon{width:42px;height:42px;}
.trust-item h3{
  font-size:13px;
  line-height:1.25;
  font-weight:500;
  text-transform:uppercase;
  margin-bottom:6px;
}
.trust-item p{font-size:12px;line-height:1.42;font-weight:400;}
.bottom-cta .btn-whatsapp{background:#25D366;color:#fff;}

@media (max-width: 1320px){
  .site-header__inner{grid-template-columns:285px minmax(0,1fr) 205px;gap:20px}
  .site-logo img{width:270px}
  .site-nav .menu{gap:18px}
  .site-nav .menu>li>a{font-size:13px}
  .hero__copy{min-width:470px;width:45%}
  .hero h1{font-size:58px}
  .section-heading h2{font-size:34px}
}
@media (max-width: 1100px){
  .menu-toggle{display:inline-flex;justify-self:end}
  .site-header__inner{grid-template-columns:1fr auto auto;min-height:86px}
  .site-logo img{width:240px}
  .site-nav{
    position:absolute;left:24px;right:24px;top:calc(100% + 8px);
    display:none;background:#fff;border:1px solid #e7eef8;border-radius:14px;
    box-shadow:0 16px 40px rgba(16,33,66,.12);padding:12px 18px;
  }
  .site-nav.is-open{display:block;}
  .site-nav .menu{flex-direction:column;align-items:flex-start;gap:0;}
  .site-nav .menu>li,.site-nav .menu>li>a{width:100%;}
  .site-nav .menu>li>a{padding:12px 0;font-size:14px;}
  .site-nav .sub-menu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:0;padding:0 0 8px 14px;}
  .hero{background-position:center center;}
  .hero::before{width:70%;}
  .hero__copy{min-width:430px;width:55%;}
  .service-grid{grid-template-columns:repeat(3, minmax(0, 1fr));}
  .section-heading h2{white-space:normal;}
  .trust-strip__inner{grid-template-columns:repeat(3, minmax(0, 1fr));}
}
@media (max-width: 700px){
  .topbar{font-size:12px;}
  .header-quote-btn{display:none;}
  .hero{min-height:auto;background-position:center top;}
  .hero::before{width:100%;background:rgba(255,255,255,.86);}
  .hero__inner{min-height:auto;padding:48px 0;}
  .hero__copy{min-width:0;width:100%;max-width:none;}
  .hero h1{font-size:46px;}
  .eyebrow{font-size:38px;}
  .hero h2{font-size:22px;}
  .section-heading h2{font-size:30px;}
  .service-grid,.trust-strip__inner{grid-template-columns:1fr;}
}


/* v6 hero refinements: full-height image and single-line desktop headline */
@media (min-width: 1025px){
  .hero{
    min-height:720px !important;
    background-size:auto 96% !important;
    background-position:right center !important;
  }
  .hero__inner{
    min-height:720px !important;
    align-items:center !important;
  }
  .hero__copy{
    max-width:780px !important;
    width:780px !important;
    padding:46px 0 48px !important;
  }
  .hero h1{
    white-space:nowrap !important;
    font-size:56px !important;
    line-height:1.02 !important;
    letter-spacing:-0.045em !important;
  }
  .hero h2,
  .hero p{
    max-width:610px !important;
  }
  .hero::before{
    width:76% !important;
    background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.98) 30%,rgba(255,255,255,.78) 52%,rgba(255,255,255,.34) 66%,rgba(255,255,255,0) 78%) !important;
  }
}

@media (max-width: 1024px){
  .hero h1{
    white-space:normal !important;
  }
}


/* v7 hero fade correction: use a pre-composited desktop hero with a soft white fade baked in. */
@media (min-width: 901px){
  .hero{
    min-height:720px !important;
    background-size:cover !important;
    background-position:center center !important;
    background-color:#fff !important;
  }
  .hero::before{
    content:"" !important;
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.96) 24%,rgba(255,255,255,.72) 40%,rgba(255,255,255,.22) 56%,rgba(255,255,255,0) 68%) !important;
    pointer-events:none !important;
    z-index:0 !important;
  }
  .hero__inner{
    position:relative !important;
    z-index:2 !important;
    min-height:720px !important;
  }
  .hero__copy{
    max-width:900px !important;
    width:900px !important;
  }
  .hero h1{
    white-space:nowrap !important;
    font-size:56px !important;
  }
}
