:root{
  --text:#152126;
  --muted:#607179;
  --deep:#12333F;
  --brand:#1F4F5F;
  --green:#3F7D6B;
  --soft:#EEF5F4;
  --line:rgba(18,51,63,.10);
  --white:#fff;
  --shadow:0 22px 60px rgba(18,51,63,.10);
  --radius:28px;
  --font-main:'Manrope', Arial, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-main);
  color:var(--text);
  background:#fff;
  font-size:16px;
}
body *{font-family:inherit}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit}
button{cursor:pointer}

.container{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
}
.section{padding:92px 0}
.bg-soft{background:var(--soft)}
.bg-dark{background:var(--deep);color:#fff}
.center{text-align:center;margin-top:28px}
.muted{box-shadow:none;border:1px solid rgba(255,255,255,.12)}

h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(36px,5.4vw,64px);
  line-height:.98;
  letter-spacing:-.06em;
  margin-bottom:24px;
}
h2{
  font-size:clamp(34px,4.5vw,58px);
  line-height:1.04;
  letter-spacing:-.05em;
  margin-bottom:22px;
}
h3{font-size:20px;line-height:1.18;margin-bottom:10px}
p{line-height:1.7;color:var(--muted)}
.bg-dark p{color:rgba(255,255,255,.82)}
.bg-dark h2,.bg-dark h3{color:#fff}
.lead{
  font-size:23px;
  font-weight:500;
  line-height:1.28;
  letter-spacing:-.025em;
  color:#33484f;
  max-width:780px;
  margin-bottom:12px;
}
.hero-note{
  max-width:740px;
  font-size:20px;
  font-weight:500;
  line-height:1.32;
  letter-spacing:-.015em;
  color:var(--brand);
  margin-bottom:0;
}
.eyebrow{
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.09em;
  color:var(--brand);
  font-size:13px;
  margin-bottom:16px;
}
.eyebrow.light{color:rgba(255,255,255,.82)}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:24px;
  height:78px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-right:auto;
  min-width:0;
}
.brand-logo{
  width:48px;
  height:48px;
  flex:0 0 48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(18,51,63,.12);
}
.brand-logo img{width:100%;height:100%;display:block}

.brand-logotype{
  width:156px;
  height:48px;
  flex:0 0 156px;
  display:inline-flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:2px;
  padding:7px 13px 8px;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(31,79,95,.10), rgba(255,255,255,.82));
  border:1px solid rgba(31,79,95,.14);
  box-shadow:0 10px 26px rgba(18,51,63,.10), inset 0 1px 0 rgba(255,255,255,.72);
  color:var(--brand);
  text-transform:uppercase;
  font-size:13px;
  font-weight:900;
  line-height:1.02;
  letter-spacing:.055em;
  white-space:nowrap;
}
.brand-logotype span{display:block}
.brand b{display:block;font-size:15px}
.brand small{display:block;color:var(--muted);font-size:12px}
.nav{display:flex;gap:22px;font-weight:800;font-size:14px;color:#3a5058}
.header-phone{font-weight:900;color:var(--brand);white-space:nowrap}
.mobile-header-actions{display:none}

.burger{
  display:none;
  position:relative;
  width:42px;
  height:42px;
  padding:8px;
  border:0;
  background:none;
}
.burger span{
  display:block;
  height:2px;
  margin:6px 0;
  background:var(--deep);
  transition:transform .22s ease, opacity .18s ease;
  transform-origin:center;
}
.burger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.active span:nth-child(2){opacity:0}
.burger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-menu{display:none}

.btn{
  border:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:0 24px;
  border-radius:16px;
  font-weight:900;
  transition:.2s;
}
.btn-primary{
  background:var(--brand);
  color:#fff;
  box-shadow:0 18px 36px rgba(31,79,95,.18);
}
.btn-primary:hover{transform:translateY(-2px);background:#173f4d}
.btn-light{background:#fff;color:var(--brand)}

.hero{padding-top:54px;background:linear-gradient(180deg,#f7fbfb 0%,#fff 100%)}
.hero-grid{
  display:grid;
  grid-template-columns:1.14fr .86fr;
  gap:44px;
  align-items:stretch;
}
.hero-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;align-items:center;margin-top:26px}
.hero-card{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:34px;
  padding:18px;
  box-shadow:var(--shadow);
}
.photo-wrap,.photo-card{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#dfe9e8;
}
.photo-wrap img,.photo-card img{width:100%;height:100%;object-fit:cover}
.photo-wrap.portrait{height:420px}
.hero-card .photo-wrap.portrait.hero-photo-proper{
  width:100%;
  height:auto;
  min-height:0;
  aspect-ratio:1 / 1;
  background:transparent;
  border-radius:28px;
  line-height:0;
  box-shadow:0 18px 40px rgba(15,38,54,.10);
}
.hero-card .photo-wrap.portrait.hero-photo-proper img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}
.hero-person{padding:14px 8px 12px}
.hero-person b{display:block;font-size:22px;line-height:1.15}
.hero-person span{color:var(--muted);font-size:14px;line-height:1.35}
.mini-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
.mini-grid div,
.calm-card,
.cards article{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  box-shadow:0 12px 32px rgba(18,51,63,.06);
}
.hero-card .mini-grid div{min-height:74px;padding:14px 16px;border-radius:18px}
.mini-grid b{display:block;font-size:22px;line-height:1.05;margin-bottom:4px;color:var(--brand)}
.mini-grid span{display:block;font-size:12px;line-height:1.25;color:var(--muted)}

.two-col{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.two-col.align-center{align-items:center}
.calm-card{background:linear-gradient(135deg,#fff,#eef5f4);padding:34px}
.calm-card h3{font-size:30px}
.cards{display:grid;gap:16px}
.cards.two{grid-template-columns:repeat(2,minmax(0,1fr))}
.cards.three{grid-template-columns:repeat(3,minmax(0,1fr))}
.cards.compact article{padding:22px}
.cards article h3{color:var(--text)}
.cards article p{margin:0}
.icon-cards article span{
  display:inline-grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:14px;
  background:var(--soft);
  color:var(--brand);
  font-weight:900;
  margin-bottom:16px;
}
.transition{
  margin-top:22px;
  padding-left:18px;
  border-left:4px solid var(--green);
  font-weight:800;
  color:#31484f;
}
.section-head{margin-bottom:40px}
.section-head.narrow{max-width:860px}
.note-cta{
  display:flex;
  gap:24px;
  align-items:center;
  justify-content:space-between;
  margin-top:28px;
  background:var(--soft);
  border-radius:26px;
  padding:26px;
}
.note-cta p{margin:0;max-width:740px}
.bg-soft .note-cta{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 12px 32px rgba(18,51,63,.06);
}
.photo-card{min-height:360px}

.intro-proof-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) .95fr;
  gap:46px;
  align-items:start;
}
.intro-proof-copy{max-width:720px}
.intro-proof-side{
  display:flex;
  flex-direction:column;
  gap:22px;
  width:100%;
  padding-top:12px;
}
.intro-proof-stat{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:18px;
  align-items:center;
  width:100%;
  padding:26px 24px;
  border-radius:28px;
  background:#103847;
  color:#fff;
  box-shadow:0 18px 40px rgba(16,56,71,.18);
}
.intro-proof-stat-num{
  font-weight:800;
  font-size:32px;
  line-height:.95;
  letter-spacing:-.02em;
}
.intro-proof-stat-text{font-size:18px;line-height:1.4;color:rgba(255,255,255,.94)}

.feature-unified{display:flex;flex-direction:column;gap:30px}
.feature-top{
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:34px;
  align-items:start;
}
.feature-copy{display:flex;flex-direction:column;gap:14px}
.feature-copy h2,.feature-copy p{margin:0}
.feature-copy p{max-width:760px}
.photo-card.feature-photo.feature-photo-landscape{
  width:340px;
  max-width:340px;
  height:220px;
  min-height:220px;
  margin-left:auto;
  background:transparent;
  border-radius:28px;
  line-height:0;
  box-shadow:0 18px 40px rgba(15,38,54,.10);
}
.photo-card.feature-photo.feature-photo-landscape img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}
.pain .photo-card img{object-position:center 22%}

.fear-cards,.bridge-cards{margin-top:34px}
.fear-cards article{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.12);
  box-shadow:none;
}
.fear-cards p{color:rgba(255,255,255,.72)}

.expert-grid{display:grid;grid-template-columns:.75fr 1.25fr;gap:54px;align-items:center}
.expert-photo{height:600px;border-radius:34px;overflow:hidden;box-shadow:var(--shadow)}
.expert-photo img{width:100%;height:100%;object-fit:cover}
.expert-trust-caption{margin:22px 0 10px;color:var(--brand);font-weight:900;font-size:18px;line-height:1.25}
.expert-badges{display:flex;flex-wrap:wrap;gap:12px;margin:0 0 24px}
.expert-badge{flex:0 0 auto;border-radius:16px;overflow:hidden;background:#fff;box-shadow:0 6px 22px rgba(15,54,69,.08)}
.expert-badge img{display:block;width:104px;height:auto}

.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.review-card{border:0;background:#fff;border-radius:26px;padding:12px;box-shadow:var(--shadow);cursor:pointer}
.review-card img{width:100%;height:360px;object-fit:contain;border-radius:18px;background:#f8fbfb}
.video-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.video-grid iframe{width:100%;aspect-ratio:16/9;border:0;border-radius:22px;box-shadow:var(--shadow);background:#0f252d}

.final-cta{background:var(--deep);color:#fff}
.final-cta h2{color:#fff}
.final-cta p{color:rgba(255,255,255,.82)}
.final-grid{display:grid;grid-template-columns:1fr .75fr;gap:46px;align-items:center}
.final-confidence-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:28px 0 0}
.final-confidence-list > div{
  padding:14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  background:rgba(255,255,255,.08);
}
.final-confidence-list b{display:block;margin-bottom:6px;color:#fff;font-size:15px;line-height:1.25}
.final-confidence-list span{display:block;color:rgba(255,255,255,.78);font-size:13px;line-height:1.35}
.final-card{background:#fff;color:var(--text);border-radius:30px;padding:18px;box-shadow:0 28px 70px rgba(0,0,0,.25)}
.final-card img{width:100%;height:230px;object-fit:cover;border-radius:22px}
.big-phone{display:block;margin:22px 0 6px;font-size:34px;font-weight:900;color:var(--brand)}
.final-card span{color:var(--muted)}
.final-card .final-lead-form{display:grid;grid-template-columns:1fr;gap:12px;margin-top:18px}
.final-card .final-lead-form input[type="text"],
.final-card .final-lead-form input[type="tel"]{
  width:100%;
  min-height:54px;
  border:1px solid rgba(31,79,95,.16);
  border-radius:16px;
  background:#fff;
  padding:0 18px;
  color:var(--text);
  outline:none;
}
.final-card .final-lead-form input:focus{
  border-color:rgba(31,79,95,.42);
  box-shadow:0 0 0 4px rgba(31,79,95,.08);
}
.final-card .final-lead-form .btn{width:100%;min-height:54px}
.form-consent,.consent{
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  width:100%;
  max-width:100%;
  gap:8px;
  font-size:12px;
  line-height:1.35;
  color:var(--muted);
  text-align:left;
}
.consent{font-size:13px;gap:10px}
.form-consent input[type="checkbox"],.consent input[type="checkbox"]{
  width:16px;
  height:16px;
  min-width:16px;
  flex:0 0 16px;
  margin:2px 0 0;
  padding:0;
}
.form-consent span,.consent span{
  display:block;
  flex:1 1 auto;
  min-width:0;
  max-width:100%;
  overflow-wrap:normal;
}
.form-consent a,.consent a{color:inherit;text-decoration:underline}

.site-footer{padding:44px 0;background:#0c252e;color:#fff}
.footer-grid{display:grid;grid-template-columns:1.4fr .6fr;gap:40px}
.site-footer p{margin:8px 0;color:rgba(255,255,255,.72)}
.footer-disclaimer{font-size:13px}
.footer-links{display:grid;gap:12px;align-content:start}
.footer-links a{color:#fff;text-decoration:underline}

.modal,.gallery-modal{
  position:fixed;
  inset:0;
  z-index:100;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(8,22,28,.68);
}
.modal.active,.gallery-modal.active{display:flex}
.modal-box{
  position:relative;
  width:min(780px,100%);
  max-height:92vh;
  overflow:auto;
  background:#fff;
  border-radius:28px;
  padding:32px;
}
.modal-box.small{width:min(460px,100%)}
.modal-close,.gallery-close{
  position:absolute;
  top:14px;
  right:16px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#eef5f4;
  color:var(--deep);
  font-size:28px;
}
.modal form{display:grid;gap:12px}
.modal input,.modal select{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  padding:15px;
  background:#fff;
}
.modal .consent,
.modal .form-consent{
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  width:100%;
  max-width:100%;
  gap:8px;
  text-align:left;
}
.modal .consent input[type="checkbox"],
.modal .form-consent input[type="checkbox"]{
  width:16px;
  height:16px;
  min-width:16px;
  flex:0 0 16px;
  margin:2px 0 0;
  padding:0;
}
.modal .consent span,
.modal .form-consent span{
  display:block;
  flex:1 1 auto;
  min-width:0;
  max-width:100%;
  overflow-wrap:normal;
  word-break:normal;
}
.gallery-inner{max-width:min(900px,90vw);max-height:86vh;text-align:center}
.gallery-inner img{max-width:100%;max-height:80vh;object-fit:contain;border-radius:18px;background:#fff}
.gallery-counter{margin-top:14px;color:#fff;font-weight:900}
.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:var(--deep);
  font-size:44px;
  line-height:1;
}
.gallery-arrow.prev{left:24px}
.gallery-arrow.next{right:24px}

.legal-page{background:linear-gradient(180deg,#f7fbfb 0%,#fff 100%)}
.legal-container{
  max-width:920px;
  padding:34px;
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  box-shadow:var(--shadow);
}
.legal-container > p:first-child{
  color:var(--text);
  font-size:32px;
  line-height:1.12;
  letter-spacing:-.04em;
  font-weight:900;
}
.legal-container p{font-size:15px;line-height:1.65}

@media(max-width:1040px){
  .nav{display:none}
  .burger{display:block}
  .mobile-menu.active{
    display:grid;
    position:absolute;
    top:78px;
    left:0;
    right:0;
    padding:16px 20px;
    gap:14px;
    border-bottom:1px solid var(--line);
    background:#fff;
    font-weight:900;
  }
  .mobile-menu-cta{
    width:calc(100% - 32px);
    min-height:52px;
    margin:10px 16px 4px;
    border:0;
    border-radius:16px;
    background:var(--brand);
    color:#fff;
    font-weight:900;
    box-shadow:0 14px 30px rgba(31,79,95,.18);
  }
  .mobile-menu-phone{
    width:calc(100% - 32px);
    min-height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:4px 16px 14px;
    border:1px solid rgba(31,79,95,.16);
    border-radius:16px;
    background:#fff;
    color:var(--brand);
    font-weight:900;
  }
  .hero-grid,.two-col,.expert-grid,.final-grid{grid-template-columns:1fr}
  .hero-card{max-width:620px}
  .expert-photo{height:auto}
  .cards.three,.video-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr}
}

@media(max-width:980px){
  .intro-proof-layout{grid-template-columns:1fr;gap:26px}
  .intro-proof-side{padding-top:0}
}

@media(max-width:900px){
  .feature-top{grid-template-columns:1fr}
  .photo-card.feature-photo.feature-photo-landscape{
    width:100%;
    max-width:100%;
    height:auto;
    min-height:0;
    aspect-ratio:16 / 10;
    margin-left:0;
  }
  .photo-card.feature-photo.feature-photo-landscape img{height:100%}
  .hero-content{justify-content:flex-start}
}

@media(max-width:767px){
  .expert-trust-caption{margin:18px 0 10px;font-size:17px}
  .expert-badges{gap:10px;margin-bottom:20px}
  .expert-badge img{width:88px}
}

@media(max-width:760px){
  .final-confidence-list{grid-template-columns:1fr}
}

@media(max-width:680px){
  .container{width:min(100% - 24px,1180px)}
  .section{padding:62px 0}
  h1{font-size:34px;line-height:1.12;margin-bottom:18px}
  h2{font-size:32px}
  p{line-height:1.52}
  .hero .lead{font-size:21px;font-weight:500;line-height:1.38;margin-bottom:14px}
  .hero-note{font-size:18px;font-weight:500;line-height:1.38;margin-bottom:22px}
  .section-head p,
  .feature-copy p,
  .intro-proof-copy p,
  .two-col p,
  .calm-card p,
  .note-cta p,
  .final-cta p{line-height:1.48}
  .cards article p{line-height:1.42}
  .header-inner{height:68px;gap:10px}
  .brand-logo{width:46px;height:46px;flex-basis:46px;border-radius:15px}
  .brand-text{display:none}
  .header-phone{display:none}
  .mobile-header-actions{display:flex;align-items:center;gap:8px}
  .mobile-header-phone{
    width:40px;
    height:40px;
    flex:0 0 40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(31,79,95,.16);
    border-radius:13px;
    background:#fff;
    color:var(--brand);
    box-shadow:0 8px 18px rgba(18,51,63,.06);
  }
  .mobile-header-phone svg{width:19px;height:19px;fill:currentColor;display:block}
  .mobile-header-cta{
    min-height:44px;
    padding:0 18px;
    border-radius:16px;
    font-size:13px;
    line-height:1;
  }
  .mobile-menu.active{top:68px}
  .hero{
    padding-top:36px;
    padding-bottom:34px;
  }
  .hero-grid{grid-template-columns:1fr}
  .hero-content{
    min-height:calc(100svh - 68px - 70px);
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .hero-card{
    margin-top:34px;
  }
  .hero-actions,.note-cta{display:grid}
  .cards.two,.cards.three{grid-template-columns:1fr}
  .review-grid,
  .video-grid{
    display:flex;
    gap:14px;
    overflow-x:auto;
    overscroll-behavior-x:contain;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding-bottom:8px;
  }
  .review-grid::-webkit-scrollbar,
  .video-grid::-webkit-scrollbar{display:none}
  .review-grid,
  .video-grid{scrollbar-width:none}
  .review-dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:7px;
    width:min(100% - 24px,1180px);
    margin:12px auto 0;
  }
  .review-dot{
    width:7px;
    height:7px;
    min-width:7px;
    padding:0;
    border:0;
    border-radius:999px;
    background:rgba(31,79,95,.22);
    transition:width .18s ease, background .18s ease;
  }
  .review-dot.active{
    width:20px;
    background:var(--brand);
  }
  .review-card,
  .video-grid iframe{
    flex:0 0 100%;
    width:100%;
    scroll-snap-align:center;
    scroll-snap-stop:always;
  }
  .photo-card{min-height:260px}
  .review-card img{height:auto;max-height:72vh;object-fit:contain}
  .big-phone{font-size:28px}
  .gallery-arrow{width:44px;height:44px;font-size:34px}
  .gallery-arrow.prev{left:8px}
  .gallery-arrow.next{right:8px}
  .modal-box{padding:26px 18px}
  .final-card img{height:180px}
  .intro-proof-stat{grid-template-columns:1fr;gap:12px}
  .intro-proof-stat-num{font-size:28px}
  .intro-proof-stat-text{font-size:16px}
  .legal-container{padding:24px 18px;border-radius:22px}
  .legal-container > p:first-child{font-size:26px}
}

@media(max-width:390px){
  .mobile-header-cta{min-height:42px;padding:0 14px;font-size:12px}
  .mobile-header-phone{width:38px;height:38px;flex-basis:38px}
}

/* Hard mobile header fix */
@media(max-width:680px){
  .site-header .header-inner{
    display:flex;
    align-items:center;
    height:68px;
    gap:8px;
    overflow:visible;
  }
  .site-header .brand{
    flex:0 1 auto;
    min-width:0;
    margin-right:auto;
  }
  .site-header .brand-logo{
    width:46px !important;
    height:46px !important;
    min-width:46px !important;
    max-width:46px !important;
    flex:0 0 46px !important;
  }
  .site-header .mobile-header-actions{
    display:flex !important;
    align-items:center;
    justify-content:flex-end;
    gap:8px;
    flex:0 0 auto;
    min-width:0;
  }
  .site-header .mobile-header-phone{
    width:40px !important;
    height:40px !important;
    min-width:40px !important;
    max-width:40px !important;
    flex:0 0 40px !important;
    min-height:40px !important;
    max-height:40px !important;
    padding:0 !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    border-radius:13px;
    overflow:hidden;
    line-height:1;
  }
  .site-header .mobile-header-phone svg{
    width:19px !important;
    height:19px !important;
    min-width:19px !important;
    max-width:19px !important;
    min-height:19px !important;
    max-height:19px !important;
    flex:0 0 19px !important;
    display:block !important;
    fill:currentColor;
    transform:none !important;
  }
  .site-header .mobile-header-phone svg path{
    fill:currentColor;
  }
  .site-header .mobile-header-cta{
    flex:0 1 auto;
    min-width:0;
    max-width:142px;
    min-height:42px;
    padding:0 12px;
    font-size:12px;
    white-space:nowrap;
  }
  .site-header .burger{
    flex:0 0 42px;
    width:42px;
    height:42px;
    min-width:42px;
    padding:8px;
  }
}

@media(max-width:390px){
  .site-header .mobile-header-phone{
    width:38px !important;
    height:38px !important;
    min-width:38px !important;
    max-width:38px !important;
    flex-basis:38px !important;
    min-height:38px !important;
    max-height:38px !important;
  }
  .site-header .mobile-header-phone svg{
    width:18px !important;
    height:18px !important;
    min-width:18px !important;
    max-width:18px !important;
    min-height:18px !important;
    max-height:18px !important;
    flex-basis:18px !important;
  }
  .site-header .mobile-header-cta{
    max-width:128px;
    min-height:40px;
    padding:0 10px;
    font-size:11px;
  }
}

/* Reviews visibility: desktop shows 3, mobile swipes all */
.review-cases .review-grid .review-card:nth-child(n+4){
  display:none;
}
.review-cases .review-dots{
  display:none;
}

@media(max-width:680px){
  .review-cases .review-grid{
    display:flex !important;
    grid-template-columns:none !important;
    gap:14px;
    overflow-x:auto;
    overscroll-behavior-x:contain;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding-bottom:8px;
  }
  .review-cases .review-grid::-webkit-scrollbar{display:none}
  .review-cases .review-grid{scrollbar-width:none}
  .review-cases .review-grid .review-card,
  .review-cases .review-grid .review-card:nth-child(n+4){
    display:block !important;
    flex:0 0 100% !important;
    width:100% !important;
    max-width:100% !important;
    scroll-snap-align:center;
    scroll-snap-stop:always;
  }
  .review-cases .review-card img{
    height:auto !important;
    max-height:72vh;
    object-fit:contain;
  }
  .review-cases .review-dots{
    display:flex !important;
    justify-content:center;
    align-items:center;
    gap:7px;
    width:min(100% - 24px,1180px);
    margin:12px auto 0;
  }
  .review-cases .review-dot{
    width:7px;
    height:7px;
    min-width:7px;
    padding:0;
    border:0;
    border-radius:999px;
    background:rgba(31,79,95,.22);
    transition:width .18s ease, background .18s ease;
  }
  .review-cases .review-dot.active{
    width:20px;
    background:var(--brand);
  }
}

/* iPhone mobile optimization */
html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body{
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
  padding-left:env(safe-area-inset-left);
  padding-right:env(safe-area-inset-right);
}

.site-header{
  padding-top:env(safe-area-inset-top);
}

@supports(padding:max(0px)){
  .site-header{
    padding-top:max(0px, env(safe-area-inset-top));
  }
}

img,
video,
iframe,
svg{
  max-width:100%;
}

input,
select,
textarea,
button{
  -webkit-appearance:none;
  appearance:none;
}

input[type="checkbox"]{
  -webkit-appearance:auto;
  appearance:auto;
}

@media(max-width:680px){
  .container{
    width:min(100% - 24px, 1180px);
  }

  .site-header .container{
    width:min(100% - 20px, 1180px);
  }

  .site-header{
    left:0;
    right:0;
  }

  .site-header .header-inner{
    min-width:0;
    width:100%;
  }

  .site-header .brand,
  .site-header .mobile-header-actions,
  .site-header .burger{
    min-width:0;
  }

  .site-header .mobile-header-cta{
    max-width:138px;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .mobile-menu.active{
    top:calc(68px + env(safe-area-inset-top));
    padding-left:max(20px, env(safe-area-inset-left));
    padding-right:max(20px, env(safe-area-inset-right));
  }

  .hero{
    min-height:auto;
    padding-top:34px;
    padding-bottom:44px;
  }

  .hero-content{
    min-height:calc(100svh - 68px - env(safe-area-inset-top) - 84px);
  }

  @supports not (height:100svh){
    .hero-content{
      min-height:calc(100vh - 68px - 84px);
    }
  }

  .hero-grid,
  .feature-unified,
  .final-grid,
  .expert-grid,
  .two-col,
  .intro-proof-layout{
    min-width:0;
  }

  .hero-card,
  .photo-card,
  .final-card,
  .calm-card,
  .cards article,
  .review-card{
    max-width:100%;
  }

  .photo-card,
  .expert-photo,
  .hero-card,
  .final-card{
    border-radius:24px;
  }

  .modal,
  .gallery-modal{
    padding:
      calc(14px + env(safe-area-inset-top))
      max(12px, env(safe-area-inset-right))
      calc(14px + env(safe-area-inset-bottom))
      max(12px, env(safe-area-inset-left));
  }

  .modal-box{
    width:min(100%, 460px);
    max-height:calc(100svh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 28px);
    padding:26px 18px;
    border-radius:24px;
  }

  @supports not (height:100svh){
    .modal-box{
      max-height:calc(100vh - 28px);
    }
  }

  .modal input,
  .modal select,
  .modal textarea,
  .inline-lead-form input,
  .inline-lead-form select,
  .inline-lead-form textarea{
    font-size:16px;
  }

  .modal-close,
  .gallery-close{
    width:40px;
    height:40px;
    font-size:26px;
  }

  .gallery-inner{
    max-width:calc(100vw - 28px - env(safe-area-inset-left) - env(safe-area-inset-right));
    max-height:calc(100svh - 120px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }

  .gallery-inner img{
    max-height:calc(100svh - 150px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  }

  @supports not (height:100svh){
    .gallery-inner,
    .gallery-inner img{
      max-height:calc(100vh - 150px);
    }
  }

  .gallery-arrow{
    width:40px;
    height:40px;
    font-size:30px;
  }

  .gallery-arrow.prev{
    left:max(6px, env(safe-area-inset-left));
  }

  .gallery-arrow.next{
    right:max(6px, env(safe-area-inset-right));
  }

  .review-cases .review-grid,
  .video-grid{
    padding-left:0;
    padding-right:0;
    touch-action:pan-x pan-y;
  }

  .review-cases .review-grid .review-card,
  .video-grid iframe{
    min-width:100%;
  }

  .review-cases .review-dots{
    flex-wrap:wrap;
    max-width:calc(100% - 24px);
  }

  .video-grid iframe{
    aspect-ratio:16 / 9;
  }

  .final-card{
    padding:16px;
  }

  .final-card .final-lead-form{
    width:100%;
  }

  .form-consent,
  .consent{
    align-items:flex-start;
  }

  .form-consent span,
  .consent span{
    overflow-wrap:normal;
    word-break:normal;
  }

  .site-footer{
    padding-bottom:calc(44px + env(safe-area-inset-bottom));
  }
}

@media(max-width:430px){
  h1{
    font-size:32px;
  }

  h2{
    font-size:29px;
  }

  .hero .lead{
    font-size:20px;
  }

  .hero-note{
    font-size:17px;
  }

  .site-header .mobile-header-cta{
    max-width:130px;
    padding:0 10px;
    font-size:11px;
  }

  .big-phone{
    font-size:25px;
  }
}

@media(max-width:380px){
  .container{
    width:min(100% - 20px, 1180px);
  }

  .site-header .container{
    width:min(100% - 16px, 1180px);
  }

  .site-header .mobile-header-phone{
    width:36px !important;
    height:36px !important;
    min-width:36px !important;
    max-width:36px !important;
    flex-basis:36px !important;
    min-height:36px !important;
    max-height:36px !important;
  }

  .site-header .mobile-header-phone svg{
    width:17px !important;
    height:17px !important;
    min-width:17px !important;
    max-width:17px !important;
    min-height:17px !important;
    max-height:17px !important;
    flex-basis:17px !important;
  }

  .site-header .mobile-header-cta{
    max-width:118px;
    min-height:38px;
    font-size:10.5px;
  }

  .site-header .burger{
    width:38px;
    height:38px;
    min-width:38px;
    flex-basis:38px;
    padding:7px;
  }

  h1{
    font-size:30px;
  }

  .hero .lead{
    font-size:19px;
  }

  .hero-note{
    font-size:16px;
  }
}

/* Reviews dots center and active state fix */
@media(max-width:680px){
  .review-cases .review-dots{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    flex-wrap:wrap;
    gap:7px;
    width:100% !important;
    max-width:100% !important;
    margin:14px auto 0 !important;
    padding:0 18px;
    text-align:center;
    box-sizing:border-box;
  }

  .review-cases .review-dot{
    display:block !important;
    flex:0 0 auto;
    width:7px;
    height:7px;
    min-width:7px;
    max-width:7px;
    padding:0;
    border:0;
    border-radius:999px;
    background:rgba(31,79,95,.24);
    opacity:1;
    transition:width .18s ease, max-width .18s ease, background .18s ease;
  }

  .review-cases .review-dot.active{
    width:22px;
    max-width:22px;
    background:var(--brand);
  }
}

/* Fears block white text fix */
.fears.bg-dark .cards article,
.fears.bg-dark .cards article *{
  color:#fff;
}

.fears.bg-dark .cards article p,
.fears.bg-dark .cards article span{
  color:rgba(255,255,255,.86);
}

.fears.bg-dark .cards article b,
.fears.bg-dark .cards article strong{
  color:#fff;
}

/* Video reviews dots fix */
.video-reviews .video-dots{
  display:none;
}

@media(max-width:680px){
  .video-reviews .video-dots{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    flex-wrap:wrap;
    gap:7px;
    width:100% !important;
    max-width:100% !important;
    margin:14px auto 0 !important;
    padding:0 18px;
    text-align:center;
    box-sizing:border-box;
  }

  .video-reviews .video-dot{
    display:block !important;
    flex:0 0 auto;
    width:7px;
    height:7px;
    min-width:7px;
    max-width:7px;
    padding:0;
    border:0;
    border-radius:999px;
    background:rgba(31,79,95,.24);
    opacity:1;
    transition:width .18s ease, max-width .18s ease, background .18s ease;
  }

  .video-reviews .video-dot.active{
    width:22px;
    max-width:22px;
    background:var(--brand);
  }
}

/* Mobile menu darker background fix */
@media(max-width:1040px){
  .mobile-menu.active{
    background:#eef5f2;
  }
}

/* Final CTA photo no crop fix */
.final-card img{
  height:280px;
  object-fit:contain;
  background:#fff;
}

@media(max-width:680px){
  .final-card img{
    height:auto;
    max-height:none;
    object-fit:contain;
  }
}

/* Video dots mobile position fix */
@media(max-width:680px){
  .video-reviews .video-grid{
    padding-bottom:0;
    margin-bottom:0;
  }

  .video-reviews .video-dots{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    margin:8px auto 22px !important;
    padding:0 18px !important;
    position:relative;
    z-index:2;
  }
}

/* Mobile hero refresh variant 1 */
@media(max-width:680px){
  .hero{
    padding-top:28px;
    padding-bottom:22px;
  }
  h1{
    margin-bottom:14px;
  }
  .hero .lead{
    font-size:20px;
    line-height:1.32;
    margin-bottom:8px;
  }
  .hero-note{
    font-size:17px;
    line-height:1.32;
    margin-bottom:16px;
  }
  .hero-actions{
    margin-top:14px;
  }
  .hero-content{
    min-height:auto;
    justify-content:flex-start;
  }
  .hero-card{
    margin-top:14px;
  }
}

@media(max-width:430px){
  h1{
    font-size:31px;
    line-height:1.12;
  }
  .hero .lead{
    font-size:19px;
  }
  .hero-note{
    font-size:16.5px;
  }
}

@media(max-width:380px){
  h1{
    font-size:29px;
  }
  .hero .lead{
    font-size:18px;
  }
  .hero-note{
    font-size:16px;
  }
}

/* Premium design upgrade */
:root{
  --premium-glow:rgba(39,126,137,.12);
  --premium-glow-strong:rgba(39,126,137,.18);
  --premium-gold:#e6b458;
}

body{
  background:
    radial-gradient(circle at 12% 8%, rgba(39,126,137,.06), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(230,180,88,.08), transparent 28%),
    linear-gradient(180deg,#f8fbfb 0%,#ffffff 36%,#f8fbfb 100%);
}

.section{
  position:relative;
  overflow:hidden;
}

.section::before{
  content:"";
  position:absolute;
  inset:auto auto 18px -90px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, var(--premium-glow), transparent 68%);
  pointer-events:none;
  opacity:.72;
  transform:translateZ(0);
}

.section.bg-dark::before{
  background:radial-gradient(circle, rgba(255,255,255,.10), transparent 68%);
  opacity:.55;
}

.site-header{
  transition:box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.site-header.scrolled{
  background:rgba(255,255,255,.96);
  box-shadow:0 16px 34px rgba(15,54,69,.08);
}

.btn{
  position:relative;
  overflow:hidden;
  transform:translateZ(0);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  box-shadow:0 18px 36px rgba(31,79,95,.18);
}

.btn-primary::after{
  content:"";
  position:absolute;
  top:-45%;
  left:-35%;
  width:34%;
  height:190%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transform:rotate(18deg) translateX(-180%);
  transition:transform .7s ease;
  pointer-events:none;
}

.btn-primary:hover::after{
  transform:rotate(18deg) translateX(520%);
}

.hero-card,
.photo-card,
.final-card,
.expert-photo,
.calm-card,
.cards article,
.review-card,
.expert-badge,
.mini-grid div,
.final-confidence-list > div{
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

@media(hover:hover){
  .hero-card:hover,
  .photo-card:hover,
  .final-card:hover,
  .expert-photo:hover,
  .calm-card:hover,
  .cards article:hover,
  .review-card:hover,
  .expert-badge:hover,
  .mini-grid div:hover,
  .final-confidence-list > div:hover{
    transform:translateY(-4px);
    box-shadow:0 22px 48px rgba(15,54,69,.12);
  }
}

.mini-grid div,
.final-confidence-list > div,
.cards article,
.calm-card{
  position:relative;
}

.mini-grid div::before,
.final-confidence-list > div::before,
.cards article::before,
.calm-card::before{
  content:"";
  display:inline-flex;
  width:30px;
  height:30px;
  margin-bottom:12px;
  border-radius:12px;
  background:
    linear-gradient(135deg, rgba(39,126,137,.16), rgba(39,126,137,.04)),
    url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%231f6f78' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
  box-shadow:0 10px 24px rgba(31,111,120,.12);
}

.bg-dark .cards article::before,
.bg-dark .calm-card::before{
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.05)),
    url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
  box-shadow:0 10px 24px rgba(255,255,255,.08);
}

.final-confidence-list > div::before{
  width:26px;
  height:26px;
  margin-bottom:10px;
  border-radius:10px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.06)),
    url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='white' stroke-width='2.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 17px 17px no-repeat;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 0 6px rgba(31,111,120,.08);
}

.eyebrow.light::before{
  background:#fff;
  box-shadow:0 0 0 6px rgba(255,255,255,.12);
}

.expert-badge img{
  transition:transform .25s ease, filter .25s ease;
}

@media(hover:hover){
  .expert-badge:hover img{
    transform:scale(1.04);
    filter:saturate(1.06);
  }
}

.review-dot,
.video-dot{
  cursor:pointer;
}

.reveal-on-scroll{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .62s ease, transform .62s ease;
  will-change:opacity, transform;
}

.reveal-on-scroll.is-visible{
  opacity:1;
  transform:none;
}

.reveal-delay-1{transition-delay:.08s}
.reveal-delay-2{transition-delay:.16s}
.reveal-delay-3{transition-delay:.24s}

.hero .eyebrow,
.hero h1,
.hero .lead,
.hero-note,
.hero-actions{
  animation:heroFadeUp .62s ease both;
}

.hero h1{animation-delay:.05s}
.hero .lead{animation-delay:.12s}
.hero-note{animation-delay:.18s}
.hero-actions{animation-delay:.25s}

@keyframes heroFadeUp{
  from{opacity:0;transform:translateY(16px)}
  to{opacity:1;transform:none}
}

.hero-card{
  animation:heroPhotoIn .72s ease .18s both;
}

@keyframes heroPhotoIn{
  from{opacity:0;transform:translateY(18px) scale(.985)}
  to{opacity:1;transform:none}
}

@media(max-width:680px){
  .section::before{
    width:160px;
    height:160px;
    left:-72px;
    bottom:10px;
  }

  .cards article::before,
  .calm-card::before,
  .mini-grid div::before{
    width:26px;
    height:26px;
    margin-bottom:10px;
    border-radius:10px;
    background-size:16px 16px;
  }

  .hero-card,
  .photo-card,
  .final-card,
  .expert-photo,
  .cards article,
  .calm-card{
    box-shadow:0 16px 36px rgba(15,54,69,.09);
  }

  .btn:hover{
    transform:none;
  }
}

@media(prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    animation:none !important;
    transition:none !important;
    scroll-behavior:auto !important;
  }

  .reveal-on-scroll{
    opacity:1 !important;
    transform:none !important;
  }
}

/* Premium background visible fix */
body{
  background:#f7fbfb;
}

.hero{
  background:
    radial-gradient(circle at 12% 18%, rgba(31,111,120,.10), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(230,180,88,.10), transparent 30%),
    linear-gradient(180deg,#f7fbfb 0%,#ffffff 78%);
}

.section:not(.bg-dark):not(.hero){
  background:
    radial-gradient(circle at 8% 18%, rgba(31,111,120,.055), transparent 30%),
    radial-gradient(circle at 92% 82%, rgba(230,180,88,.06), transparent 28%),
    #fff;
}

.section.bg-soft{
  background:
    radial-gradient(circle at 12% 16%, rgba(31,111,120,.075), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(230,180,88,.07), transparent 30%),
    #f3f8f6;
}

.section.bg-dark{
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.10), transparent 32%),
    radial-gradient(circle at 88% 78%, rgba(230,180,88,.10), transparent 30%),
    linear-gradient(135deg,#11313c 0%,#0b2028 100%);
}

.final-cta{
  background:
    radial-gradient(circle at 16% 16%, rgba(255,255,255,.12), transparent 32%),
    radial-gradient(circle at 86% 78%, rgba(230,180,88,.12), transparent 30%),
    linear-gradient(135deg,#11313c 0%,#0b2028 100%);
}

.section::before{
  display:none;
}

.section > .container{
  position:relative;
  z-index:1;
}

@media(max-width:680px){
  .hero{
    background:
      radial-gradient(circle at 14% 12%, rgba(31,111,120,.11), transparent 38%),
      radial-gradient(circle at 94% 34%, rgba(230,180,88,.08), transparent 34%),
      linear-gradient(180deg,#f7fbfb 0%,#ffffff 76%);
  }

  .section:not(.bg-dark):not(.hero){
    background:
      radial-gradient(circle at 10% 14%, rgba(31,111,120,.065), transparent 34%),
      radial-gradient(circle at 94% 80%, rgba(230,180,88,.055), transparent 32%),
      #fff;
  }

  .section.bg-soft{
    background:
      radial-gradient(circle at 12% 16%, rgba(31,111,120,.085), transparent 36%),
      radial-gradient(circle at 92% 82%, rgba(230,180,88,.065), transparent 34%),
      #f3f8f6;
  }
}

/* Final CTA dark background hard fix */
.section.final-cta,
.final-cta{
  background:
    radial-gradient(circle at 16% 16%, rgba(255,255,255,.12), transparent 32%),
    radial-gradient(circle at 86% 78%, rgba(230,180,88,.12), transparent 30%),
    linear-gradient(135deg,#11313c 0%,#0b2028 100%) !important;
  color:#fff !important;
}

.final-cta h2,
.final-cta .eyebrow,
.final-cta .eyebrow.light,
.final-cta .final-confidence-list b{
  color:#fff !important;
}

.final-cta p,
.final-cta .final-confidence-list span{
  color:rgba(255,255,255,.82) !important;
}

.final-cta .final-confidence-list > div{
  background:rgba(255,255,255,.08) !important;
  border-color:rgba(255,255,255,.14) !important;
}

.final-cta .final-card{
  background:#fff !important;
  color:var(--text) !important;
}

.final-cta .final-card *,
.final-cta .final-card input,
.final-cta .final-card a{
  color:inherit;
}

.final-cta .final-card .big-phone{
  color:var(--brand) !important;
}

.final-cta .final-card .btn,
.final-cta .final-card .btn *{
  color:#fff !important;
}

.final-cta .final-card .form-consent,
.final-cta .final-card .form-consent span,
.final-cta .final-card .form-consent a{
  color:var(--muted) !important;
}

.final-cta .final-card input{
  color:var(--text) !important;
  background:#fff !important;
}

.final-cta .final-card input::placeholder{
  color:#8b9ca3 !important;
}

@media(max-width:680px){
  .section.final-cta,
  .final-cta{
    background:
      radial-gradient(circle at 16% 14%, rgba(255,255,255,.13), transparent 36%),
      radial-gradient(circle at 90% 82%, rgba(230,180,88,.11), transparent 34%),
      linear-gradient(135deg,#11313c 0%,#0b2028 100%) !important;
  }
}

/* Hero mobile mid-screen positioning fix */
@media(max-width:680px){
  .hero{
    padding-top:24px;
    padding-bottom:24px;
  }
  .hero-content{
    min-height:calc(100svh - 68px - env(safe-area-inset-top) - 28px);
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding-bottom:20px;
  }
  @supports not (height:100svh){
    .hero-content{
      min-height:calc(100vh - 68px - 28px);
    }
  }
  h1{
    line-height:1.12;
    margin-bottom:20px;
  }
  .hero .lead{
    line-height:1.42;
    margin-bottom:16px;
  }
  .hero-note{
    line-height:1.42;
    margin-bottom:24px;
  }
  .hero-actions{
    margin-top:0;
  }
  .hero-card{
    margin-top:22px;
  }
}

@media(max-width:430px){
  h1{
    font-size:32px;
  }
  .hero .lead{
    font-size:19px;
    line-height:1.44;
  }
  .hero-note{
    font-size:16.5px;
    line-height:1.44;
  }
}

@media(max-width:380px){
  h1{
    font-size:30px;
  }
  .hero .lead{
    font-size:18px;
  }
  .hero-note{
    font-size:16px;
  }
}

/* Hero mobile even screen layout fix */
@media(max-width:680px){
  .hero{
    padding-top:22px;
    padding-bottom:20px;
  }

  .hero-grid{
    display:flex;
    flex-direction:column;
  }

  .hero-content{
    min-height:calc(100svh - 68px - env(safe-area-inset-top) - 22px);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding-top:0;
    padding-bottom:0;
  }

  @supports not (height:100svh){
    .hero-content{
      min-height:calc(100vh - 68px - 22px);
    }
  }

  .hero-content .eyebrow{
    margin-bottom:18px;
  }

  h1{
    line-height:1.14;
    margin-bottom:22px;
  }

  .hero .lead{
    line-height:1.44;
    margin-bottom:18px;
  }

  .hero-note{
    line-height:1.44;
    margin-bottom:0;
  }

  .hero-actions{
    margin-top:30px;
  }

  .hero-card{
    margin-top:20px;
  }
}

@media(max-width:430px){
  h1{
    font-size:31px;
    line-height:1.14;
  }

  .hero .lead{
    font-size:19px;
    line-height:1.44;
  }

  .hero-note{
    font-size:16.5px;
    line-height:1.44;
  }
}

@media(max-width:380px){
  h1{
    font-size:29px;
  }

  .hero .lead{
    font-size:18px;
  }

  .hero-note{
    font-size:16px;
  }

  .hero-content{
    min-height:calc(100svh - 68px - env(safe-area-inset-top) - 18px);
  }
}

/* Hero mobile larger line-height fix */
@media(max-width:680px){
  .hero h1{
    line-height:1.22 !important;
    letter-spacing:-.055em;
    margin-bottom:24px;
  }

  .hero .lead{
    line-height:1.58 !important;
    margin-bottom:20px;
  }

  .hero-note{
    line-height:1.58 !important;
    margin-bottom:0;
  }

  .hero-actions{
    margin-top:34px;
  }
}

@media(max-width:430px){
  .hero h1{
    line-height:1.21 !important;
  }

  .hero .lead,
  .hero-note{
    line-height:1.56 !important;
  }
}

@media(max-width:380px){
  .hero h1{
    line-height:1.2 !important;
  }

  .hero .lead,
  .hero-note{
    line-height:1.54 !important;
  }
}

/* Hero mobile button raised layout fix */
@media(max-width:680px){
  .hero-content{
    justify-content:flex-start !important;
    padding-bottom:clamp(72px, 11vh, 112px) !important;
  }

  .hero-content .eyebrow{
    margin-bottom:clamp(18px, 2.6vh, 24px) !important;
  }

  .hero h1{
    margin-bottom:clamp(22px, 3.4vh, 34px) !important;
  }

  .hero .lead{
    margin-bottom:clamp(18px, 3vh, 28px) !important;
  }

  .hero-note{
    margin-bottom:0 !important;
  }

  .hero-actions{
    margin-top:clamp(28px, 5.4vh, 50px) !important;
  }
}

@media(max-width:430px){
  .hero-content{
    padding-bottom:clamp(76px, 12vh, 118px) !important;
  }

  .hero h1{
    margin-bottom:clamp(22px, 3.5vh, 34px) !important;
  }

  .hero .lead{
    margin-bottom:clamp(18px, 3.1vh, 28px) !important;
  }

  .hero-actions{
    margin-top:clamp(30px, 5.8vh, 52px) !important;
  }
}

/* Hero mobile abstract background replacement */
@media(max-width:680px){
  .hero::before,
  .hero::after{
    display:none !important;
    content:none !important;
    background:none !important;
  }

  .hero{
    background-image:url('images/ui/hero-mobile-abstract-bg.svg') !important;
    background-repeat:no-repeat !important;
    background-position:center top !important;
    background-size:cover !important;
  }
}

/* Hero mobile geometry correction after abstract bg */
@media(max-width:680px){
  .hero{
    min-height:calc(100svh - 68px - env(safe-area-inset-top));
    padding-top:22px !important;
    padding-bottom:22px !important;
  }

  .hero-grid{
    min-height:auto !important;
  }

  .hero-content{
    min-height:calc(100svh - 68px - env(safe-area-inset-top) - 148px) !important;
    justify-content:flex-start !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
  }

  @supports not (height:100svh){
    .hero{
      min-height:calc(100vh - 68px);
    }

    .hero-content{
      min-height:calc(100vh - 68px - 148px) !important;
    }
  }

  .hero-content .eyebrow{
    margin-bottom:22px !important;
  }

  .hero h1{
    margin-bottom:34px !important;
  }

  .hero .lead{
    margin-bottom:28px !important;
  }

  .hero-note{
    margin-bottom:0 !important;
  }

  .hero-actions{
    margin-top:38px !important;
  }

  .hero-card{
    margin-top:24px !important;
  }
}

@media(max-width:430px){
  .hero-content{
    min-height:calc(100svh - 68px - env(safe-area-inset-top) - 156px) !important;
  }

  .hero-content .eyebrow{
    margin-bottom:20px !important;
  }

  .hero h1{
    margin-bottom:30px !important;
  }

  .hero .lead{
    margin-bottom:26px !important;
  }

  .hero-actions{
    margin-top:36px !important;
  }
}

@media(max-width:380px){
  .hero-content{
    min-height:calc(100svh - 68px - env(safe-area-inset-top) - 146px) !important;
  }

  .hero h1{
    margin-bottom:26px !important;
  }

  .hero .lead{
    margin-bottom:22px !important;
  }

  .hero-actions{
    margin-top:32px !important;
  }
}

/* Hero mobile final balanced layout fix */
@media(max-width:680px){
  .hero{
    min-height:calc(100svh - 68px - env(safe-area-inset-top)) !important;
    padding-top:18px !important;
    padding-bottom:18px !important;
  }

  .hero-grid{
    min-height:auto !important;
  }

  .hero-content{
    min-height:calc(100svh - 68px - env(safe-area-inset-top) - 120px) !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-start !important;
    padding-top:0 !important;
    padding-bottom:clamp(56px, 11vh, 92px) !important;
  }

  @supports not (height:100svh){
    .hero{
      min-height:calc(100vh - 68px) !important;
    }
    .hero-content{
      min-height:calc(100vh - 68px - 120px) !important;
    }
  }

  .hero-content .eyebrow{
    margin-bottom:18px !important;
  }

  .hero h1{
    margin-bottom:28px !important;
  }

  .hero .lead{
    margin-bottom:20px !important;
  }

  .hero-note{
    margin-bottom:0 !important;
  }

  .hero-actions{
    margin-top:auto !important;
    padding-top:32px !important;
  }

  .hero-card{
    margin-top:18px !important;
  }
}

@media(max-width:430px){
  .hero-content{
    min-height:calc(100svh - 68px - env(safe-area-inset-top) - 126px) !important;
    padding-bottom:clamp(60px, 12vh, 96px) !important;
  }

  .hero h1{
    margin-bottom:26px !important;
  }

  .hero .lead{
    margin-bottom:18px !important;
  }

  .hero-actions{
    padding-top:28px !important;
  }
}

@media(max-width:380px){
  .hero-content{
    min-height:calc(100svh - 68px - env(safe-area-inset-top) - 116px) !important;
    padding-bottom:clamp(54px, 10vh, 86px) !important;
  }

  .hero h1{
    margin-bottom:22px !important;
  }

  .hero .lead{
    margin-bottom:16px !important;
  }

  .hero-actions{
    padding-top:24px !important;
  }
}

/* Hero mobile title lower fix */
@media(max-width:680px){
  .hero-content{
    padding-top:clamp(34px, 6vh, 56px) !important;
  }
}

@media(max-width:430px){
  .hero-content{
    padding-top:clamp(38px, 6.5vh, 62px) !important;
  }
}

@media(max-width:380px){
  .hero-content{
    padding-top:clamp(30px, 5vh, 48px) !important;
  }
}

/* Soft volume and motion refresh */
:root{
  --shadow-soft-volume:0 18px 46px rgba(15,54,69,.095), 0 2px 10px rgba(15,54,69,.035);
  --shadow-soft-hover:0 26px 64px rgba(15,54,69,.135), 0 4px 14px rgba(15,54,69,.045);
  --shadow-soft-small:0 12px 30px rgba(15,54,69,.075);
  --surface-glass:rgba(255,255,255,.76);
  --surface-border:rgba(31,79,95,.105);
}

.section:not(.hero):not(.final-cta){
  isolation:isolate;
}

.section:not(.hero):not(.final-cta)::after{
  content:"";
  position:absolute;
  inset:10% auto auto 50%;
  width:min(520px,70vw);
  height:min(520px,70vw);
  border-radius:999px;
  background:radial-gradient(circle, rgba(31,111,120,.045), transparent 68%);
  transform:translateX(-50%);
  pointer-events:none;
  z-index:0;
}

.bg-dark.section::after,
.final-cta::after{
  display:none;
}

.feature-unified,
.intro-proof-layout,
.expert-grid{
  position:relative;
  border:1px solid var(--surface-border);
  border-radius:34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.70)),
    radial-gradient(circle at 8% 6%, rgba(31,111,120,.055), transparent 38%);
  box-shadow:var(--shadow-soft-volume);
  padding:clamp(24px,3.2vw,38px);
}

.bg-soft .feature-unified,
.bg-soft .intro-proof-layout{
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,255,255,.78)),
    radial-gradient(circle at 92% 8%, rgba(230,180,88,.065), transparent 34%);
}

.feature-unified::before,
.intro-proof-layout::before,
.expert-grid::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(135deg, rgba(255,255,255,.82), transparent 42%);
  pointer-events:none;
  opacity:.72;
}

.feature-unified > *,
.intro-proof-layout > *,
.expert-grid > *{
  position:relative;
  z-index:1;
}

.hero-card,
.photo-wrap,
.photo-card,
.calm-card,
.cards article,
.review-card,
.video-grid iframe,
.expert-photo,
.expert-badge,
.note-cta,
.intro-proof-stat,
.final-card,
.mini-grid div{
  box-shadow:var(--shadow-soft-volume);
}

.mini-grid div,
.calm-card,
.cards article,
.review-card,
.note-cta,
.final-confidence-list > div{
  border-color:rgba(31,79,95,.12);
}

.calm-card,
.cards article,
.note-cta,
.mini-grid div{
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,252,251,.90));
}

.photo-card,
.photo-wrap,
.expert-photo,
.review-card{
  transform:translateZ(0);
}

.photo-card img,
.photo-wrap img,
.expert-photo img,
.review-card img,
.final-card img{
  transition:transform .55s cubic-bezier(.2,.8,.2,1), filter .55s cubic-bezier(.2,.8,.2,1);
}

@media(hover:hover){
  .feature-unified:hover,
  .intro-proof-layout:hover,
  .expert-grid:hover{
    box-shadow:var(--shadow-soft-hover);
  }

  .photo-card:hover img,
  .photo-wrap:hover img,
  .expert-photo:hover img,
  .review-card:hover img,
  .final-card:hover img{
    transform:scale(1.018);
    filter:saturate(1.03) contrast(1.01);
  }

  .btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 22px 44px rgba(31,79,95,.22);
  }

  .btn-light:hover,
  .mobile-menu-cta:hover{
    transform:translateY(-2px);
  }
}

.btn:active{
  transform:translateY(0) scale(.992);
}

.reveal-on-scroll{
  opacity:0;
  transform:translateY(18px) scale(.992);
  transition:
    opacity .74s cubic-bezier(.2,.8,.2,1),
    transform .74s cubic-bezier(.2,.8,.2,1);
}

.reveal-on-scroll.is-visible{
  opacity:1;
  transform:translateY(0) scale(1);
}

.reveal-delay-1{transition-delay:.06s}
.reveal-delay-2{transition-delay:.12s}
.reveal-delay-3{transition-delay:.18s}

.site-header.scrolled{
  box-shadow:0 14px 34px rgba(15,54,69,.085), 0 1px 0 rgba(31,79,95,.05);
}

@media(max-width:680px){
  .section:not(.hero):not(.final-cta)::after{
    width:320px;
    height:320px;
    opacity:.7;
  }

  .feature-unified,
  .intro-proof-layout,
  .expert-grid{
    border-radius:26px;
    padding:22px;
    box-shadow:0 14px 34px rgba(15,54,69,.075);
  }

  .hero-card,
  .photo-wrap,
  .photo-card,
  .calm-card,
  .cards article,
  .review-card,
  .video-grid iframe,
  .expert-photo,
  .expert-badge,
  .note-cta,
  .intro-proof-stat,
  .final-card,
  .mini-grid div{
    box-shadow:0 13px 30px rgba(15,54,69,.075);
  }
}

@media(prefers-reduced-motion:reduce){
  .photo-card img,
  .photo-wrap img,
  .expert-photo img,
  .review-card img,
  .final-card img,
  .reveal-on-scroll{
    transition:none !important;
    transform:none !important;
  }
}

/* Fears block cards contrast fix after soft volume update */
.fears.bg-dark .fear-cards article,
.fears.bg-dark .cards.fear-cards article{
  background:
    linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.055)) !important;
  border:1px solid rgba(255,255,255,.16) !important;
  box-shadow:0 18px 44px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.10) !important;
}

.fears.bg-dark .fear-cards article h3{
  color:#fff !important;
}

.fears.bg-dark .fear-cards article p{
  color:rgba(255,255,255,.80) !important;
}

@media(max-width:680px){
  .fears.bg-dark .fear-cards article,
  .fears.bg-dark .cards.fear-cards article{
    box-shadow:0 13px 30px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.10) !important;
  }
}


/* Header text logotype instead of image logo */
@media(max-width:680px){
  .site-header .brand{
    gap:8px;
  }

  .site-header .brand-logotype{
    width:108px !important;
    height:42px !important;
    min-width:108px !important;
    max-width:108px !important;
    flex:0 0 108px !important;
    padding:6px 8px !important;
    border-radius:13px;
    font-size:9.7px;
    line-height:1.04;
    letter-spacing:.035em;
    box-shadow:0 8px 20px rgba(18,51,63,.075), inset 0 1px 0 rgba(255,255,255,.72);
  }
}

@media(max-width:390px){
  .site-header .brand-logotype{
    width:92px !important;
    min-width:92px !important;
    max-width:92px !important;
    flex-basis:92px !important;
    font-size:8.4px;
    letter-spacing:.025em;
    padding-left:7px !important;
    padding-right:7px !important;
  }
}

@media(max-width:360px){
  .site-header .brand-logotype{
    width:84px !important;
    min-width:84px !important;
    max-width:84px !important;
    flex-basis:84px !important;
    font-size:7.7px;
    letter-spacing:.01em;
    padding-left:6px !important;
    padding-right:6px !important;
  }
}


/* Mobile hero card redesign: clean background + compact meaning blocks */
.hero-title-card{
  display:contents;
}

.hero-mobile-points{
  display:none;
}

@media(max-width:680px){
  .hero::before,
  .hero::after{
    display:none !important;
    content:none !important;
    background:none !important;
  }

  .hero{
    min-height:auto !important;
    padding-top:18px !important;
    padding-bottom:28px !important;
    background:linear-gradient(180deg,#eef5f4 0%,#f8fbfb 58%,#ffffff 100%) !important;
    background-image:linear-gradient(180deg,#eef5f4 0%,#f8fbfb 58%,#ffffff 100%) !important;
  }

  .hero-grid{
    gap:18px !important;
  }

  .hero-content{
    min-height:auto !important;
    padding-top:0 !important;
    padding-bottom:0 !important;
    justify-content:flex-start !important;
  }

  .hero-title-card{
    display:block;
    position:relative;
    overflow:hidden;
    padding:24px 22px 26px;
    border-radius:30px;
    border:1px solid rgba(31,79,95,.10);
    background:
      linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,252,251,.92)),
      radial-gradient(circle at 92% 10%, rgba(31,111,120,.06), transparent 38%);
    box-shadow:0 18px 46px rgba(15,54,69,.095), 0 2px 10px rgba(15,54,69,.035);
  }

  .hero-title-card::after{
    content:"";
    position:absolute;
    right:-62px;
    bottom:-72px;
    width:170px;
    height:170px;
    border-radius:50%;
    background:rgba(31,79,95,.045);
    pointer-events:none;
  }

  .hero-title-card .eyebrow{
    display:flex;
    align-items:center;
    gap:9px;
    margin:0 0 17px !important;
    text-transform:none;
    letter-spacing:-.01em;
    font-size:14px;
    line-height:1.25;
    color:var(--brand);
  }

  .hero-title-card .eyebrow::before{
    content:"";
    width:8px;
    height:8px;
    flex:0 0 8px;
    border-radius:50%;
    background:var(--brand);
    box-shadow:0 0 0 6px rgba(31,79,95,.08);
  }

  .hero-title-card h1{
    position:relative;
    z-index:1;
    margin:0 !important;
    font-size:clamp(29px, 8vw, 36px);
    line-height:1.18 !important;
    letter-spacing:-.055em;
  }

  .hero .lead,
  .hero-note{
    display:none !important;
  }

  .hero-mobile-points{
    display:grid;
    gap:10px;
    margin-top:12px;
  }

  .hero-mobile-points div{
    min-height:54px;
    display:flex;
    align-items:center;
    padding:13px 16px;
    border-radius:18px;
    border:1px solid rgba(31,79,95,.09);
    background:rgba(255,255,255,.88);
    box-shadow:0 10px 26px rgba(15,54,69,.06);
    color:#284149;
    font-size:15px;
    line-height:1.3;
    font-weight:700;
  }

  .hero-actions{
    margin-top:16px !important;
    padding-top:0 !important;
  }

  .hero-actions .btn{
    width:100%;
  }

  .hero-card{
    margin-top:4px !important;
  }
}

@media(max-width:380px){
  .hero-title-card{
    padding:22px 20px 24px;
    border-radius:26px;
  }

  .hero-title-card h1{
    font-size:28px;
    line-height:1.17 !important;
  }

  .hero-mobile-points div{
    min-height:50px;
    padding:12px 14px;
    font-size:14.5px;
  }
}

/* Mobile header spacing and fixed scroll behavior */
@media(max-width:680px){
  body{
    padding-top:calc(68px + env(safe-area-inset-top)) !important;
  }

  .site-header{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    z-index:9999 !important;
    background:rgba(255,255,255,.96) !important;
    box-shadow:0 12px 28px rgba(15,54,69,.07);
    transform:translateZ(0);
  }

  .site-header .container{
    width:100% !important;
    padding-left:max(18px, env(safe-area-inset-left)) !important;
    padding-right:max(10px, env(safe-area-inset-right)) !important;
  }

  .site-header .brand{
    margin-left:4px !important;
  }

  .mobile-menu.active{
    position:fixed !important;
    top:calc(68px + env(safe-area-inset-top)) !important;
    left:0 !important;
    right:0 !important;
    z-index:9998 !important;
  }
}

@media(max-width:390px){
  .site-header .container{
    padding-left:max(16px, env(safe-area-inset-left)) !important;
    padding-right:max(8px, env(safe-area-inset-right)) !important;
  }

  .site-header .brand{
    margin-left:3px !important;
  }
}

/* Mobile header logotype two-line fix */
@media(max-width:680px){
  .site-header{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    z-index:9999 !important;
    background:rgba(255,255,255,.96) !important;
    box-shadow:0 12px 28px rgba(15,54,69,.07) !important;
    transform:translateZ(0);
  }

  body{
    padding-top:calc(68px + env(safe-area-inset-top)) !important;
  }

  .site-header .container{
    width:100% !important;
    padding-left:max(20px, env(safe-area-inset-left)) !important;
    padding-right:max(10px, env(safe-area-inset-right)) !important;
  }

  .site-header .brand{
    display:flex !important;
    align-items:center !important;
    gap:0 !important;
    margin-left:6px !important;
    margin-right:auto !important;
    flex:0 1 auto !important;
    min-width:0 !important;
  }

  .site-header .brand-logotype{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:center !important;
    width:108px !important;
    height:42px !important;
    min-width:108px !important;
    max-width:108px !important;
    flex:0 0 108px !important;
    padding:6px 8px !important;
    border-radius:13px !important;
    background:linear-gradient(135deg, rgba(31,79,95,.10), rgba(255,255,255,.86)) !important;
    border:1px solid rgba(31,79,95,.14) !important;
    box-shadow:0 8px 20px rgba(18,51,63,.075), inset 0 1px 0 rgba(255,255,255,.72) !important;
    color:var(--brand) !important;
    text-transform:uppercase !important;
    font-size:9.7px !important;
    font-weight:900 !important;
    line-height:1.04 !important;
    letter-spacing:.035em !important;
    white-space:normal !important;
    overflow:hidden !important;
  }

  .site-header .brand-logotype span{
    display:block !important;
    width:100% !important;
    line-height:1.04 !important;
    white-space:nowrap !important;
  }

  .mobile-menu.active{
    position:fixed !important;
    top:calc(68px + env(safe-area-inset-top)) !important;
    left:0 !important;
    right:0 !important;
    z-index:9998 !important;
  }
}

@media(max-width:390px){
  .site-header .container{
    padding-left:max(18px, env(safe-area-inset-left)) !important;
    padding-right:max(8px, env(safe-area-inset-right)) !important;
  }

  .site-header .brand{
    margin-left:5px !important;
  }

  .site-header .brand-logotype{
    width:96px !important;
    min-width:96px !important;
    max-width:96px !important;
    flex-basis:96px !important;
    font-size:8.7px !important;
    letter-spacing:.025em !important;
    padding-left:7px !important;
    padding-right:7px !important;
  }
}

@media(max-width:360px){
  .site-header .brand-logotype{
    width:88px !important;
    min-width:88px !important;
    max-width:88px !important;
    flex-basis:88px !important;
    font-size:7.9px !important;
    letter-spacing:.01em !important;
    padding-left:6px !important;
    padding-right:6px !important;
  }
}

/* Final mobile header + hero repair */
@media(max-width:680px){
  body{
    padding-top:calc(68px + env(safe-area-inset-top)) !important;
  }

  .site-header{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    z-index:9999 !important;
    background:rgba(255,255,255,.97) !important;
    border-bottom:1px solid rgba(18,51,63,.10) !important;
    box-shadow:0 10px 26px rgba(15,54,69,.07) !important;
    backdrop-filter:blur(14px) !important;
    -webkit-backdrop-filter:blur(14px) !important;
  }

  .site-header .header-inner{
    width:100% !important;
    height:68px !important;
    display:flex !important;
    align-items:center !important;
    gap:7px !important;
    padding-left:max(16px, env(safe-area-inset-left)) !important;
    padding-right:max(8px, env(safe-area-inset-right)) !important;
  }

  .site-header .brand{
    display:flex !important;
    align-items:center !important;
    flex:0 0 112px !important;
    width:112px !important;
    min-width:112px !important;
    max-width:112px !important;
    margin:0 auto 0 4px !important;
    overflow:visible !important;
  }

  .site-header .brand-text,
  .site-header .brand-logo{
    display:none !important;
  }

  .site-header .brand-logotype{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:center !important;
    width:112px !important;
    min-width:112px !important;
    max-width:112px !important;
    height:42px !important;
    padding:7px 9px !important;
    border-radius:14px !important;
    background:linear-gradient(135deg, rgba(31,79,95,.10), rgba(255,255,255,.92)) !important;
    border:1px solid rgba(31,79,95,.14) !important;
    box-shadow:0 8px 20px rgba(18,51,63,.075), inset 0 1px 0 rgba(255,255,255,.76) !important;
    color:var(--brand) !important;
    text-transform:uppercase !important;
    font-size:9.4px !important;
    font-weight:900 !important;
    line-height:1.08 !important;
    letter-spacing:.025em !important;
    white-space:normal !important;
    text-align:left !important;
    overflow:hidden !important;
  }

  .site-header .brand-logotype br{
    display:block !important;
    content:"" !important;
  }

  .site-header .mobile-header-actions{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:7px !important;
    flex:0 0 auto !important;
    min-width:0 !important;
  }

  .site-header .mobile-header-phone{
    width:38px !important;
    height:38px !important;
    flex:0 0 38px !important;
    border-radius:13px !important;
  }

  .site-header .mobile-header-cta{
    min-height:42px !important;
    padding:0 13px !important;
    border-radius:15px !important;
    font-size:12px !important;
    white-space:nowrap !important;
  }

  .site-header .burger{
    width:40px !important;
    height:40px !important;
    flex:0 0 40px !important;
    padding:8px !important;
  }

  .mobile-menu.active{
    position:fixed !important;
    top:calc(68px + env(safe-area-inset-top)) !important;
    left:0 !important;
    right:0 !important;
    z-index:9998 !important;
  }

  .hero::before,
  .hero::after{
    display:none !important;
    content:none !important;
    background:none !important;
  }

  .hero{
    min-height:auto !important;
    padding-top:18px !important;
    padding-bottom:28px !important;
    background:#f2f7f6 !important;
    background-image:linear-gradient(180deg,#edf5f4 0%,#f7fbfa 62%,#ffffff 100%) !important;
  }

  .hero-grid{
    display:flex !important;
    flex-direction:column !important;
    gap:18px !important;
    min-height:auto !important;
  }

  .hero-content{
    min-height:auto !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-start !important;
    padding:0 !important;
  }

  .hero-title-card{
    display:block !important;
    position:relative !important;
    overflow:hidden !important;
    padding:24px 22px 26px !important;
    border-radius:30px !important;
    border:1px solid rgba(31,79,95,.10) !important;
    background:linear-gradient(145deg, rgba(255,255,255,.99), rgba(250,253,252,.96)) !important;
    box-shadow:0 18px 46px rgba(15,54,69,.095), 0 2px 10px rgba(15,54,69,.035) !important;
  }

  .hero-title-card::after{
    content:"" !important;
    position:absolute !important;
    right:-64px !important;
    bottom:-76px !important;
    width:178px !important;
    height:178px !important;
    border-radius:50% !important;
    background:rgba(31,79,95,.045) !important;
    pointer-events:none !important;
  }

  .hero-title-card .eyebrow{
    position:relative !important;
    z-index:1 !important;
    display:flex !important;
    align-items:center !important;
    gap:9px !important;
    margin:0 0 18px !important;
    text-transform:uppercase !important;
    letter-spacing:.07em !important;
    font-size:12px !important;
    line-height:1.25 !important;
    font-weight:900 !important;
    color:var(--brand) !important;
  }

  .hero-title-card .eyebrow::before{
    content:"" !important;
    width:8px !important;
    height:8px !important;
    flex:0 0 8px !important;
    border-radius:50% !important;
    background:var(--brand) !important;
    box-shadow:0 0 0 6px rgba(31,79,95,.08) !important;
  }

  .hero-title-card h1{
    position:relative !important;
    z-index:1 !important;
    margin:0 !important;
    font-size:clamp(29px, 8vw, 36px) !important;
    line-height:1.18 !important;
    letter-spacing:-.055em !important;
    color:var(--text) !important;
  }

  .hero .lead,
  .hero-note{
    display:none !important;
  }

  .hero-mobile-points{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:10px !important;
    margin-top:12px !important;
  }

  .hero-mobile-points div{
    min-height:54px !important;
    display:flex !important;
    align-items:center !important;
    padding:13px 16px !important;
    border-radius:18px !important;
    border:1px solid rgba(31,79,95,.09) !important;
    background:rgba(255,255,255,.90) !important;
    box-shadow:0 10px 26px rgba(15,54,69,.06) !important;
    color:#284149 !important;
    font-size:15px !important;
    line-height:1.3 !important;
    font-weight:800 !important;
  }

  .hero-actions{
    margin-top:16px !important;
    padding-top:0 !important;
  }

  .hero-actions .btn{
    width:100% !important;
  }

  .hero-card{
    margin-top:4px !important;
  }
}

@media(max-width:380px){
  .site-header .header-inner{
    gap:6px !important;
    padding-left:max(14px, env(safe-area-inset-left)) !important;
    padding-right:max(6px, env(safe-area-inset-right)) !important;
  }

  .site-header .brand{
    flex-basis:100px !important;
    width:100px !important;
    min-width:100px !important;
    max-width:100px !important;
    margin-left:2px !important;
  }

  .site-header .brand-logotype{
    width:100px !important;
    min-width:100px !important;
    max-width:100px !important;
    font-size:8.4px !important;
    letter-spacing:.015em !important;
    padding-left:7px !important;
    padding-right:7px !important;
  }

  .site-header .mobile-header-phone{
    width:36px !important;
    height:36px !important;
    flex-basis:36px !important;
  }

  .site-header .mobile-header-cta{
    min-height:40px !important;
    padding:0 10px !important;
    font-size:11.4px !important;
  }

  .site-header .burger{
    width:38px !important;
    height:38px !important;
    flex-basis:38px !important;
  }

  .hero-title-card{
    padding:22px 20px 24px !important;
    border-radius:26px !important;
  }

  .hero-title-card h1{
    font-size:28px !important;
    line-height:1.17 !important;
  }

  .hero-mobile-points div{
    min-height:50px !important;
    padding:12px 14px !important;
    font-size:14.5px !important;
  }
}

/* Mobile-only expert card relocation below reviews */
.mobile-hero-card-slot{
  display:none;
}

@media(max-width:680px){
  .hero .hero-card{
    display:none !important;
  }

  .mobile-hero-card-slot{
    display:block;
    width:min(100% - 32px, 420px);
    margin:0 auto;
    padding:0 0 54px;
  }

  .mobile-hero-card-slot .hero-card{
    display:block !important;
    width:100% !important;
    max-width:none !important;
    margin:0 auto !important;
  }
}


/* Mobile hero CTA lower adjustment */
@media(max-width:680px){
  .hero .hero-actions{
    padding-top:clamp(50px, 7.6vh, 76px) !important;
  }
}

@media(max-width:430px){
  .hero .hero-actions{
    padding-top:clamp(46px, 7vh, 70px) !important;
  }
}

@media(max-width:380px){
  .hero .hero-actions{
    padding-top:clamp(40px, 6.2vh, 62px) !important;
  }
}

/* Final repair: mobile header and first screen after latest edits */
@media(max-width:680px){
  body{
    padding-top:calc(68px + env(safe-area-inset-top)) !important;
  }

  .site-header{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    z-index:9999 !important;
    background:rgba(255,255,255,.98) !important;
    border-bottom:1px solid rgba(18,51,63,.10) !important;
    box-shadow:0 10px 28px rgba(15,54,69,.07) !important;
    backdrop-filter:blur(14px) !important;
    -webkit-backdrop-filter:blur(14px) !important;
  }

  .site-header .header-inner{
    width:100% !important;
    max-width:none !important;
    height:68px !important;
    margin:0 !important;
    padding-left:max(16px, env(safe-area-inset-left)) !important;
    padding-right:max(9px, env(safe-area-inset-right)) !important;
    display:flex !important;
    align-items:center !important;
    gap:7px !important;
  }

  .site-header .brand{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    flex:0 0 122px !important;
    width:122px !important;
    min-width:122px !important;
    max-width:122px !important;
    margin:0 auto 0 4px !important;
    padding:0 !important;
    overflow:visible !important;
    white-space:normal !important;
  }

  .site-header .brand-text,
  .site-header .brand-logo{
    display:none !important;
  }

  .site-header .brand-logotype{
    display:flex !important;
    flex-direction:column !important;
    align-items:flex-start !important;
    justify-content:center !important;
    width:122px !important;
    min-width:122px !important;
    max-width:122px !important;
    height:42px !important;
    padding:7px 9px !important;
    border-radius:14px !important;
    background:linear-gradient(135deg, rgba(31,79,95,.10), rgba(255,255,255,.94)) !important;
    border:1px solid rgba(31,79,95,.14) !important;
    box-shadow:0 8px 20px rgba(18,51,63,.075), inset 0 1px 0 rgba(255,255,255,.76) !important;
    color:var(--brand) !important;
    text-transform:uppercase !important;
    font-size:9.2px !important;
    font-weight:900 !important;
    line-height:1.08 !important;
    letter-spacing:.018em !important;
    text-align:left !important;
    overflow:hidden !important;
    white-space:normal !important;
  }

  .site-header .brand-logotype span{
    display:block !important;
    width:100% !important;
    white-space:nowrap !important;
  }

  .site-header .mobile-header-actions{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:7px !important;
    flex:0 0 auto !important;
    margin-left:0 !important;
    min-width:0 !important;
  }

  .site-header .mobile-header-phone{
    width:38px !important;
    height:38px !important;
    flex:0 0 38px !important;
    border-radius:13px !important;
  }

  .site-header .mobile-header-cta{
    min-height:40px !important;
    height:40px !important;
    padding:0 12px !important;
    border-radius:15px !important;
    font-size:11.5px !important;
    line-height:1 !important;
    white-space:nowrap !important;
  }

  .site-header .burger{
    width:39px !important;
    height:39px !important;
    flex:0 0 39px !important;
    padding:8px !important;
  }

  .mobile-menu.active{
    position:fixed !important;
    top:calc(68px + env(safe-area-inset-top)) !important;
    left:0 !important;
    right:0 !important;
    z-index:9998 !important;
  }

  .hero::before,
  .hero::after{
    display:none !important;
    content:none !important;
    background:none !important;
  }

  .hero{
    min-height:auto !important;
    padding-top:18px !important;
    padding-bottom:34px !important;
    background:#f1f7f6 !important;
    background-image:linear-gradient(180deg,#edf5f4 0%,#f7fbfa 68%,#ffffff 100%) !important;
  }

  .hero .container,
  .hero-grid{
    width:min(100% - 32px, 420px) !important;
    max-width:420px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .hero-grid{
    display:flex !important;
    flex-direction:column !important;
    gap:0 !important;
    min-height:auto !important;
  }

  .hero-content{
    min-height:auto !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-start !important;
    padding:0 !important;
  }

  .hero-title-card{
    display:block !important;
    position:relative !important;
    overflow:hidden !important;
    padding:24px 22px 26px !important;
    border-radius:30px !important;
    border:1px solid rgba(31,79,95,.10) !important;
    background:linear-gradient(145deg, rgba(255,255,255,.99), rgba(250,253,252,.96)) !important;
    box-shadow:0 18px 46px rgba(15,54,69,.095), 0 2px 10px rgba(15,54,69,.035) !important;
  }

  .hero-title-card::after{
    content:"" !important;
    position:absolute !important;
    right:-64px !important;
    bottom:-78px !important;
    width:178px !important;
    height:178px !important;
    border-radius:50% !important;
    background:rgba(31,79,95,.045) !important;
    pointer-events:none !important;
  }

  .hero-title-card .eyebrow{
    position:relative !important;
    z-index:1 !important;
    display:flex !important;
    align-items:center !important;
    gap:9px !important;
    margin:0 0 18px !important;
    text-transform:uppercase !important;
    letter-spacing:.065em !important;
    font-size:11.6px !important;
    line-height:1.28 !important;
    font-weight:900 !important;
    color:var(--brand) !important;
  }

  .hero-title-card .eyebrow::before{
    content:"" !important;
    width:8px !important;
    height:8px !important;
    flex:0 0 8px !important;
    border-radius:50% !important;
    background:var(--brand) !important;
    box-shadow:0 0 0 6px rgba(31,79,95,.08) !important;
  }

  .hero-title-card h1{
    position:relative !important;
    z-index:1 !important;
    margin:0 !important;
    font-size:clamp(29px, 7.7vw, 35px) !important;
    line-height:1.18 !important;
    letter-spacing:-.055em !important;
    color:var(--text) !important;
  }

  .hero .lead,
  .hero-note{
    display:none !important;
  }

  .hero-mobile-points{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:10px !important;
    margin-top:14px !important;
  }

  .hero-mobile-points div{
    min-height:52px !important;
    display:flex !important;
    align-items:center !important;
    padding:13px 16px !important;
    border-radius:18px !important;
    border:1px solid rgba(31,79,95,.09) !important;
    background:rgba(255,255,255,.92) !important;
    box-shadow:0 10px 26px rgba(15,54,69,.06) !important;
    color:#284149 !important;
    font-size:15px !important;
    line-height:1.3 !important;
    font-weight:800 !important;
  }

  .hero-actions{
    margin-top:28px !important;
    padding-top:0 !important;
  }

  .hero-actions .btn{
    width:100% !important;
  }

  .hero .hero-card{
    display:none !important;
  }
}

@media(max-width:380px){
  .site-header .header-inner{
    padding-left:max(12px, env(safe-area-inset-left)) !important;
    padding-right:max(6px, env(safe-area-inset-right)) !important;
    gap:6px !important;
  }

  .site-header .brand{
    flex-basis:108px !important;
    width:108px !important;
    min-width:108px !important;
    max-width:108px !important;
    margin-left:2px !important;
  }

  .site-header .brand-logotype{
    width:108px !important;
    min-width:108px !important;
    max-width:108px !important;
    font-size:8.1px !important;
    padding-left:7px !important;
    padding-right:7px !important;
  }

  .site-header .mobile-header-phone{
    width:35px !important;
    height:35px !important;
    flex-basis:35px !important;
  }

  .site-header .mobile-header-cta{
    min-height:38px !important;
    height:38px !important;
    padding:0 9px !important;
    font-size:10.8px !important;
  }

  .site-header .burger{
    width:37px !important;
    height:37px !important;
    flex-basis:37px !important;
  }

  .hero-title-card{
    padding:22px 20px 24px !important;
    border-radius:26px !important;
  }

  .hero-title-card h1{
    font-size:28px !important;
    line-height:1.17 !important;
  }

  .hero-mobile-points div{
    min-height:50px !important;
    padding:12px 14px !important;
    font-size:14.5px !important;
  }
}

/* Mobile hero spacing correction: slightly lower first card, keep CTA position */
@media(max-width:680px){
  .hero{
    padding-top:30px !important;
  }

  .hero-actions{
    margin-top:16px !important;
  }
}

@media(max-width:380px){
  .hero{
    padding-top:28px !important;
  }

  .hero-actions{
    margin-top:14px !important;
  }
}


/* Desktop header logotype repair */
@media(min-width:681px){
  .site-header .brand{
    display:flex !important;
    align-items:center !important;
    gap:14px !important;
    min-width:0 !important;
  }

  .site-header .brand-logotype{
    width:176px !important;
    min-width:176px !important;
    max-width:176px !important;
    height:50px !important;
    flex:0 0 176px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:2px !important;
    padding:7px 18px !important;
    border-radius:999px !important;
    background:linear-gradient(135deg, rgba(31,79,95,.10), rgba(255,255,255,.94)) !important;
    border:1px solid rgba(31,79,95,.14) !important;
    box-shadow:0 10px 28px rgba(18,51,63,.08), inset 0 1px 0 rgba(255,255,255,.78) !important;
    color:var(--brand) !important;
    text-transform:uppercase !important;
    font-size:11px !important;
    font-weight:900 !important;
    line-height:1.05 !important;
    letter-spacing:.045em !important;
    text-align:center !important;
    white-space:normal !important;
    overflow:hidden !important;
  }

  .site-header .brand-logotype span{
    display:block !important;
    width:100% !important;
    white-space:nowrap !important;
  }

  .site-header .brand-text{
    display:block !important;
    min-width:0 !important;
  }

  .site-header .brand-text b{
    display:block !important;
    font-size:16px !important;
    line-height:1.15 !important;
    font-weight:900 !important;
    color:var(--text) !important;
    white-space:nowrap !important;
  }

  .site-header .brand-text small{
    display:none !important;
  }
}

/* === FINAL STABLE HEADER + MOBILE HERO FIX 2026-06-13 ===
   This block intentionally overrides older accumulated header/hero rules.
   Header logo uses current HTML class .brand-logotype, not obsolete .brand-logo.
*/
.site-header .brand-logotype{
  box-sizing:border-box !important;
  display:inline-flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  gap:2px !important;
  flex:0 0 auto !important;
  border-radius:999px !important;
  background:#eef2f1 !important;
  background-image:none !important;
  border:1px solid rgba(31,79,95,.14) !important;
  box-shadow:0 10px 24px rgba(18,51,63,.075), inset 0 1px 0 rgba(255,255,255,.70) !important;
  color:var(--brand) !important;
  text-transform:uppercase !important;
  font-weight:900 !important;
  text-align:center !important;
  white-space:normal !important;
  overflow:hidden !important;
}

.site-header .brand-logotype > span{
  display:block !important;
  width:100% !important;
  line-height:1.04 !important;
  white-space:nowrap !important;
}

.site-header .brand-logotype br{
  display:block !important;
}

@media(min-width:681px){
  .site-header .brand{
    display:flex !important;
    align-items:center !important;
    gap:14px !important;
    margin-right:auto !important;
    min-width:0 !important;
  }

  .site-header .brand-logotype{
    width:176px !important;
    min-width:176px !important;
    max-width:176px !important;
    height:50px !important;
    flex-basis:176px !important;
    padding:7px 18px !important;
    font-size:11px !important;
    line-height:1.04 !important;
    letter-spacing:.045em !important;
  }

  .site-header .brand-text{
    display:block !important;
    min-width:0 !important;
  }

  .site-header .brand-text b{
    display:block !important;
    font-size:16px !important;
    line-height:1.15 !important;
    font-weight:900 !important;
    color:var(--text) !important;
    white-space:nowrap !important;
  }

  .site-header .brand-text small{
    display:none !important;
  }

  .hero-mobile-points,
  .mobile-hero-card-slot{
    display:none !important;
  }
}

@media(max-width:680px){
  html{
    scroll-padding-top:78px !important;
  }

  body{
    padding-top:calc(68px + env(safe-area-inset-top)) !important;
  }

  .site-header{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    z-index:9999 !important;
    background:rgba(255,255,255,.97) !important;
    background-image:none !important;
    border-bottom:1px solid rgba(18,51,63,.10) !important;
    box-shadow:0 10px 26px rgba(15,54,69,.07) !important;
    backdrop-filter:blur(14px) !important;
    -webkit-backdrop-filter:blur(14px) !important;
  }

  .site-header .header-inner{
    width:100% !important;
    height:68px !important;
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
    padding-left:max(18px, env(safe-area-inset-left)) !important;
    padding-right:max(8px, env(safe-area-inset-right)) !important;
  }

  .site-header .brand{
    display:flex !important;
    align-items:center !important;
    flex:0 0 118px !important;
    width:118px !important;
    min-width:118px !important;
    max-width:118px !important;
    margin:0 auto 0 8px !important;
    gap:0 !important;
    overflow:visible !important;
  }

  .site-header .brand-text,
  .site-header .brand-logo,
  .site-header .nav,
  .site-header .header-phone{
    display:none !important;
  }

  .site-header .brand-logotype{
    width:118px !important;
    min-width:118px !important;
    max-width:118px !important;
    height:42px !important;
    flex-basis:118px !important;
    padding:7px 10px !important;
    font-size:8.9px !important;
    line-height:1.04 !important;
    letter-spacing:.025em !important;
  }

  .site-header .mobile-header-actions{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:7px !important;
    flex:0 0 auto !important;
    min-width:0 !important;
  }

  .site-header .mobile-header-phone{
    width:38px !important;
    height:38px !important;
    flex:0 0 38px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    border-radius:13px !important;
  }

  .site-header .mobile-header-cta{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:40px !important;
    height:40px !important;
    padding:0 11px !important;
    border-radius:15px !important;
    font-size:11.5px !important;
    line-height:1 !important;
    white-space:nowrap !important;
  }

  .site-header .burger{
    display:inline-flex !important;
    width:38px !important;
    height:38px !important;
    flex:0 0 38px !important;
  }

  .mobile-menu.active{
    position:fixed !important;
    top:calc(68px + env(safe-area-inset-top)) !important;
    left:0 !important;
    right:0 !important;
    z-index:9998 !important;
  }

  .hero{
    min-height:auto !important;
    padding-top:30px !important;
    padding-bottom:24px !important;
    background:linear-gradient(180deg,#f7fbfb 0%,#ffffff 100%) !important;
    background-image:linear-gradient(180deg,#f7fbfb 0%,#ffffff 100%) !important;
    overflow:hidden !important;
  }

  .hero::before,
  .hero::after{
    display:none !important;
    content:none !important;
    background:none !important;
  }

  .hero-grid{
    display:block !important;
    grid-template-columns:1fr !important;
    min-height:auto !important;
  }

  .hero-content{
    display:block !important;
    min-height:auto !important;
    padding:0 !important;
    margin:0 !important;
  }

  .hero-title-card{
    position:relative !important;
    display:block !important;
    margin:0 0 14px !important;
    padding:24px 22px 26px !important;
    border-radius:30px !important;
    background:#fff !important;
    border:1px solid rgba(31,79,95,.10) !important;
    box-shadow:0 18px 44px rgba(15,54,69,.09), inset 0 1px 0 rgba(255,255,255,.90) !important;
    overflow:hidden !important;
  }

  .hero-title-card::after{
    content:"" !important;
    position:absolute !important;
    width:150px !important;
    height:150px !important;
    right:-72px !important;
    top:-80px !important;
    border-radius:50% !important;
    background:rgba(31,79,95,.045) !important;
    pointer-events:none !important;
  }

  .hero-title-card .eyebrow{
    position:relative !important;
    z-index:1 !important;
    display:flex !important;
    align-items:center !important;
    gap:9px !important;
    margin:0 0 18px !important;
    text-transform:uppercase !important;
    letter-spacing:.065em !important;
    font-size:11.5px !important;
    line-height:1.28 !important;
    font-weight:900 !important;
    color:var(--brand) !important;
  }

  .hero-title-card .eyebrow::before{
    content:"" !important;
    width:8px !important;
    height:8px !important;
    flex:0 0 8px !important;
    border-radius:50% !important;
    background:var(--brand) !important;
    box-shadow:0 0 0 6px rgba(31,79,95,.08) !important;
  }

  .hero-title-card h1{
    position:relative !important;
    z-index:1 !important;
    margin:0 !important;
    font-size:clamp(29px, 7.7vw, 35px) !important;
    line-height:1.18 !important;
    letter-spacing:-.055em !important;
    color:var(--text) !important;
  }

  .hero .lead,
  .hero-note{
    display:none !important;
  }

  .hero-mobile-points{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:10px !important;
    margin:14px 0 0 !important;
  }

  .hero-mobile-points div{
    min-height:52px !important;
    display:flex !important;
    align-items:center !important;
    padding:13px 16px !important;
    border-radius:18px !important;
    border:1px solid rgba(31,79,95,.09) !important;
    background:rgba(255,255,255,.92) !important;
    box-shadow:0 10px 26px rgba(15,54,69,.06) !important;
    color:#284149 !important;
    font-size:15px !important;
    line-height:1.3 !important;
    font-weight:800 !important;
  }

  .hero-actions{
    margin-top:28px !important;
    padding-top:0 !important;
  }

  .hero-actions .btn{
    width:100% !important;
  }

  .hero > .container .hero-card,
  .hero .hero-card{
    display:none !important;
  }

  .mobile-hero-card-slot{
    display:block !important;
    width:min(100% - 32px, 420px) !important;
    margin:0 auto !important;
    padding:0 0 54px !important;
  }

  .mobile-hero-card-slot .hero-card{
    display:block !important;
    width:100% !important;
    max-width:none !important;
    margin:0 auto !important;
  }
}

@media(max-width:380px){
  .site-header .header-inner{
    padding-left:max(14px, env(safe-area-inset-left)) !important;
    padding-right:max(6px, env(safe-area-inset-right)) !important;
    gap:6px !important;
  }

  .site-header .brand{
    flex-basis:110px !important;
    width:110px !important;
    min-width:110px !important;
    max-width:110px !important;
    margin-left:6px !important;
  }

  .site-header .brand-logotype{
    width:110px !important;
    min-width:110px !important;
    max-width:110px !important;
    flex-basis:110px !important;
    height:40px !important;
    padding:7px 8px !important;
    font-size:8.1px !important;
    letter-spacing:.015em !important;
  }

  .site-header .mobile-header-phone{
    width:35px !important;
    height:35px !important;
    flex-basis:35px !important;
  }

  .site-header .mobile-header-cta{
    min-height:37px !important;
    height:37px !important;
    padding:0 8px !important;
    font-size:10.5px !important;
  }

  .site-header .burger{
    width:36px !important;
    height:36px !important;
    flex-basis:36px !important;
  }

  .hero{
    padding-top:28px !important;
  }

  .hero-title-card{
    padding:22px 20px 24px !important;
    border-radius:26px !important;
  }

  .hero-title-card h1{
    font-size:28px !important;
    line-height:1.17 !important;
  }

  .hero-mobile-points div{
    min-height:50px !important;
    padding:12px 14px !important;
    font-size:14.5px !important;
  }

  .hero-actions{
    margin-top:24px !important;
  }
}

/* Compact mobile first screen: make the expert photo module visible after CTA */
@media(max-width:680px){
  .hero{
    padding-top:12px !important;
    padding-bottom:8px !important;
    min-height:auto !important;
    background:linear-gradient(180deg,#f7fbfb 0%,#ffffff 100%) !important;
    background-image:linear-gradient(180deg,#f7fbfb 0%,#ffffff 100%) !important;
  }

  .hero-grid,
  .hero-content{
    min-height:0 !important;
    height:auto !important;
  }

  .hero-content{
    display:block !important;
    padding:0 !important;
    margin:0 !important;
  }

  .hero-title-card{
    margin:0 0 9px !important;
    padding:16px 20px 18px !important;
    border-radius:25px !important;
    box-shadow:0 14px 34px rgba(15,54,69,.075), inset 0 1px 0 rgba(255,255,255,.9) !important;
  }

  .hero-title-card::after{
    width:118px !important;
    height:118px !important;
    right:-58px !important;
    top:-58px !important;
    opacity:.78 !important;
  }

  .hero-title-card .eyebrow{
    margin:0 0 10px !important;
    gap:8px !important;
    font-size:10.2px !important;
    line-height:1.2 !important;
    letter-spacing:.052em !important;
  }

  .hero-title-card .eyebrow::before{
    width:7px !important;
    height:7px !important;
    flex-basis:7px !important;
    box-shadow:0 0 0 5px rgba(31,79,95,.08) !important;
  }

  .hero-title-card h1{
    font-size:clamp(25px, 6.9vw, 30px) !important;
    line-height:1.09 !important;
    letter-spacing:-.058em !important;
  }

  .hero-mobile-points{
    gap:7px !important;
    margin:9px 0 0 !important;
  }

  .hero-mobile-points div{
    min-height:42px !important;
    padding:9px 14px !important;
    border-radius:15px !important;
    font-size:13.5px !important;
    line-height:1.22 !important;
    font-weight:800 !important;
    box-shadow:0 8px 20px rgba(15,54,69,.052) !important;
  }

  .hero-actions{
    margin-top:14px !important;
    padding-top:0 !important;
  }

  .hero-actions .btn{
    width:100% !important;
    min-height:52px !important;
    border-radius:14px !important;
  }

  .mobile-hero-card-slot{
    display:block !important;
    width:min(100% - 32px, 420px) !important;
    margin:0 auto !important;
    padding:0 0 40px !important;
  }

  .mobile-hero-card-slot .hero-card{
    display:block !important;
    margin:0 auto !important;
  }
}

@media(max-width:380px){
  .hero{
    padding-top:10px !important;
    padding-bottom:6px !important;
  }

  .hero-title-card{
    padding:15px 18px 17px !important;
    border-radius:23px !important;
  }

  .hero-title-card .eyebrow{
    font-size:9.8px !important;
    margin-bottom:9px !important;
  }

  .hero-title-card h1{
    font-size:24px !important;
    line-height:1.08 !important;
  }

  .hero-mobile-points div{
    min-height:40px !important;
    padding:8px 12px !important;
    font-size:13px !important;
  }

  .hero-actions{
    margin-top:12px !important;
  }

  .hero-actions .btn{
    min-height:50px !important;
  }
}


/* === ABSOLUTE FINAL MOBILE HEADER HERO LOCK 2026-06-13 === */
/* Critical fixed rules for the mobile header and first screen. Kept inline to avoid browser CSS cache issues. */
    .site-header .brand-logotype{
      box-sizing:border-box !important;
      display:inline-flex !important;
      flex-direction:column !important;
      align-items:center !important;
      justify-content:center !important;
      gap:2px !important;
      border-radius:999px !important;
      background:#eef2f1 !important;
      background-image:none !important;
      border:1px solid rgba(31,79,95,.14) !important;
      box-shadow:0 10px 24px rgba(18,51,63,.075), inset 0 1px 0 rgba(255,255,255,.70) !important;
      color:#1F4F5F !important;
      text-transform:uppercase !important;
      text-align:center !important;
      font-weight:900 !important;
      white-space:normal !important;
      overflow:hidden !important;
    }
    .site-header .brand-logotype > span{
      display:block !important;
      width:100% !important;
      line-height:1.04 !important;
      white-space:nowrap !important;
    }
    @media(min-width:681px){
      .site-header .brand-logotype{
        width:176px !important;
        min-width:176px !important;
        max-width:176px !important;
        height:50px !important;
        padding:7px 18px !important;
        font-size:11px !important;
        letter-spacing:.045em !important;
      }
    }
    @media(max-width:680px){
      body{padding-top:68px !important;}
      .site-header{
        position:fixed !important;
        top:0 !important;
        left:0 !important;
        right:0 !important;
        z-index:9999 !important;
        background:rgba(255,255,255,.97) !important;
        box-shadow:0 10px 26px rgba(15,54,69,.07) !important;
      }
      .site-header .header-inner{
        width:100% !important;
        max-width:none !important;
        min-height:68px !important;
        height:68px !important;
        display:flex !important;
        align-items:center !important;
        gap:8px !important;
        padding-left:18px !important;
        padding-right:10px !important;
      }
      .site-header .brand{
        flex:0 0 112px !important;
        width:112px !important;
        min-width:112px !important;
        max-width:112px !important;
        margin:0 auto 0 0 !important;
        display:flex !important;
        align-items:center !important;
      }
      .site-header .brand-logotype{
        width:112px !important;
        min-width:112px !important;
        max-width:112px !important;
        height:40px !important;
        flex:0 0 112px !important;
        padding:7px 8px !important;
        font-size:8.3px !important;
        line-height:1.03 !important;
        letter-spacing:.016em !important;
      }
      .site-header .brand-text,
      .site-header .nav,
      .site-header .header-phone{display:none !important;}
      .site-header .mobile-header-actions{
        display:flex !important;
        align-items:center !important;
        gap:8px !important;
        flex:0 0 auto !important;
      }
      .site-header .mobile-header-phone{
        width:38px !important;
        height:38px !important;
        flex:0 0 38px !important;
        display:inline-flex !important;
        align-items:center !important;
        justify-content:center !important;
        border-radius:14px !important;
      }
      .site-header .mobile-header-cta{
        display:inline-flex !important;
        min-height:38px !important;
        height:38px !important;
        padding:0 12px !important;
        border-radius:14px !important;
        font-size:11px !important;
        line-height:1 !important;
        white-space:nowrap !important;
      }
      .site-header .burger{
        display:inline-flex !important;
        width:38px !important;
        height:38px !important;
        flex:0 0 38px !important;
      }
      .mobile-menu.active{
        position:fixed !important;
        top:68px !important;
        left:0 !important;
        right:0 !important;
        z-index:9998 !important;
      }
      .hero{
        padding-top:10px !important;
        padding-bottom:6px !important;
        min-height:0 !important;
        height:auto !important;
        background:linear-gradient(180deg,#f4fbfb 0%,#ffffff 100%) !important;
        background-image:linear-gradient(180deg,#f4fbfb 0%,#ffffff 100%) !important;
        overflow:hidden !important;
      }
      .hero::before,.hero::after{display:none !important;content:none !important;background:none !important;}
      .hero .container,
      .hero-grid{
        width:min(100% - 28px, 420px) !important;
        display:block !important;
        min-height:0 !important;
        height:auto !important;
      }
      .hero-content{
        display:block !important;
        min-height:0 !important;
        height:auto !important;
        padding:0 !important;
        margin:0 !important;
      }
      .hero-title-card{
        position:relative !important;
        display:block !important;
        margin:0 0 8px !important;
        padding:16px 18px 17px !important;
        border-radius:24px !important;
        background:#fff !important;
        border:1px solid rgba(31,79,95,.10) !important;
        box-shadow:0 14px 34px rgba(15,54,69,.075), inset 0 1px 0 rgba(255,255,255,.92) !important;
        overflow:hidden !important;
      }
      .hero-title-card::after{
        content:"" !important;
        position:absolute !important;
        width:118px !important;
        height:118px !important;
        right:-58px !important;
        top:-58px !important;
        border-radius:50% !important;
        background:rgba(31,79,95,.045) !important;
        pointer-events:none !important;
      }
      .hero-title-card .eyebrow{
        position:relative !important;
        z-index:1 !important;
        display:flex !important;
        align-items:center !important;
        gap:8px !important;
        margin:0 0 10px !important;
        text-transform:uppercase !important;
        letter-spacing:.048em !important;
        font-size:10.2px !important;
        line-height:1.18 !important;
        font-weight:900 !important;
        color:#1F4F5F !important;
      }
      .hero-title-card .eyebrow::before{
        content:"" !important;
        width:7px !important;
        height:7px !important;
        flex:0 0 7px !important;
        border-radius:50% !important;
        background:#1F4F5F !important;
        box-shadow:0 0 0 5px rgba(31,79,95,.08) !important;
      }
      .hero-title-card h1{
        position:relative !important;
        z-index:1 !important;
        margin:0 !important;
        font-size:clamp(25px, 6.8vw, 30px) !important;
        line-height:1.09 !important;
        letter-spacing:-.058em !important;
        color:#152126 !important;
      }
      .hero .lead,
      .hero-note{display:none !important;}
      .hero-mobile-points{
        display:grid !important;
        grid-template-columns:1fr !important;
        gap:7px !important;
        margin:8px 0 0 !important;
      }
      .hero-mobile-points div{
        min-height:40px !important;
        display:flex !important;
        align-items:center !important;
        padding:8px 14px !important;
        border-radius:15px !important;
        border:1px solid rgba(31,79,95,.09) !important;
        background:rgba(255,255,255,.93) !important;
        box-shadow:0 8px 20px rgba(15,54,69,.052) !important;
        color:#284149 !important;
        font-size:13.3px !important;
        line-height:1.22 !important;
        font-weight:800 !important;
      }
      .hero-actions{
        margin-top:12px !important;
        padding-top:0 !important;
      }
      .hero-actions .btn{
        width:100% !important;
        min-height:50px !important;
        height:50px !important;
        border-radius:14px !important;
      }
      .hero > .container .hero-card,
      .hero .hero-card{display:none !important;}
      .mobile-hero-card-slot{
        display:block !important;
        width:min(100% - 28px, 420px) !important;
        margin:0 auto !important;
        padding:0 0 40px !important;
      }
      .mobile-hero-card-slot .hero-card{
        display:block !important;
        width:100% !important;
        max-width:none !important;
        margin:0 auto !important;
      }
    }
    @media(max-width:380px){
      .site-header .header-inner{padding-left:16px !important;gap:6px !important;}
      .site-header .brand{flex-basis:108px !important;width:108px !important;min-width:108px !important;max-width:108px !important;}
      .site-header .brand-logotype{width:108px !important;min-width:108px !important;max-width:108px !important;font-size:8px !important;padding-left:7px !important;padding-right:7px !important;}
      .site-header .mobile-header-phone{width:35px !important;height:35px !important;flex-basis:35px !important;}
      .site-header .mobile-header-cta{height:36px !important;min-height:36px !important;padding:0 8px !important;font-size:10.3px !important;}
      .site-header .burger{width:36px !important;height:36px !important;flex-basis:36px !important;}
      .hero-title-card{padding:15px 17px 16px !important;border-radius:22px !important;}
      .hero-title-card .eyebrow{font-size:9.6px !important;margin-bottom:8px !important;}
      .hero-title-card h1{font-size:24px !important;line-height:1.08 !important;}
      .hero-mobile-points div{min-height:38px !important;padding:8px 12px !important;font-size:12.8px !important;}
      .hero-actions .btn{min-height:48px !important;height:48px !important;}
    }

/* === FINAL BURGER VISIBILITY LOCK 2026-06-13 === */
/* The burger disappeared because a later rule changed it to inline-flex,
   while the inner spans had no forced width. This locks the 3 bars visibly. */
@media(max-width:680px){
  .site-header .burger{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:5px !important;
    width:38px !important;
    height:38px !important;
    min-width:38px !important;
    max-width:38px !important;
    flex:0 0 38px !important;
    padding:0 !important;
    margin:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    opacity:1 !important;
    visibility:visible !important;
    overflow:visible !important;
  }

  .site-header .burger span{
    display:block !important;
    width:25px !important;
    min-width:25px !important;
    max-width:25px !important;
    height:2px !important;
    min-height:2px !important;
    margin:0 !important;
    padding:0 !important;
    border-radius:999px !important;
    background:#12333F !important;
    opacity:1 !important;
    visibility:visible !important;
    transform-origin:center !important;
  }

  .site-header .burger.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg) !important;
  }

  .site-header .burger.active span:nth-child(2){
    opacity:0 !important;
  }

  .site-header .burger.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg) !important;
  }
}

@media(max-width:380px){
  .site-header .burger{
    width:36px !important;
    height:36px !important;
    min-width:36px !important;
    max-width:36px !important;
    flex-basis:36px !important;
  }

  .site-header .burger span{
    width:24px !important;
    min-width:24px !important;
    max-width:24px !important;
  }
}


/* === FINAL MOBILE HERO TYPOGRAPHY + CTA POSITION FIX 2026-06-13 === */
/* Keep first-screen typography full-size and move CTA higher. */
@media(max-width:680px){
  .hero{
    padding-top:12px !important;
    padding-bottom:4px !important;
    min-height:0 !important;
    height:auto !important;
  }

  .hero-grid,
  .hero-content{
    min-height:0 !important;
    height:auto !important;
  }

  .hero-title-card{
    margin-bottom:10px !important;
    padding:22px 22px 24px !important;
    border-radius:28px !important;
  }

  .hero-title-card .eyebrow{
    margin-bottom:13px !important;
    font-size:12px !important;
    line-height:1.24 !important;
    letter-spacing:.055em !important;
  }

  .hero-title-card .eyebrow::before{
    width:8px !important;
    height:8px !important;
    flex-basis:8px !important;
  }

  .hero-title-card h1{
    font-size:clamp(31px, 7.8vw, 36px) !important;
    line-height:1.14 !important;
    letter-spacing:-.06em !important;
  }

  .hero-mobile-points{
    gap:8px !important;
    margin-top:10px !important;
  }

  .hero-mobile-points div{
    min-height:46px !important;
    padding:10px 16px !important;
    border-radius:16px !important;
    font-size:15px !important;
    line-height:1.25 !important;
  }

  .hero-actions{
    margin-top:10px !important;
    padding-top:0 !important;
  }

  .hero-actions .btn{
    min-height:54px !important;
    height:54px !important;
    border-radius:15px !important;
  }
}

@media(max-width:380px){
  .hero-title-card{
    padding:20px 20px 22px !important;
    border-radius:26px !important;
  }

  .hero-title-card .eyebrow{
    font-size:11px !important;
    margin-bottom:12px !important;
  }

  .hero-title-card h1{
    font-size:30px !important;
    line-height:1.13 !important;
  }

  .hero-mobile-points div{
    min-height:44px !important;
    padding:10px 14px !important;
    font-size:14.5px !important;
  }

  .hero-actions{
    margin-top:9px !important;
  }

  .hero-actions .btn{
    min-height:52px !important;
    height:52px !important;
  }
}

/* === FINAL MOBILE HERO GAP FIX 2026-06-13 === */
/* Override older high-specificity CTA padding rules and tighten the gap before the main CTA. */
@media(max-width:680px){
  .hero .hero-actions,
  .hero-content .hero-actions{
    margin-top:4px !important;
    padding-top:0 !important;
  }
}

@media(max-width:380px){
  .hero .hero-actions,
  .hero-content .hero-actions{
    margin-top:3px !important;
    padding-top:0 !important;
  }
}

/* Bankruptcy advertising disclaimer: forms and footer */
.ad-disclaimer{
  width:100%;
  margin:0;
  padding:12px 14px;
  border:1px solid rgba(31,79,95,.12);
  border-radius:14px;
  background:linear-gradient(180deg, rgba(246,250,249,.98), rgba(239,247,246,.90));
  color:#4d6168;
  font-size:12.5px;
  line-height:1.45;
  text-align:left;
}

.form-ad-disclaimer{
  margin:2px 0 0;
}

.modal .form-ad-disclaimer{
  padding:10px 12px;
  font-size:12px;
  line-height:1.42;
}

.final-cta .final-card .form-ad-disclaimer{
  color:#4d6168 !important;
}

.footer-ad-disclaimer{
  margin-top:16px !important;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:16px;
  background:rgba(255,255,255,.075);
  color:rgba(255,255,255,.86) !important;
  font-size:13px;
  line-height:1.55;
}

@media(max-width:680px){
  .ad-disclaimer{
    padding:10px 12px;
    border-radius:13px;
    font-size:11.7px;
    line-height:1.42;
  }

  .footer-ad-disclaimer{
    padding:12px 14px;
    font-size:12px;
    line-height:1.48;
  }
}

/* Reviews rating platforms row */
.review-cases .section-head.narrow{
  max-width:1180px;
}

.review-cases .section-head > p{
  max-width:860px;
  margin-left:auto;
  margin-right:auto;
}

.review-platforms{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
  margin:24px 0 22px;
}

.review-platform-card{
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(31,79,95,.10);
  box-shadow:0 16px 38px rgba(15,54,69,.08);
  transform:translateZ(0);
}

.review-platform-card img{
  display:block;
  width:100%;
  height:auto;
}

@media(hover:hover){
  .review-platform-card{
    transition:transform .24s ease, box-shadow .24s ease;
  }

  .review-platform-card:hover{
    transform:translateY(-3px);
    box-shadow:0 22px 48px rgba(15,54,69,.12);
  }
}

@media(max-width:680px){
  .review-cases .section-head.narrow{
    max-width:none;
  }

  .review-platforms{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px;
    margin:18px 0 18px;
  }

  .review-platform-card{
    border-radius:18px;
    box-shadow:0 12px 28px rgba(15,54,69,.075);
  }
}

@media(max-width:360px){
  .review-platforms{
    gap:10px;
  }

  .review-platform-card{
    border-radius:16px;
  }
}

/* Reviews rating platforms compact size fix */
.review-platforms{
  max-width:520px !important;
  margin:14px auto 18px !important;
  gap:10px !important;
}

.review-platform-card{
  border-radius:15px !important;
  box-shadow:0 10px 24px rgba(15,54,69,.065) !important;
}

@media(hover:hover){
  .review-platform-card:hover{
    transform:translateY(-2px) !important;
    box-shadow:0 14px 30px rgba(15,54,69,.09) !important;
  }
}

@media(max-width:680px){
  .review-platforms{
    max-width:292px !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:8px !important;
    margin:12px auto 16px !important;
  }

  .review-platform-card{
    border-radius:13px !important;
    box-shadow:0 8px 18px rgba(15,54,69,.06) !important;
  }
}

@media(max-width:360px){
  .review-platforms{
    max-width:270px !important;
    gap:7px !important;
  }

  .review-platform-card{
    border-radius:12px !important;
  }
}


/* Reviews platforms mobile one-row compact fix */
@media(max-width:680px){
  .review-cases .section-head.narrow{
    margin-bottom:10px !important;
  }

  .review-cases .section-head > p{
    margin-top:10px !important;
    margin-bottom:0 !important;
    line-height:1.45 !important;
  }

  .review-platforms{
    max-width:360px !important;
    width:100% !important;
    grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
    gap:6px !important;
    margin:10px auto 10px !important;
  }

  .review-platform-card{
    border-radius:10px !important;
    box-shadow:0 6px 14px rgba(15,54,69,.055) !important;
  }

  .review-cases .review-grid{
    margin-top:0 !important;
  }
}

@media(max-width:380px){
  .review-platforms{
    max-width:332px !important;
    gap:5px !important;
  }

  .review-platform-card{
    border-radius:9px !important;
  }
}

/* Reviews platforms desktop left align fix */
@media(min-width:681px){
  .review-cases .section-head > p{
    margin-left:0 !important;
    margin-right:0 !important;
    text-align:left !important;
  }

  .review-platforms{
    margin-left:0 !important;
    margin-right:0 !important;
  }
}

/* Hero rating platforms strip */
.hero-rating-desktop{
  margin-top:18px;
  max-width:520px;
}

.hero-rating-desktop .hero-rating-strip.review-platforms{
  width:100%;
  max-width:520px !important;
  margin:0 !important;
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  gap:10px !important;
}

.hero-rating-mobile{
  display:none;
}

.hero-rating-strip .review-platform-card{
  background:#fff;
}

@media(min-width:681px){
  .hero-rating-desktop .review-platform-card{
    border-radius:15px !important;
    box-shadow:0 10px 24px rgba(15,54,69,.065) !important;
  }
}

@media(max-width:680px){
  .hero-rating-desktop{
    display:none !important;
  }

  .hero-rating-mobile{
    display:block !important;
    width:100%;
    margin:16px auto 0;
  }

  .mobile-hero-card-slot{
    padding-bottom:34px !important;
  }

  .hero-rating-mobile .hero-rating-strip.review-platforms{
    width:100% !important;
    max-width:360px !important;
    grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
    gap:6px !important;
    margin:0 auto !important;
  }

  .hero-rating-mobile .review-platform-card{
    border-radius:10px !important;
    box-shadow:0 6px 14px rgba(15,54,69,.055) !important;
  }
}

@media(max-width:380px){
  .hero-rating-mobile .hero-rating-strip.review-platforms{
    max-width:332px !important;
    gap:5px !important;
  }

  .hero-rating-mobile .review-platform-card{
    border-radius:9px !important;
  }
}

/* Form select fields visual separation */
.modal select,
.inline-lead-form select{
  -webkit-appearance:none !important;
  appearance:none !important;
  background-color:#f4f7f8 !important;
  border-color:#dbe5e8 !important;
  color:var(--ink) !important;
  cursor:pointer;
  padding-right:48px !important;
  background-image:url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 1.75L7 7.25L12.5 1.75' stroke='%23172A31' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat:no-repeat !important;
  background-position:right 17px center !important;
  background-size:14px 9px !important;
}

.modal select:focus,
.inline-lead-form select:focus{
  background-color:#eef4f5 !important;
  border-color:#b8c9ce !important;
  outline:none;
}

.modal select::-ms-expand,
.inline-lead-form select::-ms-expand{
  display:none;
}

@media(max-width:680px){
  .modal select,
  .inline-lead-form select{
    padding-right:44px !important;
    background-position:right 15px center !important;
  }
}
