body.longpo-homepage {
  --navy: #062b4c;
  --navy-2: #0a3d69;
  --blue: #0866b6;
  --blue-2: #0b78d1;
  --cyan: #2eb7df;
  --accent: #ff9b35;
  --accent-dark: #e77e14;
  --ink: #142333;
  --muted: #607286;
  --line: #dbe4ec;
  --soft: #f3f7fa;
  --white: #fff;
  --shadow: 0 18px 50px rgba(12, 43, 74, .12);
  --shadow-sm: 0 9px 28px rgba(12, 43, 74, .09);
  --radius: 22px;
  --container: 1240px;
}

#longpo-home * { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body.longpo-homepage {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.longpo-homepage.modal-open { overflow: hidden; }
#longpo-home img { display: block; max-width: 100%; }
#longpo-home a { color: inherit; text-decoration: none; }
#longpo-home button, #longpo-home input, #longpo-home textarea, #longpo-home select { font: inherit; }
#longpo-home button { cursor: pointer; }
#longpo-home svg { width: 1em; height: 1em; }

#longpo-home .container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
#longpo-home .section { padding: 104px 0; }
#longpo-home .section--tight { padding: 34px 0; }
#longpo-home .section--soft { background: var(--soft); }
#longpo-home .section--dark { background: linear-gradient(135deg, #062b4c, #0a416f); color: var(--white); }

#longpo-home .skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 10000;
  background: var(--white); color: var(--navy); padding: 12px 18px;
  border-radius: 8px; box-shadow: var(--shadow);
}
#longpo-home .skip-link:focus { top: 16px; }
#longpo-home .sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
#longpo-home .svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

#longpo-home .topbar { background: #03233d; color: rgba(255,255,255,.82); font-size: 13px; }
#longpo-home .topbar__inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
#longpo-home .topbar__contacts { display: flex; align-items: center; gap: 22px; }
#longpo-home .topbar__contacts a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s ease; }
#longpo-home .topbar__contacts a:hover { color: var(--white); }
#longpo-home .topbar__contacts svg { width: 15px; height: 15px; }
#longpo-home .topbar__note { letter-spacing: .02em; }

#longpo-home .site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(218,228,237,.8);
  transition: box-shadow .25s ease, background .25s ease;
}
#longpo-home .site-header.is-scrolled { box-shadow: 0 10px 35px rgba(0, 38, 70, .09); background: rgba(255,255,255,.98); }
#longpo-home .header__inner { min-height: 82px; display: flex; align-items: center; gap: 34px; }
#longpo-home .brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
#longpo-home .brand img { width: 220px; height: 58px; object-fit: contain; object-position: left center; }
#longpo-home .brand__logo--light { width: 225px !important; height: 66px !important; padding: 7px 10px; border-radius: 10px; background: #fff; }
#longpo-home .brand__text { display: none; }
#longpo-home .brand__text strong { font-size: 18px; }
#longpo-home .brand__text small { margin-top: 5px; font-size: 9px; letter-spacing: .25em; color: var(--blue); }
#longpo-home .brand--light .brand__text, #longpo-home .brand--light .brand__text small { color: var(--white); }
#longpo-home .main-nav { display: flex; align-items: center; justify-content: center; gap: 27px; margin-left: auto; }
#longpo-home .main-nav a { position: relative; color: #31485c; font-size: 14px; font-weight: 700; white-space: nowrap; }
#longpo-home .main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--blue); transition: right .25s ease; }
#longpo-home .main-nav a:hover::after, #longpo-home .main-nav a.is-active::after { right: 0; }
#longpo-home .header__cta { margin-left: 8px; }
#longpo-home .menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 9px; margin-left: auto; }
#longpo-home .menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 3px; background: var(--navy); transition: transform .25s ease, opacity .25s ease; }
#longpo-home .menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#longpo-home .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
#longpo-home .menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#longpo-home .btn {
  border: 1px solid transparent; min-height: 50px; padding: 13px 22px;
  border-radius: 9px; display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; font-weight: 800; font-size: 14px; line-height: 1.15;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
#longpo-home .btn:hover { transform: translateY(-2px); }
#longpo-home .btn--primary { background: var(--blue); color: var(--white); box-shadow: 0 10px 24px rgba(8,102,182,.22); }
#longpo-home .btn--primary:hover { background: #07599f; box-shadow: 0 14px 30px rgba(8,102,182,.29); }
#longpo-home .btn--accent { background: var(--accent); color: #1e2a35; box-shadow: 0 10px 26px rgba(255,155,53,.24); }
#longpo-home .btn--accent:hover { background: #ffab58; box-shadow: 0 14px 30px rgba(255,155,53,.3); }
#longpo-home .btn--ghost { background: rgba(255,255,255,.07); color: var(--white); border-color: rgba(255,255,255,.45); }
#longpo-home .btn--ghost:hover { background: rgba(255,255,255,.14); border-color: var(--white); }
#longpo-home .btn--outline { color: var(--blue); background: var(--white); border-color: #bdd3e6; }
#longpo-home .btn--outline:hover { border-color: var(--blue); box-shadow: 0 9px 22px rgba(8,102,182,.12); }
#longpo-home .btn--full { width: 100%; }
#longpo-home .link-button {
  border: 0; padding: 0; background: transparent; color: var(--blue); font-weight: 800;
  display: inline-flex; align-items: center; gap: 7px; text-align: left;
}
#longpo-home .link-button svg, #longpo-home .category-card a svg { width: 17px; height: 17px; transition: transform .2s ease; }
#longpo-home .link-button:hover svg, #longpo-home .category-card a:hover svg { transform: translateX(4px); }

#longpo-home .eyebrow {
  margin-bottom: 14px; color: var(--blue); font-weight: 900; text-transform: uppercase;
  letter-spacing: .15em; font-size: 12px;
}
#longpo-home .eyebrow--light { color: #73cff0; }
#longpo-home .section-heading { max-width: 800px; margin-bottom: 48px; }
#longpo-home .section-heading--split { max-width: none; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(330px,.85fr); gap: 70px; align-items: end; }
#longpo-home .section-heading h2, #longpo-home .engineering h2, #longpo-home .about-content h2, #longpo-home .contact-copy h2, #longpo-home .faq-intro h2 {
  margin: 0; color: var(--navy); font-size: clamp(32px, 4vw, 52px); line-height: 1.12; letter-spacing: -.035em;
}
#longpo-home .section-heading p { margin: 18px 0 0; color: var(--muted); font-size: 17px; }
#longpo-home .section-heading--split > p { margin: 0 0 3px; }

#longpo-home .hero {
  position: relative; isolation: isolate; min-height: 735px; padding: 106px 0 0;
  background: #062b4c; color: var(--white); overflow: hidden;
}
#longpo-home .hero__backdrop {
  position: absolute; inset: 0; z-index: -3;
  background-image: linear-gradient(90deg, rgba(3,27,49,.98) 0%, rgba(5,44,77,.91) 43%, rgba(7,51,88,.62) 100%), var(--hero-bg-image);
  transition: background-image .45s ease, opacity .35s ease;
  background-size: cover; background-position: center;
}
#longpo-home .hero { --hero-bg-image: url("assets/hero-bg-slide-1.webp"); }
#longpo-home .hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2; opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px; mask-image: linear-gradient(90deg, black, transparent 90%);
}
#longpo-home .hero::after {
  content: ""; position: absolute; right: -160px; top: -160px; width: 560px; height: 560px;
  border: 1px solid rgba(85,198,237,.22); border-radius: 50%; box-shadow: 0 0 0 80px rgba(85,198,237,.035), 0 0 0 160px rgba(85,198,237,.025); z-index: -1;
}
#longpo-home .hero__grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(430px,.95fr); gap: 65px; align-items: center; }
#longpo-home .hero__content { padding-bottom: 87px; }
#longpo-home .hero h1 { margin: 0; max-width: 770px; font-size: clamp(43px, 5.8vw, 76px); line-height: 1.02; letter-spacing: -.048em; }
#longpo-home .hero h1 span { display: block; color: #71d5f2; }
#longpo-home .hero__lead { max-width: 760px; margin: 25px 0 0; color: rgba(255,255,255,.82); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.7; }
#longpo-home .hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
#longpo-home .hero__trust { margin: 34px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px 24px; color: rgba(255,255,255,.86); font-size: 14px; }
#longpo-home .hero__trust li { display: flex; align-items: center; gap: 9px; }
#longpo-home .hero__trust svg { color: #71d5f2; width: 17px; height: 17px; flex: 0 0 auto; }

#longpo-home .hero-visual { position: relative; min-height: 520px; }
#longpo-home .hero-visual__glow { position: absolute; inset: 90px 25px 20px 60px; border-radius: 50%; background: radial-gradient(circle, rgba(51,177,222,.25), transparent 68%); filter: blur(2px); }
#longpo-home .hero-product {
  position: absolute; margin: 0; background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(231,241,248,.93));
  border: 1px solid rgba(255,255,255,.58); border-radius: 26px; box-shadow: 0 25px 55px rgba(0,17,34,.28); overflow: hidden;
}
#longpo-home .hero-product img { width: 100%; height: 100%; object-fit: contain; padding: 20px; mix-blend-mode: multiply; }
#longpo-home .hero-product figcaption { position: absolute; left: 18px; right: 18px; bottom: 16px; color: var(--navy); display: flex; justify-content: space-between; align-items: end; gap: 12px; }
#longpo-home .hero-product figcaption strong { font-size: 15px; }
#longpo-home .hero-product figcaption span { font-size: 11px; color: var(--muted); text-align: right; }
#longpo-home .hero-product--main { width: 66%; aspect-ratio: .9; left: 0; top: 10px; transform: rotate(-2deg); }
#longpo-home .hero-product--side { width: 47%; aspect-ratio: .78; right: 0; bottom: 8px; transform: rotate(3deg); }
#longpo-home .hero-visual__badge {
  position: absolute; right: 6px; top: 20px; width: 122px; height: 122px; border-radius: 50%;
  background: var(--accent); color: #1a2e40; border: 7px solid rgba(255,255,255,.18); box-shadow: 0 15px 35px rgba(0,20,40,.28);
  display: grid; grid-template-columns: 1fr auto 1fr; place-items: center; padding: 24px 12px 29px; font-weight: 900;
}
#longpo-home .hero-visual__badge strong { font-size: 19px; }
#longpo-home .hero-visual__badge small { position: absolute; bottom: 18px; left: 0; right: 0; font-size: 8px; text-transform: uppercase; letter-spacing: .09em; text-align: center; }
#longpo-home .hero__quick-form {
  position: relative; z-index: 2; min-height: 112px; margin-top: -10px; padding: 24px 27px;
  border-radius: 20px 20px 0 0; background: rgba(255,255,255,.98); color: var(--ink); box-shadow: 0 -10px 35px rgba(0,20,40,.15);
  display: grid; grid-template-columns: minmax(240px,.8fr) minmax(0,1.7fr); align-items: center; gap: 28px;
}
#longpo-home .hero__quick-form > div { display: grid; }
#longpo-home .hero__quick-form > div strong { color: var(--navy); font-size: 17px; }
#longpo-home .hero__quick-form > div span { color: var(--muted); font-size: 13px; }
#longpo-home .quick-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; }
#longpo-home .quick-form .btn { min-height: 50px; }

#longpo-home .metrics { background: #eaf2f8; border-bottom: 1px solid #dce7ef; }

#longpo-home .hero-slides { position: absolute; inset: 0; }
#longpo-home .hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateX(24px); transition: opacity .45s ease, transform .45s ease, visibility .45s ease; }
#longpo-home .hero-slide.is-active { opacity: 1; visibility: visible; transform: none; }
#longpo-home .hero-slide .hero-product { transition: transform .45s ease; }
#longpo-home .hero-slide--single { display: grid; place-items: center; }
#longpo-home .hero-product--single { position: relative; width: 78%; height: 450px; left: auto; right: auto; top: auto; bottom: auto; transform: none; }
#longpo-home .hero-product--single img { padding: 28px; }
#longpo-home .hero-slider__dots { position: absolute; left: 50%; bottom: -8px; z-index: 6; display: flex; gap: 9px; transform: translateX(-50%); }
#longpo-home .hero-slider__dot { width: 9px; height: 9px; border: 0; border-radius: 50%; padding: 0; background: rgba(255,255,255,.4); transition: width .2s ease, border-radius .2s ease, background .2s ease; }
#longpo-home .hero-slider__dot.is-active { width: 28px; border-radius: 8px; background: #71d5f2; }
#longpo-home .service-strip { background: #eef5fa; border-bottom: 1px solid #dce7ef; }
#longpo-home .service-strip__grid { display: grid; grid-template-columns: repeat(4,1fr); }
#longpo-home .service-item { min-height: 92px; padding: 18px 24px; display: flex; align-items: center; justify-content: center; gap: 14px; border-right: 1px solid #cfdee9; }
#longpo-home .service-item:last-child { border-right: 0; }
#longpo-home .service-item__icon { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center; color: var(--blue); background: #fff; box-shadow: 0 7px 18px rgba(8,102,182,.08); }
#longpo-home .service-item__icon svg { width: 22px; height: 22px; }
#longpo-home .service-item strong { color: var(--navy); font-size: 14px; line-height: 1.3; }

#longpo-home .metrics__grid { display: grid; grid-template-columns: repeat(4,1fr); }
#longpo-home .metric { padding: 7px 30px; border-right: 1px solid #cadce9; display: flex; align-items: baseline; justify-content: center; gap: 12px; text-align: center; }
#longpo-home .metric:first-child { padding-left: 0; }
#longpo-home .metric:last-child { border-right: 0; padding-right: 0; }
#longpo-home .metric strong { color: var(--blue); font-size: 31px; line-height: 1; letter-spacing: -.04em; }
#longpo-home .metric span { max-width: 145px; color: #456177; font-size: 13px; line-height: 1.4; }

#longpo-home .solution-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
#longpo-home .solution-card { min-height: 268px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
#longpo-home .solution-card:hover { position: relative; z-index: 2; transform: translateY(-5px); box-shadow: var(--shadow); background: #fbfdff; }
#longpo-home .icon-box { width: 54px; height: 54px; border-radius: 14px; background: #e9f4fc; color: var(--blue); display: grid; place-items: center; }
#longpo-home .icon-box svg { width: 28px; height: 28px; }
#longpo-home .solution-card h3 { margin: 24px 0 10px; color: var(--navy); font-size: 20px; line-height: 1.3; }
#longpo-home .solution-card p { margin: 0; color: var(--muted); font-size: 14.5px; }

#longpo-home .category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
#longpo-home .category-card { background: var(--white); border: 1px solid #e1e9f0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 25px rgba(12,43,74,.05); transition: transform .25s ease, box-shadow .25s ease; }
#longpo-home .category-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
#longpo-home .category-card__image { height: 255px; display: grid; place-items: center; background: linear-gradient(145deg,#fff,#eaf2f8); overflow: hidden; }
#longpo-home .category-card__image img { width: 86%; height: 86%; object-fit: contain; mix-blend-mode: multiply; transition: transform .3s ease; }
#longpo-home .category-card:hover .category-card__image img { transform: scale(1.035); }
#longpo-home .category-card__body { padding: 26px 27px 29px; }
#longpo-home .category-card__body > span { display: inline-flex; margin-bottom: 15px; color: #7e9bb2; font-weight: 900; font-size: 12px; letter-spacing: .12em; }
#longpo-home .category-card h3 { margin: 0 0 10px; min-height: 52px; color: var(--navy); font-size: 20px; line-height: 1.3; }
#longpo-home .category-card p { min-height: 73px; margin: 0 0 20px; color: var(--muted); font-size: 14px; }
#longpo-home .category-card a { color: var(--blue); font-weight: 800; font-size: 14px; display: inline-flex; align-items: center; gap: 7px; }

#longpo-home .featured-products { display: grid; grid-template-columns: repeat(2,1fr); gap: 25px; }
#longpo-home .featured-product { min-height: 430px; display: grid; grid-template-columns: 43% 57%; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: 0 10px 32px rgba(12,43,74,.06); transition: transform .25s ease, box-shadow .25s ease; }
#longpo-home .featured-product:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
#longpo-home .featured-product__media { position: relative; display: grid; place-items: center; background: linear-gradient(155deg,#edf5fa,#fff); }
#longpo-home .featured-product__media img { width: 92%; height: 82%; object-fit: contain; mix-blend-mode: multiply; }
#longpo-home .voltage-tag { position: absolute; left: 16px; top: 16px; z-index: 2; padding: 7px 10px; border-radius: 7px; background: var(--navy); color: var(--white); font-size: 11px; font-weight: 900; letter-spacing: .04em; }
#longpo-home .featured-product__content { padding: 30px 30px 31px; }
#longpo-home .product-code { margin: 0 0 6px; color: var(--blue); font-weight: 900; letter-spacing: .09em; font-size: 12px; }
#longpo-home .featured-product h3 { margin: 0 0 13px; color: var(--navy); font-size: 22px; line-height: 1.25; }
#longpo-home .featured-product__content > p:not(.product-code) { margin: 0; color: var(--muted); font-size: 14px; }
#longpo-home .featured-product ul { margin: 17px 0 22px; padding: 0; list-style: none; display: grid; gap: 7px; }
#longpo-home .featured-product li { position: relative; padding-left: 18px; color: #385267; font-size: 13px; }
#longpo-home .featured-product li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }

#longpo-home .engineering { position: relative; padding: 105px 0; color: var(--white); background: linear-gradient(115deg,#062b4c,#084c7d); overflow: hidden; }
#longpo-home .engineering::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 54px 54px; }
#longpo-home .engineering__grid { position: relative; display: grid; grid-template-columns: minmax(0,1.1fr) minmax(370px,.9fr); gap: 80px; align-items: center; }
#longpo-home .engineering h2 { color: var(--white); }
#longpo-home .engineering__content > p { max-width: 720px; color: rgba(255,255,255,.78); font-size: 17px; }
#longpo-home .engineering__checklist { display: grid; grid-template-columns: repeat(2,1fr); gap: 11px 24px; margin: 29px 0 34px; }
#longpo-home .engineering__checklist span { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.9); font-size: 14px; }
#longpo-home .engineering__checklist svg { color: #73d7f3; width: 18px; height: 18px; flex: 0 0 auto; }
#longpo-home .engineering__panel { padding: 35px; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); box-shadow: 0 25px 55px rgba(0,16,30,.22); }
#longpo-home .engineering__panel h3 { margin: 0 0 22px; font-size: 22px; }
#longpo-home .engineering__panel ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
#longpo-home .engineering__panel li { display: grid; grid-template-columns: 42px 1fr; gap: 13px; align-items: center; padding: 13px; background: rgba(255,255,255,.06); border-radius: 13px; }
#longpo-home .engineering__panel li > svg { width: 24px; height: 24px; color: #70d3f0; justify-self: center; }
#longpo-home .engineering__panel li div { display: grid; }
#longpo-home .engineering__panel li strong { font-size: 14px; }
#longpo-home .engineering__panel li span { color: rgba(255,255,255,.65); font-size: 12px; }
#longpo-home .engineering__note { margin-top: 19px; padding: 16px; border-radius: 12px; background: rgba(0,18,34,.24); color: rgba(255,255,255,.76); font-size: 13px; }
#longpo-home .engineering__note strong { color: var(--white); }

#longpo-home .factory-gallery { display: grid; grid-template-columns: 1.3fr .7fr .7fr; grid-template-rows: repeat(2, 245px); gap: 16px; }
#longpo-home .factory-gallery figure { position: relative; margin: 0; overflow: hidden; border-radius: 18px; background: #dce7ef; }
#longpo-home .factory-gallery__large { grid-row: 1 / 3; }
#longpo-home .factory-gallery figure:nth-child(4) { grid-column: 2 / 4; }
#longpo-home .factory-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
#longpo-home .factory-gallery figure:hover img { transform: scale(1.04); }
#longpo-home .factory-gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 48px 22px 18px; color: var(--white); background: linear-gradient(transparent,rgba(2,22,39,.84)); display: grid; }
#longpo-home .factory-gallery figcaption strong { font-size: 16px; }
#longpo-home .factory-gallery figcaption span { color: rgba(255,255,255,.7); font-size: 12px; }
#longpo-home .process-line { margin-top: 45px; display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
#longpo-home .process-step { position: relative; padding: 28px 25px 31px; border-right: 1px solid var(--line); }
#longpo-home .process-step:last-child { border-right: 0; }
#longpo-home .process-step span { color: var(--blue); font-weight: 900; font-size: 12px; letter-spacing: .1em; }
#longpo-home .process-step h3 { margin: 12px 0 7px; color: var(--navy); font-size: 17px; }
#longpo-home .process-step p { margin: 0; color: var(--muted); font-size: 13px; }

#longpo-home .about-grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: 78px; align-items: center; }
#longpo-home .about-media { position: relative; }
#longpo-home .about-media img { width: 100%; aspect-ratio: 1.08; object-fit: cover; border-radius: 26px; box-shadow: 0 28px 60px rgba(0,10,20,.35); }
#longpo-home .about-media::before { content: ""; position: absolute; left: -22px; top: -22px; width: 45%; height: 45%; border-left: 2px solid #54c9ef; border-top: 2px solid #54c9ef; border-radius: 25px 0 0 0; }
#longpo-home .about-media__stamp { position: absolute; right: -25px; bottom: 33px; width: 145px; height: 145px; border-radius: 50%; background: var(--accent); color: #183044; display: grid; place-content: center; text-align: center; box-shadow: 0 20px 42px rgba(0,13,25,.32); border: 7px solid #0b4978; }
#longpo-home .about-media__stamp strong { font-size: 35px; line-height: 1; }
#longpo-home .about-media__stamp span { max-width: 90px; margin-top: 7px; font-size: 10px; line-height: 1.3; text-transform: uppercase; letter-spacing: .08em; }
#longpo-home .about-content h2 { color: var(--white); }
#longpo-home .about-content > p { color: rgba(255,255,255,.73); font-size: 16px; }
#longpo-home .about-benefits { margin-top: 30px; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
#longpo-home .about-benefits > div { min-height: 126px; display: grid; grid-template-columns: 43px 1fr; column-gap: 12px; align-content: center; padding: 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(255,255,255,.045); }
#longpo-home .about-benefits svg { width: 30px; height: 30px; color: #70d3f0; grid-row: 1 / 3; align-self: center; }
#longpo-home .about-benefits strong { font-size: 14px; }
#longpo-home .about-benefits span { color: rgba(255,255,255,.61); font-size: 12px; }

#longpo-home .project-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
#longpo-home .project-card { min-height: 450px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
#longpo-home .project-card--blue { color: var(--white); background: linear-gradient(145deg,#0864ad,#073b65); border-color: transparent; }
#longpo-home .project-card--image { padding: 0; overflow: hidden; display: grid; grid-template-rows: 48% 52%; }
#longpo-home .project-card--image > img { width: 100%; height: 100%; object-fit: contain; padding: 24px; background: linear-gradient(145deg,#edf5fa,#fff); }
#longpo-home .project-card--image > div { padding: 23px 29px 30px; }
#longpo-home .project-card__number { color: var(--blue); font-size: 58px; line-height: 1; font-weight: 900; letter-spacing: -.06em; }
#longpo-home .project-card--blue .project-card__number { color: #7addf5; }
#longpo-home .project-card__label { margin: 7px 0 25px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 900; }
#longpo-home .project-card--blue .project-card__label { color: rgba(255,255,255,.65); }
#longpo-home .project-card h3 { margin: 0 0 14px; color: var(--navy); font-size: 22px; line-height: 1.25; }
#longpo-home .project-card--blue h3 { color: var(--white); }
#longpo-home .project-card > p, #longpo-home .project-card > div > p { color: var(--muted); font-size: 14px; }
#longpo-home .project-card--blue > p { color: rgba(255,255,255,.75); }
#longpo-home .project-card ul { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
#longpo-home .project-card li { position: relative; padding-left: 18px; color: #405a70; font-size: 13px; }
#longpo-home .project-card--blue li { color: rgba(255,255,255,.78); }
#longpo-home .project-card li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
#longpo-home .project-card__icon { width: 60px; height: 60px; margin-bottom: 26px; border-radius: 17px; display: grid; place-items: center; color: var(--blue); background: #e9f4fc; }
#longpo-home .project-card__icon svg { width: 32px; height: 32px; }
#longpo-home .project-card .link-button { margin-top: 24px; }

#longpo-home .certificates-grid { display: grid; grid-template-columns: minmax(0,.95fr) minmax(430px,1.05fr); gap: 80px; align-items: center; }
#longpo-home .certificates-content h2 { margin: 0; color: var(--navy); font-size: clamp(32px,4vw,50px); line-height: 1.12; letter-spacing: -.035em; }
#longpo-home .certificates-content > p { color: var(--muted); }
#longpo-home .cert-list { margin: 25px 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 18px; }
#longpo-home .cert-list li { display: flex; gap: 9px; align-items: center; color: #40586d; font-size: 13px; }
#longpo-home .cert-list svg { color: var(--blue); width: 18px; height: 18px; flex: 0 0 auto; }
#longpo-home .notice { display: grid; grid-template-columns: 25px 1fr; gap: 12px; padding: 16px; margin: 25px 0; border: 1px solid #cbdce8; border-radius: 13px; background: var(--white); }
#longpo-home .notice svg { width: 22px; height: 22px; color: var(--blue); margin-top: 3px; }
#longpo-home .notice p { margin: 0; color: #526b7e; font-size: 12.5px; }
#longpo-home .certificate-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; transform: none; }
#longpo-home .certificate-cards figure { margin: 0; padding: 12px; border-radius: 13px; background: var(--white); box-shadow: var(--shadow-sm); transform: none; }
#longpo-home .certificate-cards figure:nth-child(2), #longpo-home .certificate-cards figure:nth-child(3) { transform: none; }
#longpo-home .certificate-cards img { width: 100%; height: 230px; object-fit: contain; background: #f8fafc; }
#longpo-home .certificate-cards figcaption { padding: 11px 4px 3px; color: #4c6375; text-align: center; font-size: 11px; }


#longpo-home .faq-grid { display: grid; grid-template-columns: minmax(300px,.68fr) minmax(0,1.32fr); gap: 75px; align-items: start; }
#longpo-home .faq-intro { position: sticky; top: 120px; }
#longpo-home .faq-intro p { color: var(--muted); }
#longpo-home .accordion { border-top: 1px solid #cad8e3; }
#longpo-home .accordion-item { border-bottom: 1px solid #cad8e3; }
#longpo-home .accordion-item button { width: 100%; min-height: 77px; padding: 18px 2px; border: 0; background: transparent; display: grid; grid-template-columns: 1fr 27px; gap: 20px; align-items: center; color: var(--navy); text-align: left; font-weight: 800; font-size: 16px; }
#longpo-home .accordion-item i { position: relative; width: 25px; height: 25px; border: 1px solid #adc1d1; border-radius: 50%; }
#longpo-home .accordion-item i::before, #longpo-home .accordion-item i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1.5px; background: var(--blue); transform: translate(-50%,-50%); }
#longpo-home .accordion-item i::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s ease; }
#longpo-home .accordion-item button[aria-expanded="true"] i::after { transform: translate(-50%,-50%) rotate(0); }
#longpo-home .accordion-panel { padding: 0 48px 24px 2px; }
#longpo-home .accordion-panel p { margin: 0; color: var(--muted); font-size: 14.5px; }

#longpo-home .contact-section { position: relative; padding: 105px 0; color: var(--white); background: linear-gradient(120deg,#062b4c,#07588e); overflow: hidden; }
#longpo-home .contact-section::before { content: ""; position: absolute; right: -200px; bottom: -260px; width: 720px; height: 720px; border-radius: 50%; border: 1px solid rgba(98,207,239,.25); box-shadow: 0 0 0 90px rgba(98,207,239,.03), 0 0 0 180px rgba(98,207,239,.025); }
#longpo-home .contact-grid { position: relative; display: grid; grid-template-columns: minmax(0,.78fr) minmax(560px,1.22fr); gap: 75px; align-items: start; }
#longpo-home .contact-copy h2 { color: var(--white); }
#longpo-home .contact-copy > p { color: rgba(255,255,255,.72); font-size: 17px; }
#longpo-home .contact-cards { margin-top: 32px; display: grid; gap: 12px; }
#longpo-home .contact-cards > * { min-height: 78px; display: grid; grid-template-columns: 45px 1fr; gap: 14px; align-items: center; padding: 13px 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.06); }
#longpo-home .contact-cards > a:hover { background: rgba(255,255,255,.1); }
#longpo-home .contact-cards svg { width: 25px; height: 25px; color: #75d7f1; justify-self: center; }
#longpo-home .contact-cards span { display: grid; }
#longpo-home .contact-cards small { color: rgba(255,255,255,.56); font-size: 11px; }
#longpo-home .contact-cards strong { overflow-wrap: anywhere; font-size: 14px; }
#longpo-home .contact-form { padding: 35px; border-radius: 24px; background: var(--white); color: var(--ink); box-shadow: 0 25px 60px rgba(0,16,30,.28); }
#longpo-home .form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 17px; }
#longpo-home .form-grid label, #longpo-home .modal-form label { display: grid; gap: 7px; }
#longpo-home .form-grid label > span, #longpo-home .modal-form label > span { color: #344e63; font-weight: 800; font-size: 12px; }
#longpo-home .form-grid label > span small, #longpo-home .modal-form label > span small { color: #8192a0; font-weight: 600; font-size: 10px; }
#longpo-home .form-grid__wide { grid-column: 1 / -1; }
#longpo-home .quick-form input, #longpo-home .quick-form select, #longpo-home .contact-form input, #longpo-home .contact-form select, #longpo-home .contact-form textarea, #longpo-home .modal-form input, #longpo-home .modal-form select, #longpo-home .modal-form textarea {
  min-width: 0; width: 100%; border: 1px solid #d3dfe8; border-radius: 10px; background: #fbfdff; color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
#longpo-home .quick-form input, #longpo-home .quick-form select, #longpo-home .contact-form input, #longpo-home .contact-form select, #longpo-home .modal-form input, #longpo-home .modal-form select { height: 50px; padding: 0 14px; }
#longpo-home .contact-form textarea, #longpo-home .modal-form textarea { padding: 13px 14px; resize: vertical; }
#longpo-home .quick-form input:focus, #longpo-home .quick-form select:focus, #longpo-home .contact-form input:focus, #longpo-home .contact-form select:focus, #longpo-home .contact-form textarea:focus, #longpo-home .modal-form input:focus, #longpo-home .modal-form select:focus, #longpo-home .modal-form textarea:focus {
  border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(8,102,182,.10);
}
#longpo-home .quick-form input::placeholder, #longpo-home .contact-form input::placeholder, #longpo-home .contact-form textarea::placeholder, #longpo-home .modal-form input::placeholder, #longpo-home .modal-form textarea::placeholder { color: #8a9aa8; }
#longpo-home .file-field input { height: auto; padding: 10px; background: var(--soft); }
#longpo-home .file-field small { color: #8293a2; font-size: 10px; }
#longpo-home .consent { margin: 17px 0; display: grid; grid-template-columns: 18px 1fr; gap: 9px; align-items: start; color: #617486; font-size: 11px; }
#longpo-home .consent input { width: 16px; height: 16px; margin-top: 2px; }
#longpo-home .form-status { min-height: 20px; margin: 12px 0 0; text-align: center; color: #526b7e; font-size: 12px; }
#longpo-home .form-status.is-success { color: #11863a; }
#longpo-home .form-status.is-error { color: #b32828; }

#longpo-home .footer { background: #031d32; color: rgba(255,255,255,.65); padding-top: 65px; }
#longpo-home .footer__grid { display: grid; grid-template-columns: 1.45fr .65fr .65fr 1fr; gap: 55px; padding-bottom: 52px; }
#longpo-home .footer__brand p { max-width: 360px; }
#longpo-home .footer h3 { margin: 7px 0 18px; color: var(--white); font-size: 14px; }
#longpo-home .footer__grid > div:not(.footer__brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
#longpo-home .footer a:hover { color: var(--white); }
#longpo-home .footer p, #longpo-home .footer a { font-size: 12.5px; }
#longpo-home .footer__bottom { min-height: 68px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 11px; }

#longpo-home .whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 700; min-height: 49px; padding: 0 17px; border-radius: 28px; background: #20b858; color: var(--white); box-shadow: 0 12px 30px rgba(0,0,0,.2); display: flex; align-items: center; gap: 8px; font-weight: 900; font-size: 13px; }
#longpo-home .whatsapp-float svg { width: 20px; height: 20px; }
#longpo-home .mobile-cta { display: none; }

#longpo-home .modal { position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; padding: 20px; }
#longpo-home .modal.is-open { display: grid; }
#longpo-home .modal__backdrop { position: absolute; inset: 0; background: rgba(1,17,31,.74); backdrop-filter: blur(5px); }
#longpo-home .modal__dialog { position: relative; width: min(100%, 560px); max-height: calc(100vh - 40px); overflow-y: auto; padding: 38px; border-radius: 23px; background: var(--white); box-shadow: 0 30px 70px rgba(0,0,0,.34); animation: modal-in .25s ease both; }
@keyframes modal-in { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }
#longpo-home .modal__dialog h2 { margin: 0; color: var(--navy); font-size: 30px; line-height: 1.15; }
#longpo-home .modal__dialog > p { color: var(--muted); }
#longpo-home .modal__close { position: absolute; right: 17px; top: 13px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: #edf3f7; color: var(--navy); font-size: 25px; line-height: 1; }
#longpo-home .modal-form { display: grid; gap: 14px; margin-top: 22px; }

#longpo-home.has-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
#longpo-home.has-reveal .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  #longpo-home .header__inner { gap: 19px; }
  #longpo-home .main-nav { gap: 17px; }
  #longpo-home .header__cta { padding-inline: 15px; }
  #longpo-home .hero__grid { grid-template-columns: 1.08fr .92fr; gap: 35px; }
  #longpo-home .hero-product--main { width: 71%; }
  #longpo-home .hero__quick-form { grid-template-columns: 1fr; gap: 15px; }
  #longpo-home .category-grid { grid-template-columns: repeat(2,1fr); }
  #longpo-home .featured-product { grid-template-columns: 40% 60%; }
  #longpo-home .featured-product__content { padding: 25px; }
  #longpo-home .process-line { grid-template-columns: repeat(3,1fr); }
  #longpo-home .process-step:nth-child(3) { border-right: 0; }
  #longpo-home .process-step:nth-child(n/**/+4) { border-top: 1px solid var(--line); }
  #longpo-home .contact-grid { grid-template-columns: .75fr 1.25fr; gap: 45px; }
}

@media (max-width: 980px) {
  #longpo-home .topbar__note { display: none; }
  #longpo-home .header__inner { min-height: 72px; }
  #longpo-home .menu-toggle { display: block; }
  #longpo-home .main-nav {
    position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; align-items: stretch; gap: 0;
    padding: 15px 20px 22px; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 18px 35px rgba(6,43,76,.13);
  }
  #longpo-home .main-nav.is-open { display: flex; }
  #longpo-home .main-nav a { padding: 12px 0; border-bottom: 1px solid #eef2f5; }
  #longpo-home .main-nav a::after { display: none; }
  #longpo-home .header__cta { display: none; }
  #longpo-home .hero { padding-top: 78px; }
  #longpo-home .hero__grid { grid-template-columns: 1fr; }
  #longpo-home .hero__content { padding-bottom: 5px; }
  #longpo-home .hero-visual { min-height: 500px; max-width: 660px; width: 100%; margin-inline: auto; }
  #longpo-home .hero-product--main { width: 57%; }
  #longpo-home .hero-product--side { width: 39%; right: 7%; }
  #longpo-home .quick-form { grid-template-columns: repeat(2,1fr); }
  #longpo-home .metrics__grid { grid-template-columns: repeat(2,1fr); gap: 20px 0; }

  #longpo-home .service-strip__grid { grid-template-columns: repeat(2,1fr); }
  #longpo-home .service-item:nth-child(2) { border-right: 0; }
  #longpo-home .service-item:nth-child(-n/**/+2) { border-bottom: 1px solid #cfdee9; }

  #longpo-home .metric:nth-child(2) { border-right: 0; }
  #longpo-home .section-heading--split { grid-template-columns: 1fr; gap: 20px; }
  #longpo-home .solution-grid { grid-template-columns: repeat(2,1fr); }
  #longpo-home .featured-products { grid-template-columns: 1fr; }
  #longpo-home .featured-product { min-height: 385px; }
  #longpo-home .engineering__grid, #longpo-home .about-grid, #longpo-home .certificates-grid, #longpo-home .faq-grid, #longpo-home .contact-grid { grid-template-columns: 1fr; }
  #longpo-home .engineering__grid { gap: 45px; }
  #longpo-home .about-grid { gap: 55px; }
  #longpo-home .about-media { max-width: 650px; }
  #longpo-home .certificates-grid { gap: 45px; }
  #longpo-home .faq-grid { gap: 35px; }
  #longpo-home .faq-intro { position: static; }
  #longpo-home .contact-grid { gap: 45px; }
  #longpo-home .contact-copy { max-width: 760px; }
  #longpo-home .project-grid { grid-template-columns: 1fr 1fr; }
  #longpo-home .project-card:last-child { grid-column: 1 / -1; min-height: auto; }
  #longpo-home .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  #longpo-home .footer__grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  #longpo-home .container { width: min(calc(100% - 28px), var(--container)); }
  #longpo-home .section { padding: 76px 0; }
  #longpo-home .topbar__inner { justify-content: center; min-height: 34px; }
  #longpo-home .topbar__contacts a:first-child { display: none; }
  #longpo-home .brand img { width: 40px; height: 40px; }
  #longpo-home .brand__text strong { font-size: 16px; }
  #longpo-home .hero { min-height: 0; padding-top: 65px; }
  #longpo-home .hero h1 { font-size: 42px; }
  #longpo-home .hero__lead { font-size: 16px; }
  #longpo-home .hero__actions { display: grid; }
  #longpo-home .hero__actions .btn { width: 100%; }
  #longpo-home .hero__trust { grid-template-columns: 1fr; }
  #longpo-home .hero-visual { min-height: 390px; margin-top: 15px; }
  #longpo-home .hero-product--main { width: 62%; }
  #longpo-home .hero-product--side { width: 43%; }
  #longpo-home .hero-product figcaption span { display: none; }
  #longpo-home .hero-visual__badge { width: 100px; height: 100px; top: 0; right: -2px; padding-top: 20px; }
  #longpo-home .hero-visual__badge small { bottom: 13px; font-size: 7px; }
  #longpo-home .hero__quick-form { margin-top: 0; padding: 22px 18px; border-radius: 18px 18px 0 0; }
  #longpo-home .quick-form { grid-template-columns: 1fr; }
  #longpo-home .metrics__grid { gap: 0; }

  #longpo-home .service-strip__grid { grid-template-columns: 1fr; }
  #longpo-home .service-item { border-right: 0; border-bottom: 1px solid #cfdee9; justify-content: flex-start; }
  #longpo-home .service-item:last-child { border-bottom: 0; }
  #longpo-home .hero-product--single { width: 86%; height: 340px; }
  #longpo-home .brand img { width: 172px; height: 48px; }
  #longpo-home .brand__logo--light { width: 190px !important; height: 58px !important; }

  #longpo-home .metric { min-height: 92px; padding: 14px 12px; flex-direction: column; gap: 5px; border-bottom: 1px solid #cadce9; }
  #longpo-home .metric:nth-child(2) { border-right: 0; }
  #longpo-home .metric:nth-child(3), #longpo-home .metric:nth-child(4) { border-bottom: 0; }
  #longpo-home .metric strong { font-size: 26px; }
  #longpo-home .metric span { font-size: 11px; }
  #longpo-home .section-heading { margin-bottom: 35px; }
  #longpo-home .section-heading h2, #longpo-home .engineering h2, #longpo-home .about-content h2, #longpo-home .contact-copy h2, #longpo-home .faq-intro h2, #longpo-home .certificates-content h2 { font-size: 35px; }
  #longpo-home .solution-grid { grid-template-columns: 1fr; }
  #longpo-home .solution-card { min-height: 0; padding: 27px; }
  #longpo-home .category-grid { grid-template-columns: 1fr; }
  #longpo-home .category-card__image { height: 230px; }
  #longpo-home .category-card h3, #longpo-home .category-card p { min-height: 0; }
  #longpo-home .featured-product { grid-template-columns: 1fr; }
  #longpo-home .featured-product__media { min-height: 260px; }
  #longpo-home .engineering__checklist { grid-template-columns: 1fr; }
  #longpo-home .engineering__panel { padding: 25px 19px; }
  #longpo-home .factory-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(4,220px); }
  #longpo-home .factory-gallery__large, #longpo-home .factory-gallery figure:nth-child(4) { grid-row: auto; grid-column: auto; }
  #longpo-home .process-line { grid-template-columns: 1fr; }
  #longpo-home .process-step { border-right: 0; border-bottom: 1px solid var(--line); }
  #longpo-home .process-step:nth-child(n/**/+4) { border-top: 0; }
  #longpo-home .process-step:last-child { border-bottom: 0; }
  #longpo-home .about-media__stamp { width: 112px; height: 112px; right: -4px; bottom: -28px; }
  #longpo-home .about-benefits { grid-template-columns: 1fr; margin-top: 48px; }
  #longpo-home .project-grid { grid-template-columns: 1fr; }
  #longpo-home .project-card:last-child { grid-column: auto; }
  #longpo-home .cert-list { grid-template-columns: 1fr; }
  #longpo-home .certificate-cards { gap: 9px; }
  #longpo-home .certificate-cards figure { padding: 7px; }
  #longpo-home .certificate-cards img { height: 170px; }
  #longpo-home .contact-form { padding: 24px 18px; }
  #longpo-home .form-grid { grid-template-columns: 1fr; }
  #longpo-home .form-grid__wide { grid-column: auto; }
  #longpo-home .footer__grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  #longpo-home .footer__brand { grid-column: 1 / -1; }
  #longpo-home .footer__grid > div:last-child { grid-column: 1 / -1; }
  #longpo-home .footer__bottom { padding: 18px 0; flex-direction: column; align-items: flex-start; }
  #longpo-home .whatsapp-float { display: none; }
  #longpo-home .mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 800; display: grid; grid-template-columns: .8fr 1.2fr; min-height: 58px; box-shadow: 0 -8px 25px rgba(0,20,35,.18); }
  #longpo-home .mobile-cta a, #longpo-home .mobile-cta button { border: 0; display: grid; place-items: center; color: var(--white); font-weight: 900; font-size: 13px; }
  #longpo-home .mobile-cta a { background: #20b858; }
  #longpo-home .mobile-cta button { background: var(--blue); }
  #longpo-home .footer { padding-bottom: 58px; }
  #longpo-home .modal__dialog { padding: 32px 20px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  #longpo-home *, #longpo-home *::before, #longpo-home *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  #longpo-home.has-reveal .reveal { opacity: 1; transform: none; }
}

  

/* ---- Final RU landing polish ---- */
#longpo-home .hero__microcopy {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 12.5px;
  line-height: 1.55;
}
#longpo-home .hero__actions .btn { min-width: 220px; }
#longpo-home .hero__quick-form { border: 1px solid rgba(8,102,182,.10); border-bottom: 0; }
#longpo-home .metric { min-height: 62px; }
#longpo-home .metric strong { font-variant-numeric: tabular-nums; }
#longpo-home .category-card, #longpo-home .featured-product, #longpo-home .solution-card { will-change: transform; }
#longpo-home .category-card__image, #longpo-home .featured-product__media { position: relative; }
#longpo-home .category-card__image::after, #longpo-home .featured-product__media::after {
  content: "";
  position: absolute;
  inset: auto 12% 7% 12%;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(4,40,72,.16), rgba(4,40,72,0) 70%);
  filter: blur(4px);
  pointer-events: none;
}
#longpo-home .contact-form { border-top: 4px solid var(--accent); }
#longpo-home .form-head { margin: -2px 0 26px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
#longpo-home .form-head > span { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
#longpo-home .form-head h3 { margin: 7px 0 8px; color: var(--navy); font-size: 25px; line-height: 1.2; }
#longpo-home .form-head p { margin: 0; color: var(--muted); font-size: 13px; }
#longpo-home .contact-cards strong { font-size: 15px; }
#longpo-home .whatsapp-float { box-shadow: 0 12px 30px rgba(12,43,74,.22); }
#longpo-home .footer__bottom { gap: 24px; }
@media (max-width: 760px) {
  #longpo-home .hero__actions .btn { width: 100%; min-width: 0; }
  #longpo-home .hero__microcopy { font-size: 12px; }
  #longpo-home .form-head h3 { font-size: 22px; }
}


/* Short-form conversion optimization */
#longpo-home .contact-form .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
#longpo-home .contact-form .form-grid__wide { grid-column: 1 / -1; }
#longpo-home .contact-form textarea { min-height: 112px; }
#longpo-home .file-field > span small { font-weight: 500; color: #7b8d9c; }
@media (max-width: 720px) {
  #longpo-home .contact-form .form-grid { grid-template-columns: 1fr; }
  #longpo-home .contact-form .form-grid__wide { grid-column: auto; }
  #longpo-home .quick-form { grid-template-columns: 1fr; }
}



/* ---- Mobile HERO readability fix ---- */
@media (max-width: 700px) {
  #longpo-home .hero { padding-top: 48px; overflow: hidden; }
  #longpo-home .hero__grid { gap: 22px; }
  #longpo-home .hero__content { position: relative; z-index: 20; padding-bottom: 12px; }
  #longpo-home .hero__content .eyebrow { margin-bottom: 12px; line-height: 1.45; }
  #longpo-home .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.7vw, 42px);
    line-height: 1.08;
    letter-spacing: -.035em;
    overflow-wrap: break-word;
  }
  #longpo-home .hero h1 span { margin-top: 5px; }
  #longpo-home .hero__lead { margin-top: 18px; font-size: 15px; line-height: 1.58; }
  #longpo-home .hero__actions { margin-top: 26px; gap: 10px; }
  #longpo-home .hero__microcopy { margin-top: 12px; line-height: 1.5; }
  #longpo-home .hero__trust { margin-top: 23px; gap: 10px; }
  #longpo-home .hero__trust li { align-items: flex-start; line-height: 1.45; }
  #longpo-home .hero__trust svg { margin-top: 2px; }

  #longpo-home .hero-visual {
    position: relative;
    z-index: 2;
    min-height: 350px;
    margin-top: 0;
    overflow: visible;
  }
  #longpo-home .hero-slides { inset: 0 0 22px; }
  #longpo-home .hero-product { transform: none !important; }
  #longpo-home .hero-product--main { width: 61%; left: 1%; top: 10px; }
  #longpo-home .hero-product--side { width: 41%; right: 1%; bottom: 14px; }
  #longpo-home .hero-product--single { width: 88%; height: 310px; }
  #longpo-home .hero-product img { padding: 14px 14px 48px; }
  #longpo-home .hero-product--single img { padding: 18px 18px 54px; }
  #longpo-home .hero-product figcaption {
    left: 8px;
    right: 8px;
    bottom: 8px;
    min-height: 34px;
    padding: 7px 9px;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 5px 14px rgba(6,43,76,.10);
  }
  #longpo-home .hero-product figcaption strong {
    min-width: 0;
    max-width: 100%;
    font-size: 11px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }
  #longpo-home .hero-product figcaption span { display: none; }
  #longpo-home .hero-visual__badge { display: none; }
  #longpo-home .hero-slider__dots { bottom: 0; }
  #longpo-home .hero__quick-form { position: relative; z-index: 4; }
}

@media (max-width: 430px) {
  #longpo-home .hero { padding-top: 42px; }
  #longpo-home .hero h1 { font-size: 34px; }
  #longpo-home .hero__lead { font-size: 14.5px; }
  #longpo-home .hero-visual { min-height: 330px; }
  #longpo-home .hero-product--main { width: 63%; }
  #longpo-home .hero-product--side { width: 42%; }
  #longpo-home .hero-product--single { width: 90%; height: 292px; }
}


/* === Full-width two-banner hero carousel === */
#longpo-home .hero { padding-top: 0; }
#longpo-home .hero-carousel { position: relative; min-height: 650px; padding-top: 92px; }
#longpo-home .hero-banner-slide { display: none; animation: heroBannerIn .55s ease both; }
#longpo-home .hero-banner-slide.is-active { display: block; }
@keyframes heroBannerIn { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }
#longpo-home .hero-products { position: absolute; inset: 0; }
#longpo-home .hero-products--double .hero-product--main { width: 66%; }
#longpo-home .hero-products--double .hero-product--side { width: 47%; }
#longpo-home .hero-products--single { display: grid; place-items: center; }
#longpo-home .hero-products--single .hero-product { position: relative; width: 76%; height: 455px; inset: auto; transform: none; }
#longpo-home .hero-products--single .hero-product img { padding: 28px 28px 62px; }
#longpo-home .hero-slider__dots { bottom: 22px; z-index: 30; }
#longpo-home .hero-slider__arrow { position: absolute; top: 48%; z-index: 35; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; background: rgba(4,35,61,.45); color: #fff; font-size: 34px; line-height: 1; display: grid; place-items: center; backdrop-filter: blur(6px); transition: background .2s ease, transform .2s ease; }
#longpo-home .hero-slider__arrow:hover { background: rgba(8,102,182,.85); transform: translateY(-2px); }
#longpo-home .hero-slider__arrow--prev { left: max(14px, calc((100vw - var(--container))/2 - 62px)); }
#longpo-home .hero-slider__arrow--next { right: max(14px, calc((100vw - var(--container))/2 - 62px)); }
@media (max-width: 980px) {
  #longpo-home .hero-carousel { min-height: 980px; padding-top: 70px; }
  #longpo-home .hero-banner-slide .hero__grid { grid-template-columns: 1fr; gap: 22px; }
  #longpo-home .hero-banner-slide .hero__content { position: relative; z-index: 20; padding-bottom: 0; }
  #longpo-home .hero-banner-slide .hero-visual { min-height: 440px; max-width: 650px; width: 100%; margin-inline: auto; }
  #longpo-home .hero-slider__arrow { top: auto; bottom: 22px; width: 40px; height: 40px; font-size: 28px; }
  #longpo-home .hero-slider__arrow--prev { left: calc(50% - 92px); }
  #longpo-home .hero-slider__arrow--next { right: calc(50% - 92px); }
  #longpo-home .hero-slider__dots { bottom: 35px; }
}
@media (max-width: 620px) {
  #longpo-home .hero-carousel { min-height: 0; padding-top: 46px; padding-bottom: 78px; }
  #longpo-home .hero-banner-slide .hero__grid { gap: 18px; }
  #longpo-home .hero-banner-slide .hero__content { z-index: 30; padding-bottom: 8px; }
  #longpo-home .hero-banner-slide h1 { font-size: clamp(32px, 9.2vw, 39px); line-height: 1.08; letter-spacing: -.035em; }
  #longpo-home .hero-banner-slide h1 span { display: block; margin-top: 5px; }
  #longpo-home .hero-banner-slide .hero__lead { font-size: 14.5px; line-height: 1.55; margin-top: 16px; }
  #longpo-home .hero-banner-slide .hero__actions { margin-top: 22px; }
  #longpo-home .hero-banner-slide .hero__trust { margin-top: 20px; }
  #longpo-home .hero-banner-slide .hero-visual { min-height: 330px; margin-top: 5px; z-index: 2; }
  #longpo-home .hero-products--double .hero-product--main { width: 62%; left: 1%; top: 8px; }
  #longpo-home .hero-products--double .hero-product--side { width: 42%; right: 1%; bottom: 12px; }
  #longpo-home .hero-products--single .hero-product { width: 88%; height: 300px; }
  #longpo-home .hero-product img { padding: 14px 14px 50px; }
  #longpo-home .hero-products--single .hero-product img { padding: 18px 18px 56px; }
  #longpo-home .hero-product figcaption { left: 10px; right: 10px; bottom: 8px; min-height: 38px; padding: 7px 9px; border-radius: 8px; background: rgba(255,255,255,.94); align-items: center; }
  #longpo-home .hero-product figcaption strong { font-size: 11px; line-height: 1.25; }
  #longpo-home .hero-product figcaption span { display: none; }
  #longpo-home .hero-visual__badge { display: none; }
  #longpo-home .hero-slider__arrow { bottom: 18px; width: 38px; height: 38px; }
  #longpo-home .hero-slider__arrow--prev { left: calc(50% - 88px); }
  #longpo-home .hero-slider__arrow--next { right: calc(50% - 88px); }
  #longpo-home .hero-slider__dots { bottom: 30px; }
  #longpo-home .hero__quick-form { margin-top: 0; }
}

/* LONGPO: Contact Form 7 markup compatibility; limited to these three forms. */
#longpo-home .longpo-cf7, #longpo-home .longpo-cf7 .wpcf7, #longpo-home .longpo-cf7 .wpcf7-form, #longpo-home .longpo-cf7-field, #longpo-home .longpo-cf7-submit { min-width: 0; width: 100%; }
#longpo-home .longpo-cf7 .wpcf7-form { margin: 0; }
#longpo-home .longpo-cf7 .wpcf7-form p { margin: 0; }
#longpo-home .longpo-cf7 .form-head > p:first-child > span { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
#longpo-home .longpo-cf7 .wpcf7-form-control-wrap { display: block; min-width: 0; width: 100%; color: inherit; font: inherit; }
#longpo-home .longpo-cf7 .longpo-cf7-field br, #longpo-home .longpo-cf7 .longpo-cf7-submit br, #longpo-home .longpo-cf7 .consent br { display: none; }
#longpo-home .longpo-cf7 .quick-form { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto; align-items: start; }
#longpo-home .longpo-cf7 .longpo-cf7-field label { min-width: 0; }
#longpo-home .longpo-cf7 .wpcf7-form-control:not(.wpcf7-acceptance) { max-width: 100%; }
#longpo-home .longpo-cf7 .file-field input[type="file"] { height: auto; min-height: 50px; padding: 10px; white-space: normal; }
#longpo-home .longpo-cf7 .wpcf7-not-valid-tip { display: block; margin-top: 6px; color: #b32828; font-size: 12px; font-weight: 500; line-height: 1.45; }
#longpo-home .longpo-cf7 .wpcf7-not-valid:not(.wpcf7-acceptance) { border-color: #b32828; }
#longpo-home .longpo-cf7 .longpo-cf7-submit { position: relative; }
#longpo-home .longpo-cf7 .longpo-cf7-submit input[type="submit"] {
  appearance: none; width: 100%; height: auto; min-height: 50px; padding: 13px 30px;
  border: 1px solid transparent; border-radius: 9px; background: var(--accent); color: #1e2a35;
  font: inherit; font-size: 14px; font-weight: 800; line-height: 1.35; white-space: normal;
  box-shadow: 0 10px 26px rgba(255,155,53,.24); cursor: pointer;
}
#longpo-home .longpo-cf7 .longpo-cf7-submit input[type="submit"]:hover:not(:disabled) { background: #ffab58; box-shadow: 0 14px 30px rgba(255,155,53,.3); }
#longpo-home .longpo-cf7 .longpo-cf7-submit input[type="submit"]:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
#longpo-home .longpo-cf7 .longpo-cf7-submit input[type="submit"]:disabled { opacity: .55; cursor: not-allowed; transform: none; }
#longpo-home .longpo-cf7 .wpcf7-form.submitting .longpo-cf7-submit input[type="submit"] { opacity: .75; cursor: wait; transform: none; }
#longpo-home .longpo-cf7 .wpcf7-spinner { position: absolute; top: 13px; right: 7px; margin: 0; pointer-events: none; }
#longpo-home .longpo-cf7 .consent { display: block; margin: 17px 0; }
#longpo-home .longpo-cf7 .consent .wpcf7-list-item { display: block; margin: 0; }
#longpo-home .longpo-cf7 .consent .wpcf7-list-item label { display: flex; align-items: flex-start; gap: 9px; cursor: pointer; }
#longpo-home .longpo-cf7 .consent input[type="checkbox"] { appearance: auto; flex: 0 0 16px; width: 16px; height: 16px; min-height: 0; margin: 2px 0 0; padding: 0; border-radius: 3px; accent-color: var(--blue); }
#longpo-home .longpo-cf7 .consent input[type="checkbox"]:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
#longpo-home .longpo-cf7 .consent .wpcf7-list-item-label { color: #617486; font-size: 11px; font-weight: 400; line-height: 1.5; }
#longpo-home .longpo-cf7 .wpcf7 form .wpcf7-response-output { margin: 14px 0 0; padding: 12px 15px; border-radius: 10px; background: #fff; color: #344e63; font-size: 13px; line-height: 1.6; overflow-wrap: anywhere; }
#longpo-home .longpo-cf7 .wpcf7 form.sent .wpcf7-response-output { border-color: #11863a; }
#longpo-home .longpo-cf7 .wpcf7 form.invalid .wpcf7-response-output, #longpo-home .longpo-cf7 .wpcf7 form.unaccepted .wpcf7-response-output, #longpo-home .longpo-cf7 .wpcf7 form.failed .wpcf7-response-output, #longpo-home .longpo-cf7 .wpcf7 form.aborted .wpcf7-response-output, #longpo-home .longpo-cf7 .wpcf7 form.spam .wpcf7-response-output { border-color: #b32828; }
@media (max-width: 720px) {
  #longpo-home .longpo-cf7 .quick-form { grid-template-columns: minmax(0, 1fr); }
}





/* Integration with a classic WordPress theme. Original LONGPO design retained. */
#longpo-home { display: block; font-size: 16px; font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif; color: var(--ink); background: var(--white); line-height: 1.65; }
#longpo-home .container { max-width: none; padding-inline: 0; }
#longpo-home h1, #longpo-home h2, #longpo-home h3, #longpo-home h4, #longpo-home h5, #longpo-home h6 { font-family: inherit; font-weight: 700; }
#longpo-home .hero h1 { color: var(--white); }
#longpo-home .hero__quick-form { padding: 24px 27px; }
#longpo-home .longpo-cf7 { min-width: 0; }
#longpo-home :where(a, button, input, textarea, select):focus-visible { outline: 3px solid #0866b6; outline-offset: 4px; }
#longpo-home .hero :where(a, button):focus-visible,
#longpo-home .footer a:focus-visible { outline-color: #ff9b35; }
#longpo-home .longpo-form-unavailable { padding: 24px; border-radius: 14px; background: #fff; color: #344e63; overflow-wrap: anywhere; }
#longpo-home .longpo-form-unavailable p { margin: 0 0 12px; }
#longpo-home .longpo-form-unavailable a { color: #07599f; text-decoration: underline; }
#longpo-home .longpo-form-unavailable .longpo-admin-note { margin-top: 16px; font-size: 12px; }
body.longpo-homepage.admin-bar #longpo-home .site-header { top: 32px; }
body.longpo-homepage.admin-bar #longpo-home .modal { padding-top: 52px; }
body.longpo-homepage.admin-bar #longpo-home .modal__dialog { max-height: calc(100dvh - 72px); }
#longpo-home .modal__dialog { max-height: calc(100dvh - 40px); }
@media (min-width: 981px) and (max-width: 1120px) {
  #longpo-home .hero-slider__arrow { top: auto; bottom: 22px; width: 40px; height: 40px; font-size: 28px; }
  #longpo-home .hero-slider__arrow--prev { left: calc(50% - 92px); }
  #longpo-home .hero-slider__arrow--next { right: calc(50% - 92px); }
  #longpo-home .hero-slider__dots { bottom: 35px; }
}
@media (max-width: 782px) {
  body.longpo-homepage.admin-bar #longpo-home .site-header { top: 46px; }
  body.longpo-homepage.admin-bar #longpo-home .modal { padding-top: 66px; }
  body.longpo-homepage.admin-bar #longpo-home .modal__dialog { max-height: calc(100dvh - 86px); }
}
@media (max-width: 600px) {
  body.longpo-homepage.admin-bar #longpo-home .site-header { top: 0; }
}
@media (max-width: 700px) {
  #longpo-home .hero__quick-form { padding: 22px 18px; }
  #longpo-home .mobile-cta { padding-bottom: env(safe-area-inset-bottom, 0px); }
  #longpo-home .footer { padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px)); }
}
@media (max-width: 980px) {
  #longpo-home .hero-banner-slide .hero__grid { grid-template-columns: minmax(0, 1fr); }
  #longpo-home .hero__content, #longpo-home .hero-visual { min-width: 0; }
  #longpo-home:not(.js-ready) .menu-toggle { display: none; }
  #longpo-home:not(.js-ready) .header__inner { flex-wrap: wrap; }
  #longpo-home:not(.js-ready) .main-nav { display: flex; position: static; width: 100%; box-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  #longpo-home.has-reveal .reveal { opacity: 1; transform: none; }
}

/* Explicit captions: only the visible main/modal field labels, never CF7 control wraps. */
#longpo-home .longpo-cf7 .longpo-field-label {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static;
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  overflow: visible;
  color: #344e63;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.65;
}
#longpo-home .longpo-cf7 .longpo-field-label small {
  display: inline;
  color: #8192a0;
  font-size: 10px;
  font-weight: 600;
}
