:root{
  --navy:#2f3f6b;
  --navy-deep:#22345d;
  --teal:#2dbec4;
  --aqua:#7ed6d3;
  --bg:#f5f6f7;
  --white:#ffffff;
  --text:#1f2440;
  --muted:#5f6885;
  --line:rgba(47,63,107,.10);
  --shadow:0 18px 45px rgba(34,52,93,.08);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.page-shell{
  width:min(1240px, calc(100% - 40px));
  margin:0 auto;
}

.topbar-wrap{
  position:sticky;
  top:16px;
  z-index:50;
  padding-top:0;
  margin-bottom:-96px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  transform:none;
  padding:14px 18px;
  border-radius:22px;
  background:rgba(255,255,255,.74);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 10px 30px rgba(34,52,93,.06);
flex-wrap:nowrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  flex:0 0 auto;
  width:auto;
}
.brand-home-link{
  display:inline-flex;
  align-items:center;
  gap:12px;
  width:auto;
  max-width:none;
  min-width:0;
  flex:0 0 auto;
  flex-wrap:nowrap;
  white-space:nowrap;
  color:inherit;
  text-decoration:none;
}
.brand-mark{
width:52px;
height:52px;
border-radius:50%;
background:#fff;
display:flex;
align-items:center;
justify-content:center;
padding:0;
overflow:hidden;
box-shadow:0 6px 16px rgba(0,0,0,.12);
}
.brand-mark img{
width:100%;
height:100%;
object-fit:cover;
}
.brand-text{
  min-width:0;
  flex:0 0 auto;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.brand-title{
  font-size:1rem;
  font-weight:700;
  color:var(--navy-deep);
  line-height:1.1;
white-space:nowrap;
}
.brand-sub{
  font-size:.78rem;
  color:var(--muted);
  margin-top:2px;
  line-height:1.15;
  white-space:nowrap;
}
.nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:nowrap;
  justify-content:flex-end;
  margin-left:auto;
  flex:0 0 auto;
}
.lang-switch{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:4px;
  border-radius:14px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(47,63,107,.10);
  box-shadow:0 8px 18px rgba(34,52,93,.05);
}
.lang-btn{
  border:0;
  background:transparent;
  color:var(--navy-deep);
  font:inherit;
  font-size:.84rem;
  font-weight:700;
  padding:8px 10px;
  border-radius:10px;
  cursor:pointer;
  transition:.2s ease;
}
.lang-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.flag-icon{
  width:18px;
  height:12px;
  object-fit:cover;
  border-radius:2px;
  display:block;
  flex:0 0 auto;
}
.lang-btn:hover{
  background:rgba(47,63,107,.06);
}

.lang-btn.is-active{
  background:linear-gradient(135deg,var(--teal),var(--navy));
  color:#fff;
  box-shadow:0 10px 18px rgba(45,190,196,.18);
}
.nav-link,
.nav-cta{
  padding:11px 16px;
  border-radius:14px;
  font-size:.96rem;
  font-weight:600;
  transition:.2s ease;
}

.nav-link{
  color:var(--navy-deep);
  background:rgba(255,255,255,.62);
  border:1px solid rgba(47,63,107,.10);
}

.nav-link:hover{
  transform:translateY(-1px);
  background:#fff;
}

.nav-cta{
  color:#fff;
  background:linear-gradient(135deg,var(--teal),var(--navy));
  box-shadow:0 12px 24px rgba(45,190,196,.24);
}
.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:1px solid rgba(47,63,107,.10);
  border-radius:14px;
  background:rgba(255,255,255,.72);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(34,52,93,.05);
margin-left:auto;
}

.menu-toggle span{
  width:18px;
  height:2px;
  background:var(--navy-deep);
  border-radius:999px;
  display:block;
}
.mobile-menu-backdrop{
  position:fixed;
  inset:0;
  background:rgba(20,29,55,.32);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  opacity:0;
  pointer-events:none;
  transition:.25s ease;
  z-index:70;
}

.mobile-menu{
  position:fixed;
  top:0;
  right:0;
  width:min(360px, 88vw);
  height:100vh;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:-18px 0 40px rgba(34,52,93,.12);
  transform:translateX(100%);
  transition:.28s ease;
  z-index:80;
  display:flex;
  flex-direction:column;
  padding:18px;
}

.mobile-menu-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:20px;
}

.mobile-menu-title{
  font-size:1.15rem;
  font-weight:700;
  color:var(--navy-deep);
}

.mobile-menu-close{
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(47,63,107,.10);
  background:#fff;
  color:var(--navy-deep);
  font:inherit;
  font-size:1.1rem;
  cursor:pointer;
}

.mobile-menu-body{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.mobile-lang-switch{
  width:100%;
  justify-content:stretch;
  margin-bottom:4px;
}

.mobile-lang-switch .lang-btn{
  flex:1 1 0;
}

.mobile-menu-link,
.mobile-menu-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  border-radius:16px;
  font-weight:700;
  font-size:1rem;
  text-decoration:none;
}

.mobile-menu-link{
  background:#fff;
  color:var(--navy-deep);
  border:1px solid rgba(47,63,107,.10);
}

.mobile-menu-cta{
  color:#fff;
  background:linear-gradient(135deg,var(--teal),var(--navy));
  box-shadow:0 14px 28px rgba(45,190,196,.18);
}

body.menu-open{
  overflow:hidden;
}

body.menu-open .mobile-menu-backdrop{
  opacity:1;
  pointer-events:auto;
}

body.menu-open .mobile-menu{
  transform:translateX(0);
}
.hero{
  position:relative;
  overflow:hidden;
  min-height:78vh;
  border-radius:0 0 34px 34px;
  margin-top:-90px;
  padding-top:130px;
  background:
    radial-gradient(800px 320px at 20% 18%, rgba(126,214,211,.22), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.48), rgba(255,255,255,.18));
}

.hero-media{
  position:absolute;
  inset:0;
  overflow:hidden;
  pointer-events:none;
}

.hero-media iframe{
  position:absolute;
  top:50%;
  left:50%;
  width:177.77777778vh;
  height:56.25vw;
  min-width:100%;
  min-height:100%;
  transform:translate(-50%,-50%) scale(1.08);
  border:0;
  filter:blur(10px) saturate(1.05);
  opacity:.96;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(245,246,247,.82), rgba(245,246,247,.54)),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(47,63,107,.08));
}

.hero-inner{
  position:relative;
  z-index:2;
  width:min(1240px, calc(100% - 40px));
  margin:0 auto;
  padding:48px 0 70px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(320px, .85fr);
  gap:34px;
  align-items:end;
}

.hero-copy{
  max-width:720px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(47,63,107,.10);
  color:var(--navy);
  font-weight:600;
  font-size:.92rem;
  box-shadow:0 10px 24px rgba(34,52,93,.06);
}

.eyebrow-dot{
  width:9px;
  height:9px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--teal),var(--navy));
  box-shadow:0 0 0 6px rgba(45,190,196,.10);
}

.hero h1{
  margin:22px 0 18px;
  font-size:clamp(2.9rem, 7vw, 5.7rem);
  line-height:.92;
  letter-spacing:-.05em;
  color:var(--navy-deep);
}

.hero h1 span{
  color:var(--teal);
}

.hero-lead{
  margin:0;
  max-width:650px;
  font-size:1.08rem;
  line-height:1.75;
  color:var(--muted);
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:16px;
  padding:15px 20px;
  font-size:1rem;
  font-weight:700;
  transition:.2s ease;
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--teal),var(--navy));
  box-shadow:0 14px 28px rgba(45,190,196,.24);
}

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

.btn-secondary{
  color:var(--navy-deep);
  background:rgba(255,255,255,.78);
  border:1px solid rgba(47,63,107,.12);
}

.btn-secondary:hover{
  transform:translateY(-2px);
  background:#fff;
}

.hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.hero-pill{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.70);
  border:1px solid rgba(47,63,107,.10);
  color:var(--navy);
  font-size:.9rem;
  font-weight:600;
}

.hero-card{
  background:rgba(255,255,255,.56);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.60);
  border-radius:30px;
  padding:24px;
  box-shadow:var(--shadow);
}

.hero-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.hero-card-title{
  font-size:1.4rem;
  font-weight:700;
  color:var(--navy-deep);
}

.hero-card-badge{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(45,190,196,.10);
  color:var(--teal);
  font-size:.84rem;
  font-weight:700;
}

.quick-list{
  display:grid;
  gap:12px;
}

.quick-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 15px;
  border-radius:18px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(47,63,107,.08);
}

.quick-icon{
  width:38px;
  height:38px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(45,190,196,.18), rgba(47,63,107,.14));
  color:var(--navy);
  font-weight:700;
  flex:0 0 auto;
}

.quick-item strong{
  display:block;
  margin-bottom:4px;
  color:var(--navy-deep);
}

.quick-item span{
  display:block;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.5;
}

.section{
  padding:78px 0;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:28px;
  flex-wrap:wrap;
}

.section-kicker{
  display:inline-block;
  margin-bottom:12px;
  color:var(--teal);
  font-size:.88rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.section h2{
  margin:0;
  font-size:clamp(2rem, 4vw, 3.2rem);
  line-height:1.02;
  color:var(--navy-deep);
  letter-spacing:-.04em;
}

.section-copy{
  max-width:620px;
  color:var(--muted);
  line-height:1.7;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.service-card{
  background:#fff;
  border-radius:28px;
  padding:24px;
  box-shadow:var(--shadow);
  border:1px solid rgba(47,63,107,.06);
  transition:.22s ease;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 40px rgba(34,52,93,.11);
}

.service-icon{
  width:54px;
  height:54px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(45,190,196,.18), rgba(47,63,107,.12));
  color:var(--navy);
  font-size:1.15rem;
  font-weight:800;
  margin-bottom:18px;
}

.service-card h3{
  margin:0 0 10px;
  font-size:1.22rem;
  color:var(--navy-deep);
}

.service-card p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.65;
  font-size:.96rem;
}

.service-tag{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:#f3f8f9;
  color:var(--navy);
  font-size:.82rem;
  font-weight:700;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.process-card{
  background:#fff;
  border-radius:28px;
  padding:26px;
  box-shadow:var(--shadow);
  border:1px solid rgba(47,63,107,.06);
}

.process-number{
  width:48px;
  height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--teal));
  margin-bottom:18px;
}

.process-card h3{
  margin:0 0 10px;
  color:var(--navy-deep);
  font-size:1.18rem;
}

.process-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.contact-panel{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.62)),
    radial-gradient(700px 250px at 90% 10%, rgba(126,214,211,.22), transparent 55%);
  border:1px solid rgba(255,255,255,.65);
  border-radius:34px;
  box-shadow:var(--shadow);
padding:30px 30px 0;
}

.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(240px,.7fr) minmax(0,1fr);
  gap:26px;
  align-items:center;
}
.contact-left{
  min-height:100%;
}

.contact-logo{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:22px;
}
.contact-logo-badge{
width:80px;
height:80px;
border-radius:50%;
background:#fff;
padding:0;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 12px 22px rgba(0,0,0,.12);
}
.contact-logo-badge img{
width:100%;
height:100%;
object-fit:cover;
}
.contact-left h3{
  margin:0;
  font-size:clamp(2rem, 4vw, 3.3rem);
  line-height:.95;
  letter-spacing:-.05em;
  color:var(--navy-deep);
}

.contact-left p{
  margin:18px 0 0;
  max-width:320px;
  color:var(--muted);
  line-height:1.7;
}
.contact-center{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  align-self:end;
  min-height:100%;
}
.contact-worker{
  width:100%;
  max-width:300px;
  height:auto;
  display:block;
  object-fit:contain;
  align-self:flex-end;
}
.contact-right{
  background:rgba(255,255,255,.66);
  border:1px solid rgba(255,255,255,.75);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-radius:28px;
  padding:24px;
}

.contact-row{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 0;
  border-bottom:1px solid rgba(47,63,107,.08);
}

.contact-row:last-child{
  border-bottom:0;
}

.contact-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(45,190,196,.16), rgba(47,63,107,.12));
  color:var(--navy);
  font-size:1.2rem;
  font-weight:800;
  flex:0 0 auto;
}

.contact-label{
  font-size:.86rem;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--teal);
  margin-bottom:6px;
}

.contact-value{
  font-size:1.2rem;
  font-weight:600;
  color:var(--navy-deep);
  word-break:break-word;
}

.footer{
  padding:24px 0 48px;
  color:var(--muted);
  font-size:.95rem;
}

@media (max-width: 1080px){
  .hero-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }
  .contact-panel{
    padding:30px;
  }
  .services-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .process-grid{
    grid-template-columns:1fr;
  }
.contact-center{
  align-items:flex-start;
  align-self:start;
  margin-top:-8px;
  margin-bottom:-60px;
}

.contact-worker{
  max-width:260px;
}

.contact-right{
  margin-top:0;
}
}

@media (max-width: 740px){
  .page-shell,
  .hero-inner{
    width:min(100% - 26px, 1240px);
  }

.topbar{
  align-items:center;
  flex-direction:row;
}
  .nav-actions{
    width:100%;
    justify-content:flex-start;
  }

  .hero{
  min-height: 58vh;
    border-radius:0 0 28px 28px;
    padding-top:120px;
  }

  .hero-inner{
    padding:34px 0 46px;
  }

  .hero h1{
    font-size:clamp(2.6rem, 13vw, 4.2rem);
  }

  .section{
    padding:58px 0;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .contact-panel,
  .hero-card,
  .service-card,
  .process-card{
    border-radius:24px;
  }

  .contact-right{
    border-radius:22px;
  }
.nav-actions > .nav-link,
.nav-actions > .nav-cta,
.nav-actions > .lang-switch{
  display:none;
}
  .menu-toggle{
    display:flex;
  }

  .nav-actions{
    margin-left:auto;
  }
}

@media (max-width: 520px){
  .page-shell,
  .hero-inner{
    width:min(100% - 20px, 1240px);
  }

  .hero{
    margin-top:-84px;
    padding-top:112px;
  }
  .brand-mark{
    width:44px;
    height:44px;
    flex:0 0 44px;
  }
.brand-title{
  font-size:.90rem;
}

.brand-sub{
  font-size:.66rem;
  line-height:1.1;
  white-space:nowrap;
}
  .topbar-wrap{
    padding-top:12px;
  }

  .topbar{
    padding:12px 14px;
    border-radius:18px;
  }
.brand-text{
  min-width:0;
  flex:0 0 auto;
}
.nav-link,
.nav-cta,
.lang-switch,
.btn{
  width:100%;
}

.lang-switch{
  justify-content:stretch;
}

.lang-btn{
  flex:1 1 0;
}
  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero-pill{
    width:100%;
    text-align:center;
  }

  .contact-row{
    align-items:flex-start;
  }

  .contact-value{
    font-size:1rem;
  }
}


/* Product page */
.product-hero{
  position: relative;
  min-height: 360px;
  margin-top: -108px;
  padding: 288px 0 140px;
  overflow: hidden;
}
.product-hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:180px;
  background:linear-gradient(
    to bottom,
    rgba(246,248,250,0) 0%,
    rgba(246,248,250,0.10) 26%,
    rgba(246,248,250,0.28) 52%,
    rgba(246,248,250,0.62) 78%,
    #f3f5f7 100%
  );
  z-index:2;
  pointer-events:none;
}
.product-hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(41, 196, 214, 0.22), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(45, 74, 136, 0.28), transparent 32%),
    radial-gradient(circle at 52% 62%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(18, 30, 60, 0.98) 0%, rgba(33, 56, 105, 0.94) 42%, rgba(35, 180, 203, 0.62) 100%);
  z-index: 1;
  -webkit-mask-image: none;
  mask-image: none;
}
.product-hero__overlay{
  position: absolute;
  inset: 0;
  background: none;
  z-index: 2;
}
.product-hero__inner{
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
}
.product-hero__content{
  max-width: 1120px;
  width: 100%;
  padding-top: 0;
}

.product-hero__kicker{
  display: inline-block;
  margin-bottom: 18px;
  color: #7ff4ff;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.product-hero__title{
  margin: 0;
  max-width: 1120px;
  color: #ffffff;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .94;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.product-hero__copy{
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.6;
}

.product-hero__subcopy{
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 1rem;
  line-height: 1.7;
}
.product-section{
  position: relative;
  margin-top: 0;
  padding: 40px 0 78px;
  z-index: 4;
  background: transparent;
}
.product-section-head{
  margin-bottom: 24px;
}

.product-layout{
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.product-media-card{
  min-width: 0;
}

.compare-frame{
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #dfe7ee;
  border: 1px solid rgba(47,63,107,.08);
  box-shadow: 0 18px 36px rgba(34,52,93,.12);
}

.compare-canvas{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  --compare-reveal: 50%;
  outline: none;
}
.compare-layer{
  position: absolute;
  inset: 0;
}

.compare-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
  user-select: none;
}
.compare-layer--after{
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  -webkit-clip-path: inset(0 50% 0 0);
}
.compare-layer--after .compare-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}
.compare-divider{
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-reveal);
  transform: translateX(-50%);
  width: 0;
  border-left: 0;
  box-shadow: none;
  z-index: 3;
  pointer-events: none;
}

.compare-handle{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(47,63,107,.12);
  box-shadow: 0 12px 24px rgba(34,52,93,.16);
}

.compare-handle::before,
.compare-handle::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--navy-deep);
  border-right: 2px solid var(--navy-deep);
}

.compare-handle::before{
  left: 15px;
  transform: translateY(-50%) rotate(225deg);
}

.compare-handle::after{
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
}

.compare-label{
  position: absolute;
  top: 16px;
  z-index: 4;
  color: #fff;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.compare-label--before{
  left: 16px;
}

.compare-label--after{
  right: 16px;
}

.product-copy-card{
  background: #fff;
  border: 1px solid rgba(47,63,107,.06);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-copy-card h3{
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--navy-deep);
}

.product-copy-card p{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

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

@media (max-width: 980px){
  .product-hero{
    min-height: 560px;
    margin-top: 0;
    padding: 110px 0 130px;
  }
  .product-hero__content{
    max-width: 100%;
  }

  .product-section{
    padding-top: 24px;
  }
  .product-layout{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-media-card{
    min-width: 0;
  }

  .product-copy-card{
    border-radius: 24px;
  }
}
@media (max-width: 640px){
  .product-hero{
    min-height: 520px;
    margin-top: 0;
    padding: 96px 0 96px;
  }
  .product-hero__kicker{
    margin-bottom: 14px;
    font-size: .82rem;
    letter-spacing: .14em;
  }

  .product-hero__title{
    font-size: clamp(2.4rem, 12vw, 3.6rem);
    line-height: .96;
  }

  .product-hero__copy{
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .product-hero__subcopy{
    margin-top: 12px;
    font-size: .95rem;
    line-height: 1.62;
  }

  .product-section{
    padding-top: 18px;
  }
  .product-section-head{
    margin-bottom: 18px;
  }

  .compare-frame{
    border-radius: 16px;
  }

  .compare-handle{
    width: 46px;
    height: 46px;
  }

  .compare-label{
    top: 12px;
    padding: 7px 12px;
    font-size: .82rem;
  }

  .compare-label--before{
    left: 12px;
  }

  .compare-label--after{
    right: 12px;
  }

  .product-copy-card{
    padding: 18px;
    border-radius: 20px;
  }

  .product-copy-card h3{
    font-size: 1.5rem;
  }

  .product-copy-card p{
    font-size: .95rem;
    line-height: 1.66;
  }
}



/* Footer alignment */
.footer{
  text-align:center;
}

.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
}

.footer-credit{
  font-size:.82rem;
  color:var(--muted);
}


/* Force logo + brand text onto one row */
.topbar .brand{
  flex:0 0 auto !important;
  width:auto !important;
}

.topbar .brand-home-link{
  display:grid !important;
  grid-template-columns:52px auto !important;
  align-items:center !important;
  column-gap:12px !important;
  width:auto !important;
  max-width:none !important;
  white-space:normal !important;
}

.topbar .brand-mark{
  width:52px !important;
  height:52px !important;
  flex:0 0 52px !important;
}

.topbar .brand-text{
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  min-width:0 !important;
  flex:0 0 auto !important;
}

.topbar .brand-title,
.topbar .brand-sub{
  white-space:nowrap !important;
}


/* Homepage testimonials enhanced */
.testimonials-section{
  position: relative;
}

.testimonials-shell{
  position: relative;
  overflow: hidden;
  padding: 28px 0 8px;
  min-height: 430px;
}

.testimonials-track{
  position: relative;
  min-height: 360px;
}

.testimonial-card{
  position: absolute;
  top: 34px;
  left: 50%;
  width: min(31%, 360px);
  min-height: 250px;
  background: #fff;
  border: 1px solid rgba(47,63,107,.06);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 74px 28px 24px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(.82);
  transition:
    transform .55s cubic-bezier(.22,.61,.36,1),
    opacity .35s ease,
    box-shadow .35s ease,
    filter .35s ease;
}

.testimonial-card.is-left,
.testimonial-card.is-active,
.testimonial-card.is-right{
  pointer-events: auto;
}

.testimonial-card.is-left{
  opacity: .68;
  z-index: 1;
  transform: translateX(calc(-160% - 26px)) scale(.92);
  filter: saturate(.88);
}

.testimonial-card.is-active{
  opacity: 1;
  z-index: 3;
  transform: translateX(-50%) scale(1.12);
  box-shadow: 0 48px 120px rgba(34,52,93,.12);
}

.testimonial-card.is-right{
  opacity: .68;
  z-index: 1;
  transform: translateX(calc(60% + 26px)) scale(.92);
  filter: saturate(.88);
}

.testimonial-card.is-hidden{
  opacity: 0;
  z-index: 0;
  transform: translateX(-50%) scale(.82);
  pointer-events: none;
}

.testimonial-avatar{
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 4px solid #fff;
  box-shadow: 0 10px 22px rgba(34,52,93,.14);
}

.testimonial-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote{
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  min-height: 132px;
}

.testimonial-meta{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(47,63,107,.10);
}

.testimonial-name{
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy-deep);
}

.testimonial-role{
  margin-top: 4px;
  color: var(--muted);
  font-size: .95rem;
}

.testimonial-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.testimonial-btn{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(47,63,107,.14);
  background: #fff;
  color: var(--navy-deep);
  font-size: 1.7rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(34,52,93,.08);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.testimonial-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(34,52,93,.12);
}

.testimonial-btn--next{
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  border-color: transparent;
}

@media (max-width: 980px){
  .testimonials-shell{
    min-height: 0;
    padding-top: 18px;
  }

  .testimonials-track{
    min-height: 0;
  }

  .testimonial-card{
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    padding: 64px 22px 22px;
    transform: none !important;
    margin: 0 auto 18px;
  }

  .testimonial-card.is-left,
  .testimonial-card.is-right,
  .testimonial-card.is-hidden{
    display: none;
  }

  .testimonial-card.is-active{
    display: block;
    opacity: 1;
    box-shadow: 0 22px 46px rgba(34,52,93,.12);
  }

  .testimonial-quote{
    min-height: 0;
  }
}


.testimonial-card{
  overflow: visible;
}

.testimonial-quote{
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 8.7em;
}

.testimonial-readmore{
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: var(--teal);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  padding: 0;
}

.testimonial-readmore:hover{
  text-decoration: underline;
}

.testimonial-controls{
  position: relative;
  z-index: 5;
  margin-top: 40px;
}

.testimonial-modal{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.testimonial-modal.is-open{
  display: block;
}

.testimonial-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(4px);
}

.testimonial-modal__dialog{
  position: relative;
  width: min(720px, calc(100% - 32px));
  margin: 8vh auto 0;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(34,52,93,.18);
  padding: 32px 28px 28px;
}

.testimonial-modal__close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(47,63,107,.12);
  background: #fff;
  color: var(--navy-deep);
  font-size: 1.4rem;
  cursor: pointer;
}

.testimonial-modal__name{
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.1;
}

.testimonial-modal__role{
  margin-top: 6px;
  color: var(--muted);
  font-size: .98rem;
}

.testimonial-modal__quote{
  margin-top: 18px;
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.8;
  white-space: pre-line;
}

@media (max-width: 980px){
  .testimonial-controls{
    margin-top: 18px;
  }

  .testimonial-quote{
    -webkit-line-clamp: 6;
    min-height: 0;
  }
}


/* Homepage hero image swap */
.hero-image-card{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}

.hero-image-shoes{
  display: block;
  width: min(100%, 540px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(34,52,93,.18));
}

@media (max-width: 980px){
  .hero-image-card{
    min-height: 320px;
  }

  .hero-image-shoes{
    width: min(100%, 420px);
  }
}


/* Hero layout tweak */
.hero{
  min-height: 58vh;
}

.hero-inner{
  padding: 8px 0 8px;
}

.hero-grid{
  align-items: center;
}

.hero-copy{
  margin-top: 0;
  align-self: center;
}

.hero-image-card{
  min-height: 0;
  justify-content: flex-end;
  align-items: center;
}

.hero-image-shoes{
  width: min(142%, 900px);
  max-width: none;
  transform: translate(185px, 0);
}

@media (max-width: 980px){
  .hero-inner{
    padding: 18px 0 28px;
  }

  .hero-grid{
    align-items: center;
  }

  .hero-copy{
    margin-top: 0;
    align-self: auto;
  }

  .hero-image-card{
    min-height: 0;
  }

  .hero-image-shoes{
    width: min(115%, 560px);
    transform: translateX(24px);
  }
}
/* FINAL HERO LAYOUT FIX */
.hero{
  min-height:420px !important;
  padding-top:96px !important;
}

.hero-inner{
  padding:28px 0 18px !important;
}

.hero-grid{
  align-items:center !important;
}

.hero-copy{
  align-self:center !important;
}

.hero-image-card{
  min-height:0 !important;
}

.hero-image-shoes{
  width:min(112%, 620px) !important;
  max-width:none !important;
  transform:translateX(64px) !important;
}

/* FINAL MOBILE HEADER + HOME HERO FIX */
@media (max-width: 860px){
  .topbar{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:10px !important;
  }

  .brand{
    min-width:0 !important;
    flex:1 1 auto !important;
  }

  .brand-home-link{
    min-width:0 !important;
  }

  .brand-text{
    min-width:0 !important;
  }

  .nav-actions{
    width:auto !important;
    flex:0 0 auto !important;
    margin-left:auto !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
  }

  .menu-toggle{
    display:flex !important;
    width:48px !important;
    height:48px !important;
    min-width:48px !important;
    min-height:48px !important;
    padding:0 !important;
    margin-left:auto !important;
    align-items:center !important;
    justify-content:center !important;
    flex-direction:column !important;
    gap:5px !important;
    visibility:visible !important;
    opacity:1 !important;
    position:relative !important;
    z-index:30 !important;
    overflow:visible !important;
  }

  .menu-toggle span{
    display:block !important;
    width:20px !important;
    height:2px !important;
    background:var(--navy-deep) !important;
    border-radius:999px !important;
    opacity:1 !important;
  }
}

@media (max-width: 520px){
  .hero{
    padding-top:136px !important;
    min-height:unset !important;
  }

  .hero-inner{
    padding:44px 0 18px !important;
  }

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

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

  .hero-image-card{
    min-height:0 !important;
    display:flex !important;
    justify-content:center !important;
    align-items:flex-end !important;
  }

  .hero-image-shoes{
    width:min(62%, 210px) !important;
    max-width:210px !important;
    transform:none !important;
    margin:10px auto 0 !important;
    display:block !important;
  }
}
/* FINAL MOBILE HEADER + HOME HERO FIX */
@media (max-width: 860px){
  .menu-toggle{
    display:flex !important;
    width:48px !important;
    height:48px !important;
    min-width:48px !important;
    min-height:48px !important;
    padding:0 !important;
    margin-left:auto !important;
    align-items:center !important;
    justify-content:center !important;
    flex-direction:column !important;
    gap:5px !important;
    visibility:visible !important;
    opacity:1 !important;
    position:relative !important;
    z-index:20 !important;
  }

  .menu-toggle span{
    display:block !important;
    width:20px !important;
    height:2px !important;
    background:var(--navy-deep) !important;
    border-radius:999px !important;
    opacity:1 !important;
  }
}

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

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

  .hero-grid{
    justify-items:center !important;
  }

  .hero-image-card{
    min-height:0 !important;
    display:flex !important;
    justify-content:center !important;
    align-items:flex-end !important;
  }

  .hero-image-shoes{
    width:min(78%, 260px) !important;
    max-width:260px !important;
    transform:none !important;
    margin:18px auto 0 !important;
    display:block !important;
  }
}

/* FINAL MOBILE HOME HERO SHOES SIZE/CENTER */
@media (max-width: 520px){
  .hero-grid{
    grid-template-columns:1fr !important;
    justify-items:center !important;
    gap:12px !important;
  }

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

  .hero-image-card{
    width:100% !important;
    min-height:0 !important;
    display:flex !important;
    justify-content:center !important;
    align-items:flex-end !important;
    margin-top:0 !important;
  }

  .hero-image-shoes{
    width:170px !important;
    max-width:170px !important;
    transform:none !important;
    margin:0 auto !important;
    display:block !important;
  }
}

/* FINAL MOBILE/TABLET HOME HERO SHOES SIZE/CENTER */
@media (max-width: 860px){
  .hero-grid{
    grid-template-columns:1fr !important;
    justify-items:center !important;
    gap:12px !important;
  }

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

  .hero-image-card{
    width:100% !important;
    min-height:0 !important;
    display:flex !important;
    justify-content:center !important;
    align-items:flex-end !important;
    margin-top:0 !important;
  }

  .hero-image-shoes{
    width:170px !important;
    max-width:170px !important;
    transform:none !important;
    margin:0 auto !important;
    display:block !important;
  }
}

/* MOBILE EXPERIMENT: SHOES PARTIALLY BEHIND HERO TEXT */
@media (max-width: 860px){
  .hero{
    overflow:hidden !important;
  }

  .hero-inner{
    position:relative !important;
  }

  .hero-grid{
    position:relative !important;
    grid-template-columns:1fr !important;
    align-items:start !important;
    justify-items:start !important;
    gap:0 !important;
  }

  .hero-copy{
    position:relative !important;
    z-index:3 !important;
    width:100% !important;
    max-width:none !important;
  }

  .hero-image-card{
    position:absolute !important;
    right:-18px !important;
    top:130px !important;
    width:240px !important;
    min-height:0 !important;
    display:block !important;
    margin:0 !important;
    z-index:1 !important;
    pointer-events:none !important;
    opacity:0.96 !important;
  }

  .hero-image-shoes{
    width:240px !important;
    max-width:none !important;
    transform:none !important;
    margin:0 !important;
    display:block !important;
  }

  .hero-actions{
    position:relative !important;
    z-index:4 !important;
  }
}

@media (max-width: 520px){
  .hero-image-card{
    right:-10px !important;
    top:150px !important;
    width:220px !important;
  }

  .hero-image-shoes{
    width:220px !important;
  }
}

/* MOBILE EXPERIMENT REFINEMENT */
@media (max-width: 860px){

  .hero{
    padding-top:160px !important;
    padding-bottom:120px !important;
  }

  .hero-inner{
    padding-top:40px !important;
    padding-bottom:40px !important;
  }

  .hero-image-card{
    right:-60px !important;
    top:150px !important;
    width:300px !important;
  }

  .hero-image-shoes{
    width:300px !important;
  }
}

@media (max-width: 520px){

  .hero{
    padding-top:170px !important;
    padding-bottom:110px !important;
  }

  .hero-image-card{
    right:-40px !important;
    top:170px !important;
    width:260px !important;
  }

  .hero-image-shoes{
    width:260px !important;
  }
}

/* MOBILE EXPERIMENT REFINEMENT 2 */
@media (max-width: 860px){
  .hero-copy p{
    max-width:70% !important;
  }

  .hero-image-card{
    right:-95px !important;
  }
}

@media (max-width: 520px){
  .hero-copy p{
    max-width:70% !important;
  }

  .hero-image-card{
    right:-72px !important;
  }
}

/* MOBILE EXPERIMENT REFINEMENT 3 */
@media (max-width: 860px){

  .hero{
    padding-top:140px !important;
    padding-bottom:95px !important;
  }

  .hero-copy p{
    max-width:60% !important;
  }
}

@media (max-width: 520px){

  .hero{
    padding-top:150px !important;
    padding-bottom:90px !important;
  }

  .hero-copy p{
    max-width:60% !important;
  }
}

/* MOBILE EXPERIMENT REFINEMENT 4 (FINAL PADDING) */
@media (max-width: 860px){

  .hero{
    padding-top:105px !important;   /* reduced ~25% */
    padding-bottom:30px !important; /* reduced ~70% */
  }
}

@media (max-width: 520px){

  .hero{
    padding-top:112px !important;   /* reduced ~25% */
    padding-bottom:28px !important; /* reduced ~70% */
  }
}

/* PRODUCT PAGE HERO TOP SPACING FIX */
@media (max-width: 860px){
  .product-hero{
    padding-top:140px !important;
  }
}

@media (max-width: 520px){
  .product-hero{
    padding-top:150px !important;
  }
}

/* CALCULATOR SECTION */
.calculator-shell{
  margin-top:22px;
}

.calculator-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(320px, .85fr);
  gap:26px;
  align-items:start;
}

.calculator-form,
.calculator-summary-card{
  background:rgba(255,255,255,.74);
  border:1px solid rgba(255,255,255,.65);
  box-shadow:0 20px 48px rgba(34,52,93,.08);
  border-radius:28px;
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.calculator-form{
  padding:26px;
}

.calculator-summary-card{
  padding:24px;
  position:sticky;
  top:120px;
}

.calc-block + .calc-block{
  margin-top:22px;
}

.calc-label{
  font-size:.95rem;
  font-weight:700;
  color:var(--navy-deep);
  margin-bottom:12px;
}

.calc-radio-group{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.calc-radio-card{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:58px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(47,63,107,.12);
  background:rgba(255,255,255,.72);
  color:var(--navy-deep);
  font-weight:600;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.calc-radio-card:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 24px rgba(34,52,93,.08);
}

.calc-radio-card input{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
}

.calc-radio-card:has(input:checked){
  border-color:rgba(45,190,196,.42);
  background:linear-gradient(135deg, rgba(45,190,196,.12), rgba(47,63,107,.10));
  box-shadow:0 14px 28px rgba(45,190,196,.12);
}

.calc-slider-wrap{
  padding:12px 4px 0;
}

.calc-slider{
  width:100%;
}

.calc-slider-labels{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-top:10px;
  font-size:.92rem;
  color:var(--navy-deep);
  font-weight:700;
}

.calc-help{
  margin-top:10px;
  font-size:.88rem;
  color:var(--slate);
}

.calc-contact-methods{
  display:grid;
  grid-template-columns:minmax(0, 1fr);
  gap:10px;
}

.calc-contact-panel{
  margin-top:-2px;
}

.calc-contact-static,
.calc-input{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(47,63,107,.10);
  background:rgba(255,255,255,.82);
  min-height:52px;
  padding:14px 16px;
  color:var(--navy-deep);
  font:inherit;
  box-sizing:border-box;
}

.calc-input:focus{
  outline:none;
  border-color:rgba(45,190,196,.48);
  box-shadow:0 0 0 4px rgba(45,190,196,.10);
}

.calc-summary-kicker{
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--teal);
}

.calc-price-row{
  margin-top:12px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
}

.calc-price-label{
  font-size:.92rem;
  color:var(--slate);
}

.calc-price-value{
  margin-top:4px;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:.95;
  font-weight:800;
  color:var(--navy-deep);
}

.calc-turnaround-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(45,190,196,.12);
  color:var(--navy-deep);
  font-size:.88rem;
  font-weight:700;
}

.calc-preview{
  margin-top:20px;
  min-height:300px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:24px;
  background:
    radial-gradient(220px 120px at 50% 70%, rgba(45,190,196,.12), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(240,246,250,.92));
  overflow:hidden;
}

.calc-preview-image{
  width:min(100%, 340px);
  height:auto;
  display:block;
  object-fit:contain;
  filter:drop-shadow(0 22px 34px rgba(34,52,93,.16));
}

.calc-summary-list{
  margin-top:18px;
  display:grid;
  gap:12px;
}

.calc-summary-item{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(47,63,107,.08);
}

.calc-summary-item span{
  color:var(--slate);
}

.calc-summary-item strong{
  color:var(--navy-deep);
  text-align:right;
}

.calc-summary-cta{
  width:100%;
  margin-top:20px;
  justify-content:center;
}

@media (max-width: 980px){
  .calculator-grid{
    grid-template-columns:1fr;
  }

  .calculator-summary-card{
    position:relative;
    top:auto;
  }
}

@media (max-width: 680px){
  .calc-radio-group{
    grid-template-columns:1fr;
  }

  .calculator-form,
  .calculator-summary-card{
    border-radius:24px;
  }

  .calculator-form{
    padding:20px;
  }

  .calculator-summary-card{
    padding:20px;
  }

  .calc-preview{
    min-height:240px;
  }
}

/* CALCULATOR ACCORDION LAYOUT */
.calculator-steps{
  display:grid;
  gap:14px;
  padding:0 !important;
  background:none !important;
  border:none !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}

.calc-step{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.7);
  box-shadow:0 18px 40px rgba(34,52,93,.08);
  border-radius:24px;
  overflow:hidden;
}

.calc-step-head{
  width:100%;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:14px;
  padding:18px 20px;
  border:0;
  background:transparent;
  text-align:left;
  cursor:pointer;
}

.calc-step-index{
  width:40px;
  height:40px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(45,190,196,.16), rgba(47,63,107,.10));
  color:var(--navy-deep);
  font-size:.84rem;
  font-weight:800;
  letter-spacing:.04em;
}

.calc-step-title-wrap{
  min-width:0;
  display:grid;
  gap:3px;
}

.calc-step-title{
  color:var(--navy-deep);
  font-size:1rem;
  font-weight:800;
}

.calc-step-summary{
  color:var(--slate);
  font-size:.92rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.calc-step-chevron{
  color:var(--navy-deep);
  font-size:1.4rem;
  line-height:1;
  font-weight:500;
  transition:transform .18s ease;
}

.calc-step-body{
  display:none;
  padding:0 20px 20px;
}

.calc-step.is-open .calc-step-body{
  display:block;
}

.calc-step.is-open .calc-step-chevron{
  transform:rotate(45deg);
}

.calc-radio-group--two{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.calc-step-actions{
  margin-top:16px;
  display:flex;
  gap:10px;
  justify-content:flex-end;
  flex-wrap:wrap;
}

.calc-back-btn,
.calc-next-btn{
  min-width:120px;
  justify-content:center;
}

.calculator-summary-card{
  min-height:100%;
}

.calc-preview{
  min-height:260px !important;
}

.calc-summary-list{
  margin-bottom:0;
}

@media (max-width: 980px){
  .calculator-grid{
    grid-template-columns:1fr !important;
  }

  .calculator-summary{
    order:-1;
  }

  .calculator-summary-card{
    position:relative !important;
    top:auto !important;
  }
}

@media (max-width: 680px){
  .calc-step-head{
    padding:16px 16px;
    gap:12px;
  }

  .calc-step-body{
    padding:0 16px 16px;
  }

  .calc-step-index{
    width:36px;
    height:36px;
    font-size:.78rem;
  }

  .calc-step-title{
    font-size:.96rem;
  }

  .calc-step-summary{
    font-size:.86rem;
  }

  .calc-radio-group,
  .calc-radio-group--two{
    grid-template-columns:1fr !important;
  }

  .calc-step-actions{
    justify-content:stretch;
  }

  .calc-back-btn,
  .calc-next-btn{
    width:100%;
  }
}

/* CALCULATOR CONTACT ROW FIX */
.calc-contact-buttons{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
}

.calc-contact-panels{
  margin-top:10px;
}

.calc-contact-panel{
  display:none;
}

.calc-contact-panel.is-active{
  display:block;
}

@media (max-width: 680px){
  .calc-contact-buttons{
    grid-template-columns:1fr;
  }
}

/* CALCULATOR UPLOAD + CONTACT INPUT */
.calc-upload-block{
  margin-top:16px;
}

.calc-upload-field{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:14px 16px;
  border-radius:18px;
  border:1px dashed rgba(47,63,107,.20);
  background:rgba(255,255,255,.72);
  color:var(--navy-deep);
  font-weight:600;
  cursor:pointer;
  text-align:center;
}

.calc-upload-field input{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
}

.calc-preview{
  position:relative;
}

.calc-upload-thumb{
  position:absolute;
  top:14px;
  right:14px;
  width:64px;
  height:64px;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(47,63,107,.12);
  box-shadow:0 12px 24px rgba(34,52,93,.12);
  z-index:3;
}

.calc-upload-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* CALCULATOR SUBMIT NOTE */
.calc-submit-note{
  margin:12px 4px 0;
  font-size:.84rem;
  line-height:1.5;
  color:var(--slate);
  text-align:center;
  opacity:.92;
}

/* CALCULATOR EXTRA DETAILS */
.calc-extra-block{
  margin-top:16px;
}

.calc-textarea{
  width:100%;
  min-height:120px;
  resize:vertical;
  border-radius:18px;
  border:1px solid rgba(47,63,107,.10);
  background:rgba(255,255,255,.82);
  padding:14px 16px;
  color:var(--navy-deep);
  font:inherit;
  line-height:1.5;
  box-sizing:border-box;
}

.calc-textarea:focus{
  outline:none;
  border-color:rgba(45,190,196,.48);
  box-shadow:0 0 0 4px rgba(45,190,196,.10);
}

/* CALCULATOR SUBMIT STATUS */
.calc-submit-status{
  min-height:22px;
  margin-top:10px;
  font-size:.88rem;
  line-height:1.4;
  text-align:center;
  color:var(--slate);
}

.calc-submit-status.is-success{
  color:#0f8b5f;
  font-weight:600;
}

.calc-submit-status.is-error{
  color:#b42318;
  font-weight:600;
}

/* CALCULATOR MOBILE LAYOUT FIX */
@media (max-width: 680px){
  .calculator-summary{
    order:2 !important;
  }

  .calculator-form,
  .calculator-steps{
    order:1 !important;
  }

  .calculator-grid{
    grid-template-columns:1fr !important;
  }

  .calc-radio-group{
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:8px !important;
  }

  .calc-radio-group--two{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:8px !important;
  }

  .calc-contact-buttons{
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:8px !important;
  }

  .calc-radio-card,
  .calc-contact-card{
    min-height:48px !important;
    padding:10px 8px !important;
    border-radius:14px !important;
  }

  .calc-radio-card span,
  .calc-contact-card span{
    font-size:.78rem !important;
    line-height:1.15 !important;
  }

  .calculator-summary-card{
    margin-top:6px !important;
  }
}

/* CONTACT LINK STYLE FIX */
.contact-value a{
  color:inherit;
  text-decoration:none;
}

.contact-value a:hover{
  text-decoration:underline;
}
