/* =========================================================
   Siemens Parts Supply — English MVP stylesheet
   Industrial B2B design system
   ========================================================= */

:root{
  --navy:#001f39;
  --navy-2:#0a3a5c;
  --blue:#007993;
  --blue-soft:#e3f2fb;
  --link:#1491eb;
  --amber:#f2a900;
  --green:#2e8b57;
  --red:#c0392b;
  --ink:#1a1a2e;
  --muted:#4c4c68;
  --line:#e0e3e8;
  --bg:#f4f5f7;
  --white:#fff;
  --shadow:0 1px 3px rgba(0,31,57,.08),0 4px 14px rgba(0,31,57,.06);
  --radius:8px;
  --font:"Segoe UI",system-ui,-apple-system,"Helvetica Neue",Arial,sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font);color:var(--ink);background:var(--white);line-height:1.65;font-size:16px}
img{max-width:100%;display:block}
a{color:var(--link);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.muted{color:var(--muted)}
.small{font-size:.875rem}

/* ---------- Top bar ---------- */
.topbar{background:var(--navy);color:#cfe0ef;font-size:.8rem}
.topbar-inner{display:flex;justify-content:space-between;align-items:center;gap:16px;padding:6px 20px}
.topbar a{color:#cfe0ef}
.topbar-left,.topbar-right{display:flex;gap:16px;align-items:center;flex-wrap:wrap}
/* Keep the utility bar focused on business hours and email. */
.topbar-right{display:none}

/* ---------- Header / nav ---------- */
.site-header{background:var(--white);border-bottom:1px solid var(--line);position:sticky;top:0;z-index:50}
.site-header.scrolled{box-shadow:var(--shadow)}
.header-main{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:8px 20px}
.logo{display:flex;align-items:center;gap:12px;color:var(--ink)}
.logo:hover{text-decoration:none}
.logo-img{height:56px;width:auto;display:block}
.logo-mark{width:44px;height:44px;border-radius:8px;background:linear-gradient(135deg,var(--blue),var(--navy-2));color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:1.05rem;letter-spacing:.5px}
.logo-text strong{display:block;font-size:1.05rem;color:var(--navy)}
.logo-text small{font-size:.72rem;color:var(--muted);letter-spacing:.2px}
.main-nav{display:flex;align-items:center;gap:4px}
.main-nav > a,.nav-item > button{display:inline-block;padding:9px 12px;border-radius:6px;color:var(--ink);font-size:.92rem;font-weight:600;background:none;border:none;cursor:pointer;font-family:var(--font)}
.main-nav > a:hover,.nav-item > button:hover{color:var(--blue);text-decoration:none}
.nav-item{position:relative}
.nav-item .dropdown{position:absolute;top:100%;left:0;min-width:300px;background:var(--white);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);padding:10px;display:none;grid-template-columns:1fr;gap:2px;z-index:100}
.nav-item:hover .dropdown,.nav-item:focus-within .dropdown{display:grid}
.nav-item .dropdown a{display:block;padding:8px 12px;border-radius:5px;font-size:.85rem;color:var(--ink);font-weight:500;white-space:nowrap}
.nav-item .dropdown a:hover{background:var(--blue-soft);color:var(--blue);text-decoration:none}
.btn{display:inline-block;padding:10px 20px;border-radius:6px;font-weight:700;font-size:.9rem;border:1px solid transparent;cursor:pointer;text-align:center;font-family:var(--font)}
.btn:hover{text-decoration:none}
.btn-accent{background:var(--amber);color:#20303f}
.btn-accent:hover{background:#e09b00}
.btn-blue{background:var(--blue);color:#fff}
.btn-blue:hover{background:#00646e}
.btn-outline{border-color:var(--line);color:var(--ink);background:#fff}
.btn-outline:hover{border-color:var(--blue);color:var(--blue)}
.btn-lg{padding:13px 28px;font-size:1rem}
.nav-toggle{display:none;background:none;border:1px solid var(--line);border-radius:6px;padding:8px 11px;font-size:1.2rem;cursor:pointer}

/* ---------- Hero ---------- */
.hero{background:linear-gradient(135deg,var(--navy) 0%,var(--navy-2) 55%,#0b4f7a 100%);color:#fff;padding:74px 0 66px;position:relative;overflow:hidden}
.hero::after{content:"";position:absolute;right:-120px;top:-120px;width:420px;height:420px;border-radius:50%;background:rgba(255,255,255,.05)}
.hero-inner{max-width:820px;position:relative;z-index:1}
.hero .eyebrow{color:var(--amber);font-weight:700;letter-spacing:1.2px;font-size:.8rem;text-transform:uppercase;margin-bottom:14px}
.hero h1{font-size:2.5rem;line-height:1.22;margin-bottom:16px;font-weight:800}
.hero p{font-size:1.08rem;color:#cfe0ef;max-width:640px;margin-bottom:26px}
.hero-search{display:flex;background:#fff;border-radius:50px;max-width:640px;overflow:hidden;box-shadow:0 8px 26px rgba(0,0,0,.25)}
.hero-search input{flex:1;border:none;padding:15px 22px;font-size:.95rem;outline:none;font-family:var(--font)}
.hero-search button{background:var(--amber);border:none;color:#20303f;font-weight:700;padding:0 26px;cursor:pointer;font-size:.95rem;font-family:var(--font)}
.hero-cta{display:flex;gap:12px;margin-top:22px;flex-wrap:wrap}
.hero-stats{display:flex;gap:38px;margin-top:44px;flex-wrap:wrap}
.hero-stats .stat b{display:block;font-size:1.55rem;color:#fff}
.hero-stats .stat span{font-size:.8rem;color:#9fb8cd}

/* ---------- Section helpers ---------- */
.section{padding:64px 0}
.section.alt{background:var(--bg)}
.section-head{max-width:720px;margin-bottom:36px}
.section-head .eyebrow{color:var(--blue);font-weight:700;letter-spacing:1.1px;font-size:.78rem;text-transform:uppercase}
.section-head h2{font-size:1.9rem;color:var(--navy);margin:8px 0 10px;line-height:1.25}
.section-head p{color:var(--muted)}
.center{text-align:center;margin-left:auto;margin-right:auto}

/* ---------- Trust bar ---------- */
.trust-bar{background:#fff;border-bottom:1px solid var(--line)}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;padding:20px 0}
.trust-item{display:flex;gap:12px;align-items:center;font-size:.88rem;font-weight:600}
.trust-item .ico{flex:none;width:38px;height:38px;border-radius:50%;background:var(--blue-soft);color:var(--blue);display:flex;align-items:center;justify-content:center;font-size:1.05rem}

/* ---------- Cards ---------- */
.grid{display:grid;gap:20px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.cat-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:22px;transition:.18s}
.cat-card:hover{box-shadow:var(--shadow);border-color:#b9c9d8;transform:translateY(-2px)}
.cat-card .cat-ico{width:52px;height:52px;border-radius:10px;background:var(--blue-soft);color:var(--blue);display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin-bottom:14px}
.home-page .cat-card[href^="products/"]{padding:0;overflow:hidden;display:flex;flex-direction:column}.home-page .cat-card[href^="products/"] .cat-ico{display:none}.home-page .cat-card[href^="products/"]::before{content:"";height:170px;display:block;background-color:#e7f1f4;background-position:center;background-repeat:no-repeat;background-size:contain;border-bottom:1px solid var(--line);transition:transform .25s}.home-page .cat-card[href^="products/"]:hover::before{transform:scale(1.04)}.home-page .cat-card[href="products/automation-technology.html"]::before{background-image:url("../images/products/cpu-1511.jpg")}.home-page .cat-card[href="products/drive-technology.html"]::before{background-image:url("../images/products/g120-pm240.jpg");background-color:#e6eef5}.home-page .cat-card[href="products/low-voltage-controls.html"]::before{background-image:url("../images/products/contactor-3rt2027.jpg");background-color:#f2ede1}.home-page .cat-card[href="products/industrial-communication.html"]::before{background-image:url("../images/products/et200sp-di.jpg")}.home-page .cat-card[href="products/process-instrumentation.html"]::before{background-image:url("../images/products/sitrans-lr250.jpg");background-color:#e5f1eb}.home-page .cat-card[href="products/power-supplies.html"]::before{background-image:url("../images/products/mcb-5sy4.jpg");background-color:#f2edf3}.home-page .cat-card[href^="products/"] h3{margin:20px 22px 8px}.home-page .cat-card[href^="products/"] p{margin:0 22px 16px;line-height:1.6}.home-page .cat-card[href^="products/"] .more{margin-left:22px}.home-page .cat-card[href^="products/"] .count{margin-right:22px}.home-page .cat-card[href^="products/"] .more,.home-page .cat-card[href^="products/"] .count{margin-bottom:21px}
.cat-card h3{font-size:1.02rem;color:var(--navy);margin-bottom:6px}
.cat-card p{font-size:.84rem;color:var(--muted);margin-bottom:12px}
.cat-card .more{font-size:.82rem;font-weight:700}
.cat-card .count{font-size:.74rem;color:#8fa1b2;margin-left:6px;font-weight:500}

.prod-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;display:flex;flex-direction:column;transition:.18s}
.prod-card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.prod-thumb{height:150px;background:linear-gradient(160deg,#eef4f9,#dce9f2);display:flex;align-items:center;justify-content:center;color:#7d94a8;font-size:.8rem;font-weight:600;letter-spacing:.4px;border-bottom:1px solid var(--line)}
.prod-thumb img{width:100%;height:100%;object-fit:contain;padding:8px;background:#fff}
.prod-body{padding:15px 16px;display:flex;flex-direction:column;flex:1}
.prod-body .mlfb{font-family:var(--font);font-variant-numeric:normal;font-feature-settings:"zero" 0;font-size:.82rem;color:var(--blue);font-weight:700}
.prod-body h3{font-size:.94rem;margin:5px 0 8px;line-height:1.35;color:var(--navy)}
.prod-body .tags{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:12px}
.badge{display:inline-block;font-size:.7rem;font-weight:700;padding:3px 9px;border-radius:20px;letter-spacing:.3px}
.badge.stock{background:#e3f3e9;color:var(--green)}
.badge.special{background:#fdeed0;color:#8a5a00}
.badge.legacy{background:#ece3f7;color:#6b3fa0}
.badge.info{background:var(--blue-soft);color:var(--blue)}
.prod-body .btn{margin-top:auto;font-size:.84rem;padding:9px 14px}

/* ---------- Tables ---------- */
.table-wrap{overflow-x:auto;background:#fff;border:1px solid var(--line);border-radius:var(--radius)}
table.spec{width:100%;border-collapse:collapse;font-size:.88rem}
table.spec th,table.spec td{padding:11px 16px;text-align:left;border-bottom:1px solid var(--line);vertical-align:top}
table.spec th,table.spec td{background:#fff}
table.spec th{color:var(--navy);font-weight:700;width:38%}
table.spec tr:last-child td,table.spec tr:last-child th{border-bottom:none}
table.list{width:100%;border-collapse:collapse;font-size:.9rem}
table.list th,table.list td{padding:12px 14px;border-bottom:1px solid var(--line);text-align:left}
table.list th{background:var(--navy);color:#fff;font-weight:600;font-size:.84rem}
table.list tr:nth-child(even){background:#f8fafc}

/* ---------- Page hero / breadcrumbs ---------- */
.page-hero{background:linear-gradient(135deg,var(--navy),var(--navy-2));color:#fff;padding:46px 0 42px}
.page-hero h1{font-size:1.9rem;font-weight:800;margin:6px 0 10px}
.page-hero p{color:#cfe0ef;max-width:760px;font-size:.98rem}

/* ---------- Services page ---------- */
.service-nav{background:#fff;border-bottom:1px solid var(--line);position:sticky;top:73px;z-index:20}
.service-nav-inner{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;padding:12px 20px}
.service-nav a{color:var(--navy);font-size:.82rem;font-weight:700;padding:5px 12px;border-radius:20px}
.service-nav a:hover{background:var(--blue-soft);color:var(--blue);text-decoration:none}
.service-overview{padding-bottom:52px}
.service-highlights{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;background:#fff}
.service-highlights div{padding:19px 22px;border-right:1px solid var(--line)}
.service-highlights div:last-child{border-right:0}
.service-highlights strong{display:block;color:var(--blue);font-size:1.35rem;line-height:1.2}
.service-highlights span{display:block;color:var(--muted);font-size:.78rem;margin-top:5px}
.service-detail-heading{display:flex;gap:18px;align-items:flex-start;max-width:880px;margin-bottom:30px}
.service-detail-heading .eyebrow{color:var(--blue);font-weight:700;letter-spacing:1.1px;font-size:.78rem;text-transform:uppercase}
.service-detail-heading h2{font-size:1.8rem;color:var(--navy);line-height:1.25;margin:6px 0 10px}
.service-icon{width:48px;height:48px;flex:none;display:flex;align-items:center;justify-content:center;border-radius:10px;background:var(--navy);color:#fff;font-size:.83rem;font-weight:800;letter-spacing:.5px}
.service-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:22px}
.service-card h3,.support-panel h3,.service-aside h3{color:var(--navy);font-size:1rem;margin-bottom:9px}
.service-card .icon-list li{font-size:.84rem}
.support-layout{display:grid;grid-template-columns:1.65fr .85fr;gap:22px}
.support-panel,.service-aside{border:1px solid var(--line);border-radius:var(--radius);padding:24px;background:#fff}
.support-list{display:grid;grid-template-columns:1fr 1fr;gap:0 24px}
.support-list div{padding:13px 0;border-top:1px solid var(--line)}
.support-list b{display:block;color:var(--navy);font-size:.9rem;margin-bottom:3px}
.support-list span{color:var(--muted);font-size:.82rem;line-height:1.5}
.service-aside{background:var(--blue-soft);border-color:#c5dfeb}
.service-aside p{color:var(--muted);font-size:.86rem;margin-bottom:17px}
.shipping-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.shipping-grid article{background:#fff;border:1px solid var(--line);border-top:3px solid var(--blue);border-radius:var(--radius);padding:20px;min-height:170px}
.shipping-grid h3{font-size:.97rem;color:var(--navy);margin-bottom:7px}.shipping-grid p{font-size:.83rem;color:var(--muted);margin-bottom:14px}
.delivery-tag{display:inline-block;background:var(--blue-soft);color:var(--blue);font-weight:700;border-radius:14px;padding:3px 8px;font-size:.7rem}
.document-strip{display:flex;gap:8px;align-items:center;flex-wrap:wrap;border:1px solid var(--line);background:#fff;padding:14px 17px;border-radius:var(--radius);margin-top:18px;font-size:.78rem;color:var(--muted)}
.document-strip b{color:var(--navy);margin-right:5px}.document-strip span{background:var(--bg);border-radius:12px;padding:3px 9px}
.assurance-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.assurance-item{display:flex;gap:14px;padding:17px;border:1px solid var(--line);border-radius:var(--radius);background:#fff}
.assurance-item>b{width:27px;height:27px;flex:none;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--green);color:#fff;font-size:.78rem}
.assurance-item h3{font-size:.93rem;color:var(--navy);margin-bottom:3px}.assurance-item p{font-size:.82rem;color:var(--muted);line-height:1.5}
.policy-note{background:#fff8e6;border:1px solid #f2d98c;border-radius:var(--radius);color:#6b5410;font-size:.84rem;padding:14px 17px;margin-top:18px}

/* ---------- About page ---------- */
.about-nav{background:#fff;border-bottom:1px solid var(--line)}
.about-nav-inner{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;padding:12px 20px}
.about-nav a{color:var(--navy);font-size:.82rem;font-weight:700;padding:5px 12px;border-radius:20px}.about-nav a:hover{background:var(--blue-soft);color:var(--blue);text-decoration:none}
.about-intro{display:grid;grid-template-columns:1.55fr .75fr;gap:46px;align-items:center}.about-intro .eyebrow,.commitment-layout .eyebrow{color:var(--blue);font-weight:700;letter-spacing:1.1px;font-size:.78rem;text-transform:uppercase}
.about-intro h2,.commitment-layout h2{font-size:1.9rem;color:var(--navy);line-height:1.25;margin:7px 0 13px}.about-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:23px}
.about-focus{background:var(--navy);border-radius:var(--radius);padding:26px;color:#fff}.about-focus .eyebrow{color:var(--amber);font-weight:700;letter-spacing:1px;font-size:.75rem;text-transform:uppercase}.about-focus h3{font-size:1.2rem;line-height:1.35;margin:7px 0 12px}.about-focus .icon-list li{font-size:.84rem;color:#d5e3ee;border-top:1px solid rgba(255,255,255,.13)}.about-focus .icon-list li::before{color:var(--amber)}
.about-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:15px}.about-stats div{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:21px}.about-stats strong{display:block;color:var(--blue);font-size:1.6rem;line-height:1.1}.about-stats span{display:block;font-size:.8rem;color:var(--muted);line-height:1.45;margin-top:7px}
.about-card{border:1px solid var(--line);border-radius:var(--radius);padding:23px;background:#fff}.about-card>span{display:inline-flex;width:32px;height:32px;border-radius:50%;align-items:center;justify-content:center;background:var(--blue-soft);color:var(--blue);font-size:.75rem;font-weight:800}.about-card h3{font-size:1.04rem;color:var(--navy);margin:14px 0 6px}.about-card p{font-size:.85rem;color:var(--muted);margin-bottom:13px}.about-card a{font-size:.82rem;font-weight:700}
.about-timeline{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.about-timeline article{position:relative;padding:20px 17px;background:#fff;border:1px solid var(--line);border-radius:var(--radius)}.about-timeline b{display:flex;width:30px;height:30px;align-items:center;justify-content:center;border-radius:50%;background:var(--blue);color:#fff;font-size:.78rem;margin-bottom:12px}.about-timeline h3{font-size:.96rem;color:var(--navy);margin-bottom:6px}.about-timeline p{font-size:.82rem;color:var(--muted);line-height:1.5}
.commitment-layout{display:grid;grid-template-columns:1.5fr .8fr;gap:42px;align-items:start}.commitment-list{display:grid;grid-template-columns:1fr 1fr;gap:0 28px;margin-top:22px}.commitment-list div{padding:13px 0;border-top:1px solid var(--line)}.commitment-list b{display:block;font-size:.89rem;color:var(--navy);margin-bottom:3px}.commitment-list span{display:block;font-size:.81rem;line-height:1.5;color:var(--muted)}
.compliance-card{background:#fff8e6;border:1px solid #f2d98c;border-radius:var(--radius);padding:23px}.compliance-card h3{color:#6b5410;font-size:1rem;margin-bottom:8px}.compliance-card p{color:#6b5410;font-size:.84rem;line-height:1.6;margin-bottom:17px}

/* ---------- About page redesign ---------- */
.about-hero{background:linear-gradient(120deg,#001f39 0%,#062f4b 56%,#075875 100%);color:#fff;overflow:hidden;position:relative}.about-hero::before{content:"";position:absolute;width:620px;height:620px;border-radius:50%;right:-240px;top:-310px;border:1px solid rgba(255,255,255,.12);box-shadow:0 0 0 70px rgba(255,255,255,.025),0 0 0 140px rgba(255,255,255,.018)}
.about-hero-grid{min-height:570px;display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:center;position:relative}.about-hero-copy{padding:58px 0}.about-hero .breadcrumbs{margin-bottom:26px}.about-hero .breadcrumbs a{color:#cfe0ef}.about-hero .eyebrow,.about-section-heading .eyebrow,.about-workflow .eyebrow,.commitment-title .eyebrow{color:var(--amber);font-weight:800;letter-spacing:1.35px;font-size:.76rem;text-transform:uppercase}.about-hero h1{font-size:3.25rem;max-width:660px;line-height:1.08;letter-spacing:-1.2px;margin:13px 0 18px}.about-hero-lead{max-width:590px;color:#d2e2ed;font-size:1.08rem;line-height:1.72}.about-hero-actions{display:flex;gap:20px;align-items:center;flex-wrap:wrap;margin:30px 0 32px}.about-text-link{color:#fff;font-size:.88rem;font-weight:700}.about-text-link:hover{color:var(--amber);text-decoration:none}.about-text-link span{font-size:1.2rem;margin-left:3px}.about-hero-proof{display:flex;gap:25px;flex-wrap:wrap}.about-hero-proof span{border-left:1px solid rgba(255,255,255,.27);padding-left:12px;color:#a9c2d2;font-size:.74rem;line-height:1.4}.about-hero-proof b{display:block;color:#fff;font-size:1.1rem}
.about-proof-media{padding:88px 0 80px;background:#fbfcfc}.proof-media-top{display:grid;grid-template-columns:1.1fr .65fr;gap:50px;align-items:end;margin-bottom:30px}.proof-media-top .eyebrow,.certificate-intro .eyebrow,.marquee-heading .eyebrow{color:var(--blue);font-weight:800;letter-spacing:1.2px;font-size:.75rem;text-transform:uppercase}.proof-media-top h2{font-size:2.05rem;color:var(--navy);line-height:1.16;margin-top:8px}.proof-media-top>p{font-size:.88rem;line-height:1.68;color:var(--muted)}.proof-media-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:16px}.company-video-slot{background:linear-gradient(135deg,#062e48,#12607c);min-height:390px;color:#fff;border-radius:var(--radius);padding:22px;display:flex;flex-direction:column;justify-content:space-between;position:relative;overflow:hidden}.company-video-slot::after{content:"";position:absolute;width:280px;height:280px;border:1px solid rgba(255,255,255,.18);border-radius:50%;right:-90px;bottom:-150px;box-shadow:0 0 0 50px rgba(255,255,255,.025)}.video-slot-top,.video-slot-bottom{display:flex;gap:9px;align-items:center;position:relative;z-index:1;font-size:.68rem;letter-spacing:1px;font-weight:800;color:#b9d5e2}.live-dot{width:8px;height:8px;border-radius:50%;background:var(--amber)}.video-slot-center{text-align:center;position:relative;z-index:1}.video-play{display:flex;align-items:center;justify-content:center;width:74px;height:74px;border-radius:50%;border:1px solid rgba(255,255,255,.7);background:rgba(255,255,255,.1);color:#fff;font-size:1.3rem;padding-left:5px;margin:0 auto 16px;cursor:pointer}.video-play:hover{background:var(--amber);border-color:var(--amber);color:var(--navy)}.video-slot-center p{font-size:1.04rem;font-weight:700;max-width:280px;margin:0 auto 7px;line-height:1.4}.video-slot-center small{color:#b6cfdb;font-size:.72rem}.video-slot-center code{color:#fff}.video-slot-bottom{justify-content:space-between;font-size:.64rem;letter-spacing:0}.company-scenes{display:grid;grid-template-columns:1fr 1fr;gap:16px}.scene-card{min-height:187px;border:1px solid var(--line);border-radius:var(--radius);padding:16px;display:flex;justify-content:space-between;flex-direction:column;background:linear-gradient(135deg,#e7f0f3,#c1d8df);color:var(--navy);position:relative;overflow:hidden}.scene-card::after{content:"";position:absolute;width:145px;height:145px;right:-35px;top:-32px;border:13px solid rgba(255,255,255,.35);border-radius:50%}.scene-card:nth-child(3){grid-column:1 / -1;min-height:187px;background:linear-gradient(135deg,#d9e8e9,#b7cfd7)}.scene-card>span{font-size:.72rem;font-weight:800;color:var(--blue);z-index:1}.scene-card div{z-index:1}.scene-card b{display:block;font-size:.96rem}.scene-card small{display:block;color:#426173;font-size:.73rem;margin-top:2px}.certificate-row{display:grid;grid-template-columns:1.3fr repeat(3,1fr);gap:12px;margin-top:16px}.certificate-intro{padding:13px 7px}.certificate-intro h3{color:var(--navy);font-size:1.08rem;line-height:1.25;margin:5px 0}.certificate-intro p:last-child{font-size:.76rem;color:var(--muted)}.certificate-slot{min-height:110px;border:1px dashed #9db8c3;background:#fff;border-radius:var(--radius);padding:15px;display:flex;flex-direction:column}.certificate-slot span{font-size:.68rem;color:var(--blue);font-weight:800}.certificate-slot b{font-size:.84rem;color:var(--navy);margin-top:auto}.certificate-slot small{font-size:.7rem;color:var(--muted);margin-top:2px}
.product-marquee-section{background:var(--navy);padding:68px 0 0;overflow:hidden}.marquee-heading{display:grid;grid-template-columns:1fr auto;gap:20px;align-items:end;padding-bottom:29px}.marquee-heading .eyebrow{color:var(--amber)}.marquee-heading h2{color:#fff;font-size:1.8rem;line-height:1.2;margin-top:7px}.marquee-heading a{color:#d7e8ef;font-size:.83rem;font-weight:800;margin-bottom:3px}.marquee-heading a span{font-size:1.15rem}.product-marquee{width:100%;mask-image:linear-gradient(to right,transparent,#000 5%,#000 95%,transparent)}.product-marquee-track{display:flex;gap:14px;width:max-content;padding:0 0 34px;animation:product-scroll 38s linear infinite}.product-marquee:hover .product-marquee-track{animation-play-state:paused}.marquee-product{width:170px;height:182px;background:#fff;border-radius:5px;padding:12px;display:flex;flex-direction:column;justify-content:space-between}.marquee-product img{width:100%;height:125px;object-fit:contain}.marquee-product span{color:var(--navy);font-size:.69rem;font-weight:800;text-align:center}@keyframes product-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.sales-history-section{padding-top:70px}.sales-history-section .marquee-heading{align-items:end}.sales-history-section .marquee-heading>a{display:flex;align-items:center;gap:5px;color:#d7e8ef;font-size:.83rem;font-weight:800;margin-bottom:3px}.sales-history-section .marquee-heading>a:hover{color:var(--amber)}.sales-history-section .marquee-heading>div>p:last-child{max-width:650px;color:#b9d2df;font-size:.83rem;line-height:1.65;margin-top:12px}.sale-photo-card{width:238px;height:212px;position:relative;padding:0;overflow:hidden;background:#163f57;border:1px solid rgba(255,255,255,.16)}.sale-photo-card img{height:166px;width:100%;object-fit:cover}.sale-photo-card figcaption{display:flex;align-items:center;height:46px;padding:0 12px;color:#082e47;background:#fff;font-size:.7rem;font-weight:800}.sales-photo-empty{display:none}.sale-photo-card.is-empty .sales-photo-empty{height:166px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;text-align:center;color:#d1e5ed;background:linear-gradient(145deg,#164d67,#0a3049);border-bottom:1px solid rgba(255,255,255,.16)}.sale-photo-card.is-empty .sales-photo-empty b{font-size:.75rem;letter-spacing:.4px}.sale-photo-card.is-empty .sales-photo-empty small{font-size:.68rem;color:#97bdcc}.sales-photo-marquee .product-marquee-track{animation-duration:46s}
.about-visual{height:440px;position:relative;isolation:isolate}.visual-glow{width:260px;height:260px;background:var(--amber);opacity:.13;border-radius:50%;filter:blur(12px);position:absolute;left:60px;top:90px}.visual-board{position:absolute;z-index:2;right:36px;top:65px;width:248px;height:292px;padding:35px 27px;background:linear-gradient(145deg,#f7fbfc,#b9d6df);box-shadow:-18px 20px 44px rgba(0,0,0,.28);border-radius:6px;border:9px solid #e9f3f6;color:#0a3a5c;font-weight:900;font-size:1.45rem;line-height:1.04;letter-spacing:1px}.visual-board i{display:block;width:100%;height:13px;background:#548195;border-radius:2px;margin-top:18px;opacity:.6}.visual-board i:nth-of-type(2){width:72%}.visual-board i:nth-of-type(3){width:88%}.visual-board i:nth-of-type(4){width:54%}.visual-module{position:absolute;z-index:3;background:#fff;color:var(--navy);border-radius:5px;padding:12px 14px;box-shadow:0 13px 24px rgba(0,0,0,.2);min-width:106px}.visual-module b{font-size:.86rem;display:block}.visual-module small{font-size:.67rem;color:var(--green);font-weight:800}.module-one{left:21px;top:108px}.module-two{left:80px;bottom:43px}.visual-route{height:1px;position:absolute;z-index:1;border-top:1px dashed rgba(255,255,255,.65);transform-origin:left}.route-one{width:190px;left:92px;top:155px;transform:rotate(18deg)}.route-two{width:175px;left:130px;bottom:108px;transform:rotate(-22deg)}.visual-label{position:absolute;color:#d0e4ec;font-size:.71rem;font-weight:700;letter-spacing:1px;text-transform:uppercase}.label-one{top:74px;left:25px}.label-two{right:2px;bottom:44px}.label-three{left:194px;bottom:9px}
.about-intro-section{padding:96px 0 86px}.about-editorial{display:grid;grid-template-columns:.6fr 1.15fr 1fr;gap:45px;align-items:start}.editorial-kicker{display:flex;gap:10px;align-items:center;color:var(--blue);font-size:.75rem;font-weight:800;letter-spacing:1px;text-transform:uppercase}.editorial-kicker span{font-size:1.35rem}.about-editorial h2{font-size:2.3rem;color:var(--navy);line-height:1.15;letter-spacing:-.6px}.editorial-copy p{color:var(--muted);font-size:.95rem;line-height:1.75;margin-bottom:16px}.about-text-link.dark{color:var(--blue)}
.about-metric-band{background:var(--navy);color:#fff}.about-metric-grid{display:grid;grid-template-columns:repeat(4,1fr)}.about-metric-grid>div{padding:29px 23px;border-right:1px solid #274b64}.about-metric-grid>div:last-child{border:none}.about-metric-grid strong{display:block;color:var(--amber);font-size:1.55rem;line-height:1.2}.about-metric-grid span{display:block;color:#bfd1df;font-size:.76rem;line-height:1.45;margin-top:6px}
.about-services{padding:92px 0}.about-section-heading{display:grid;grid-template-columns:1fr .7fr;gap:50px;align-items:end;margin-bottom:34px}.about-section-heading h2,.about-workflow h2,.commitment-title h2{font-size:2.15rem;color:var(--navy);line-height:1.16;letter-spacing:-.5px;margin-top:8px}.about-section-heading>p{color:var(--muted);font-size:.91rem;line-height:1.7}.about-capability-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--line);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden}.capability-feature{background:#fff;padding:30px 28px;min-height:270px;display:flex;flex-direction:column}.capability-feature>span{color:var(--blue);font-size:.75rem;font-weight:800}.capability-feature h3{color:var(--navy);font-size:1.2rem;margin:25px 0 8px}.capability-feature p{font-size:.84rem;line-height:1.65;color:var(--muted)}.capability-feature a{margin-top:auto;padding-top:18px;font-size:.81rem;font-weight:800}.capability-feature a b{font-size:1.1rem;margin-left:5px}.feature-dark{background:var(--blue);color:#fff}.feature-dark>span{color:#bdeaf1}.feature-dark h3,.feature-dark p,.feature-dark a{color:#fff}
.about-workflow{background:#e8f3f5;padding:88px 0}.about-workflow-top{display:flex;justify-content:space-between;align-items:end;gap:24px;margin-bottom:39px}.about-workflow .eyebrow{color:var(--blue)}.workflow-track{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid #a6c4ce}.workflow-track article{padding:20px 22px 0 0;position:relative}.workflow-track article:not(:first-child){padding-left:22px}.workflow-track span{display:flex;width:29px;height:29px;border-radius:50%;background:var(--navy);color:#fff;align-items:center;justify-content:center;font-size:.68rem;font-weight:800;margin-top:-35px;margin-bottom:18px}.workflow-track h3{color:var(--navy);font-size:1rem;margin-bottom:5px}.workflow-track p{font-size:.81rem;color:var(--muted);line-height:1.55}
.about-commitment{padding:92px 0}.commitment-redesign{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px}.commitment-title>p:last-child{color:var(--muted);font-size:.94rem;line-height:1.72;margin-top:15px}.commitment-points article{display:flex;gap:18px;border-top:1px solid var(--line);padding:17px 0}.commitment-points article:last-child{border-bottom:1px solid var(--line)}.commitment-points b{color:var(--blue);font-size:.78rem;padding-top:2px}.commitment-points h3{font-size:.98rem;color:var(--navy);margin-bottom:3px}.commitment-points p{font-size:.83rem;line-height:1.55;color:var(--muted)}.about-compliance{background:#f7f2e5;border-top:1px solid #e7dcb9;border-bottom:1px solid #e7dcb9}.about-compliance .container{padding-top:19px;padding-bottom:19px;display:flex;gap:25px;justify-content:space-between;align-items:center}.about-compliance p{font-size:.78rem;line-height:1.55;color:#665c45;max-width:880px}.about-compliance a{white-space:nowrap;font-size:.8rem;font-weight:800}
.breadcrumbs{font-size:.8rem;color:#9fb8cd;margin-bottom:8px}
.breadcrumbs a{color:#cfe0ef}

/* ---------- Product detail ---------- */
.pd-layout{display:grid;grid-template-columns:1fr 1fr;gap:34px;padding:44px 0}
.pd-gallery .pd-main{height:340px;background:linear-gradient(160deg,#eef4f9,#dce9f2);border:1px solid var(--line);border-radius:var(--radius);display:flex;flex-direction:column;align-items:center;justify-content:center;color:#7d94a8;gap:8px;font-size:.85rem}
.pd-gallery .pd-main img{max-height:320px;max-width:100%;object-fit:contain;padding:10px}
.pd-gallery .pd-main b{color:#5d768c;font-size:1.4rem;font-family:var(--font);font-variant-numeric:normal;font-feature-settings:"zero" 0}
.pd-info h1{font-size:1.6rem;color:var(--navy);line-height:1.3}
.pd-info .mlfb-line{font-family:var(--font);font-variant-numeric:normal;font-feature-settings:"zero" 0;color:var(--blue);font-weight:700;font-size:1rem;margin:8px 0 12px;display:block}
.pd-meta{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0 18px}.pd-meta .badge{font-size:.82rem;padding:4px 10px}
.pd-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:20px}
.pd-actions .btn{flex:1 1 0;min-width:170px}
.pd-note{background:#fff8e6;border:1px solid #f2d98c;border-radius:var(--radius);padding:12px 16px;font-size:.84rem;color:#6b5410;margin-top:18px}

/* ---------- Steps / features ---------- */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.step{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:22px;position:relative}
.step .num{width:34px;height:34px;border-radius:50%;background:var(--blue);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;margin-bottom:12px}
.step h4{font-size:.98rem;color:var(--navy);margin-bottom:6px}
.step p{font-size:.84rem;color:var(--muted)}

/* ---------- FAQ ---------- */
.faq-item{border:1px solid var(--line);border-radius:var(--radius);margin-bottom:10px;background:#fff;overflow:hidden}
.faq-q{width:100%;text-align:left;background:none;border:none;padding:16px 18px;font-size:.96rem;font-weight:700;color:var(--navy);cursor:pointer;font-family:var(--font);display:flex;justify-content:space-between;gap:12px;align-items:center}
.faq-q::after{content:"+";font-size:1.2rem;color:var(--blue);font-weight:700}
.faq-item.open .faq-q::after{content:"−"}
.faq-a{max-height:0;overflow:hidden;transition:max-height .25s ease}
.faq-a-inner{padding:0 18px 16px;font-size:.9rem;color:var(--muted)}
.faq-item.open .faq-a{max-height:600px}

/* ---------- Forms ---------- */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.form-group{display:flex;flex-direction:column;gap:6px}
.form-group.full{grid-column:1 / -1}
label{font-size:.84rem;font-weight:700;color:var(--navy)}
input,select,textarea{border:1px solid var(--line);border-radius:6px;padding:11px 13px;font-size:.9rem;font-family:var(--font);background:#fff;width:100%}
input:focus,select:focus,textarea:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 3px rgba(0,114,188,.12)}
.form-note{font-size:.78rem;color:var(--muted)}
.quote-box{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:28px;box-shadow:var(--shadow)}

/* ---------- CTA band ---------- */
.cta-band{background:linear-gradient(120deg,var(--blue),var(--navy-2));color:#fff;text-align:center;padding:58px 20px}
.cta-band h2{font-size:1.7rem;margin-bottom:10px}
.cta-band p{color:#d9e9f5;margin-bottom:24px}

/* ---------- Testimonials ---------- */
.quote-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:22px}
.review-stars{color:#e4a117;font-size:1.05rem;letter-spacing:2px;line-height:1;margin-bottom:13px}
.product-reviews{padding:74px 0;background:#f5f9fa}.product-reviews-heading{display:grid;grid-template-columns:1fr .72fr;gap:48px;align-items:end;margin-bottom:28px}.product-reviews .eyebrow{color:#008aa7;font-size:.73rem;font-weight:800;letter-spacing:1.1px}.product-reviews h2{color:var(--navy);font-size:1.9rem;line-height:1.18;margin-top:7px}.product-reviews-heading>p{color:var(--muted);font-size:.86rem;line-height:1.65}.review-card{background:#fff;border:1px solid #d7e2e7;border-radius:8px;padding:25px 23px;box-shadow:0 7px 20px rgba(14,46,68,.045)}.review-card blockquote{font-size:.89rem;color:var(--ink);font-style:italic;line-height:1.65;margin:0 0 17px}.review-card cite{font-style:normal;color:var(--muted);font-size:.75rem}
.product-detail-page .pd-layout{box-sizing:border-box;max-width:1200px;padding-top:54px;padding-bottom:54px}.product-detail-page .pd-gallery .pd-main{background:linear-gradient(145deg,#edf6f8,#d8e9ee);border-color:#c9dde3;box-shadow:0 8px 22px rgba(5,61,83,.07)}.product-detail-page .pd-info{border-left:2px solid #d7e8ed;padding-left:28px}.product-detail-page .section.alt{background:#f5f9fa}.product-detail-page .section .container,.product-detail-page .pd-layout{max-width:1200px}.review-submit{display:grid;grid-template-columns:.72fr 1.28fr;gap:34px;align-items:start;margin-top:27px;padding:27px 28px;background:#e3f1f4;border:1px solid #bed8df;border-radius:8px}.review-submit .eyebrow{margin-bottom:7px}.review-submit h3{color:var(--navy);font-size:1.1rem}.review-submit>div>p:last-child{font-size:.78rem;color:#526d7d;line-height:1.55;margin-top:8px}.product-review-form fieldset{border:0;padding:0;margin:0}.product-review-form legend{font-size:.78rem;font-weight:800;color:var(--navy);margin-bottom:7px}.review-rating{display:flex;gap:9px;align-items:center}.review-rating label{cursor:pointer}.review-rating input{position:absolute;opacity:0;pointer-events:none}.review-rating span{color:#d69a19;font-size:1rem;letter-spacing:1px}.review-rating input:checked+span{color:#b87700;text-shadow:0 1px 0 rgba(255,255,255,.6)}.review-form-fields{display:grid;grid-template-columns:.7fr 1.3fr;gap:10px;margin-top:12px}.review-form-fields input,.review-form-fields textarea{width:100%;box-sizing:border-box;border:1px solid #b8d0d7;border-radius:5px;background:#fff;padding:10px;font:inherit;font-size:.78rem;color:var(--ink)}.review-form-fields textarea{resize:vertical}.review-form-action{display:flex;gap:13px;align-items:center;margin-top:12px}.review-form-status{font-size:.75rem;color:#176a55;line-height:1.4}
.review-form-status.is-error{color:#b3261e;font-weight:700}
.review-rating span{transition:transform .15s ease,color .15s ease}
.review-rating label:hover span{transform:scale(1.18)}
.review-rating input:focus-visible+span{outline:2px solid var(--blue);outline-offset:2px;border-radius:3px}
.quote-card blockquote{font-size:.92rem;color:var(--ink);font-style:italic;margin-bottom:14px}
.quote-card cite{font-style:normal;font-size:.82rem;color:var(--muted)}

/* ---------- Footer ---------- */
.site-footer{background:var(--navy);color:#c8d8e6;margin-top:0}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr 1.2fr;gap:34px;padding:52px 20px 36px}
.site-footer h4{color:#fff;font-size:.95rem;margin-bottom:14px}
.site-footer ul{list-style:none}
.site-footer li{margin-bottom:8px;font-size:.86rem}
.site-footer a{color:#c8d8e6}
.site-footer a:hover{color:#fff}
.footer-about p{font-size:.84rem;color:#9fb4c7;margin:10px 0 16px}
.footer-bottom{border-top:1px solid #274666;padding:20px;font-size:.78rem;color:#8ea6bb;text-align:center}
.footer-bottom .legal-links{display:flex;gap:18px;justify-content:center;flex-wrap:wrap;margin-bottom:10px}
.trademark{margin-top:10px;color:#7590a8;max-width:900px;margin-left:auto;margin-right:auto;line-height:1.55}

/* ---------- Utilities ---------- */
.mt-1{margin-top:10px}.mt-2{margin-top:20px}.mt-3{margin-top:30px}.mt-4{margin-top:44px}
.mb-2{margin-bottom:20px}.mb-3{margin-bottom:30px}
.lead{font-size:1.05rem;color:var(--muted)}
.divider{border:none;border-top:1px solid var(--line);margin:8px 0}
.icon-list{list-style:none}
.icon-list li{padding:7px 0 7px 30px;position:relative;font-size:.92rem}
.icon-list li::before{content:"✓";position:absolute;left:0;color:var(--green);font-weight:800}
.chip{display:inline-block;background:var(--bg);border:1px solid var(--line);border-radius:20px;padding:5px 13px;font-size:.8rem;margin:3px 4px 3px 0;color:var(--ink);font-weight:600}

/* ---------- SiePortal-style category tabs ---------- */
.cat-tabs{display:flex;gap:2px;flex-wrap:wrap;background:#0b3350;border-radius:8px 8px 0 0;padding:4px}
.cat-tabs a{color:#cfe0ef;padding:9px 16px;font-size:.82rem;font-weight:600;border-radius:6px 6px 0 0}
.cat-tabs a:hover{color:#fff;text-decoration:none;background:rgba(255,255,255,.08)}
.cat-tabs a.active{background:var(--bg);color:var(--navy)}

/* ---------- Category accent color coding ---------- */
.cat-card{border-top:3px solid transparent}
.cat-card.ac-1{border-top-color:#007993}
.cat-card.ac-1 .cat-ico{background:#e0f1f4;color:#007993}
.cat-card.ac-2{border-top-color:#1491eb}
.cat-card.ac-2 .cat-ico{background:#e3f2fb;color:#1491eb}
.cat-card.ac-3{border-top-color:#f2a900}
.cat-card.ac-3 .cat-ico{background:#fdf1d7;color:#b58400}
.cat-card.ac-4{border-top-color:#7b5ea7}
.cat-card.ac-4 .cat-ico{background:#efe9f7;color:#7b5ea7}
.cat-card.ac-5{border-top-color:#2e8b57}
.cat-card.ac-5 .cat-ico{background:#e3f3e9;color:#2e8b57}
.cat-card.ac-6{border-top-color:#d23f31}
.cat-card.ac-6 .cat-ico{background:#fae7e4;color:#d23f31}
.cat-card.ac-7{border-top-color:#5f7a8c}
.cat-card.ac-7 .cat-ico{background:#e8eef1;color:#5f7a8c}

/* ---------- Model / order-number table (SiePortal style) ---------- */
.model-table td:first-child{font-family:var(--font);font-variant-numeric:normal;font-feature-settings:"zero" 0;color:var(--blue);font-weight:700;white-space:nowrap}
.model-table td:nth-child(2){font-weight:600;color:var(--navy)}
.model-table-description{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}
.model-table .tag-ok{color:var(--green);font-size:.76rem;font-weight:700;white-space:nowrap}
.model-table .tag-q{color:#b58400;font-size:.76rem;font-weight:700;white-space:nowrap}
.model-table .tag-q{color:#b58400;font-size:.76rem;font-weight:700;white-space:nowrap}

/* ---------- Subcategory intro ---------- */
.subcat-hero{background:linear-gradient(135deg,#0a3350,#0a3a5c);color:#fff;padding:40px 0;margin-bottom:0}
.subcat-hero h1{font-size:1.7rem;font-weight:800}
.subcat-hero p{color:#cfe0ef;max-width:780px;margin-top:8px}
.subcat-hero.hero-center{text-align:center}
.subcat-hero.hero-center .container{display:flex;flex-direction:column;align-items:center}
.subcat-hero .hero-badge{width:84px;height:84px;border-radius:18px;background:#fff;border:1px solid rgba(255,255,255,.4);display:flex;align-items:center;justify-content:center;margin:0 auto 16px;padding:10px;flex:none}
.subcat-hero .hero-badge img{width:100%;height:100%;object-fit:contain;display:block}
.subcat-hero .hero-badge.hero-badge-img{width:150px;height:150px}
.subcat-meta{display:flex;gap:8px;flex-wrap:wrap;margin-top:14px}

/* ---------- Contact page redesign ---------- */
.contact-hero{background:linear-gradient(125deg,var(--navy),#073b59 64%,#08728b);color:#fff;position:relative;overflow:hidden}.contact-hero::after{content:"";position:absolute;width:510px;height:510px;border-radius:50%;right:-230px;top:-265px;border:1px solid rgba(255,255,255,.18);box-shadow:0 0 0 60px rgba(255,255,255,.025),0 0 0 120px rgba(255,255,255,.02)}.contact-hero-grid{display:grid;grid-template-columns:1.25fr .7fr;gap:70px;min-height:455px;align-items:center;position:relative;z-index:1}.contact-hero .breadcrumbs{margin-bottom:26px}.contact-hero .breadcrumbs a{color:#cfe0ef}.contact-hero .eyebrow,.contact-side .eyebrow,.contact-form-heading .eyebrow,.contact-prep .eyebrow{color:var(--amber);font-weight:800;letter-spacing:1.25px;font-size:.75rem;text-transform:uppercase}.contact-hero h1{font-size:3rem;line-height:1.08;letter-spacing:-1px;max-width:690px;margin:12px 0 15px}.contact-hero-grid>div>p{font-size:1.03rem;color:#d2e2ed;max-width:620px;line-height:1.7}.contact-hero-badges{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}.contact-hero-badges span{border:1px solid rgba(255,255,255,.2);padding:8px 12px;border-radius:4px;color:#bfd4df;font-size:.72rem}.contact-hero-badges b{color:#fff;margin-right:3px}.contact-hero-panel{background:#fff;color:var(--ink);border-radius:var(--radius);padding:27px;box-shadow:0 16px 32px rgba(0,0,0,.2)}.contact-panel-label{display:block;font-size:.68rem;font-weight:800;color:var(--blue);letter-spacing:1.15px}.contact-hero-panel h2{color:var(--navy);font-size:1.35rem;line-height:1.25;margin:10px 0 8px}.contact-hero-panel p{font-size:.85rem;color:var(--muted);line-height:1.6;margin-bottom:18px}.contact-hero-panel small{display:block;font-size:.72rem;color:var(--muted);margin-top:12px}
.contact-main{padding:78px 0}.contact-layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:58px;align-items:start}.contact-side h2,.contact-form-heading h2{color:var(--navy);font-size:1.85rem;line-height:1.2;margin:8px 0 26px}.contact-channel{display:flex;gap:14px;padding:16px 0;border-top:1px solid var(--line)}.contact-channel>span{display:flex;align-items:center;justify-content:center;width:29px;height:29px;flex:none;background:var(--blue-soft);color:var(--blue);border-radius:50%;font-size:.68rem;font-weight:800}.contact-channel b{display:block;color:var(--navy);font-size:.88rem}.contact-channel a,.contact-channel p{display:block;font-size:.83rem;font-weight:700;margin:2px 0;color:var(--blue)}.contact-channel p{color:var(--ink)}.contact-channel small{font-size:.75rem;color:var(--muted);line-height:1.45}.contact-note{margin-top:22px;padding:17px;background:#fff8e6;border:1px solid #f2d98c;border-radius:var(--radius)}.contact-note b{font-size:.83rem;color:#6b5410}.contact-note p{font-size:.78rem;line-height:1.55;color:#6b5410;margin-top:4px}.contact-form-wrap{border:1px solid var(--line);border-radius:var(--radius);background:#fff;box-shadow:var(--shadow);padding:34px}.contact-form-heading{border-bottom:1px solid var(--line);padding-bottom:21px;margin-bottom:23px}.contact-form-heading h2{margin:7px 0}.contact-form-heading>p:last-child{font-size:.83rem;color:var(--muted)}.contact-form .form-group{gap:5px}.contact-form label{font-size:.8rem}.contact-form textarea{resize:vertical}.contact-form-bottom{display:flex;gap:18px;justify-content:space-between;align-items:center;margin-top:22px}.contact-form-bottom p{max-width:430px;font-size:.73rem;line-height:1.45;color:var(--muted)}.contact-success{text-align:center;padding:52px 20px}.contact-success>span{color:var(--green);font-size:.75rem;font-weight:800;letter-spacing:1px;text-transform:uppercase}.contact-success h2{color:var(--navy);font-size:1.6rem;margin:7px 0}.contact-success p{font-size:.87rem;color:var(--muted);max-width:430px;margin:0 auto 19px}.contact-prep{background:#e8f3f5;padding:54px 0}.contact-prep>.container{display:grid;grid-template-columns:.8fr 1.2fr;gap:45px;align-items:center}.contact-prep h2{color:var(--navy);font-size:1.55rem;line-height:1.25;margin-top:7px}.contact-prep .eyebrow{color:var(--blue)}.contact-prep-list{display:grid;grid-template-columns:1fr 1fr;gap:12px}.contact-prep-list span{padding:12px 0;border-bottom:1px solid #b5d0d8;color:var(--navy);font-size:.8rem;font-weight:700}.contact-prep-list b{color:var(--blue);font-size:.72rem;margin-right:5px}

/* ---------- Products directory redesign ---------- */
.products-hero{background:linear-gradient(124deg,#001f39,#063a59 62%,#08718a);color:#fff;overflow:hidden;position:relative}.products-hero::after{content:"";position:absolute;width:620px;height:620px;border-radius:50%;right:-210px;top:-350px;border:1px solid rgba(255,255,255,.16);box-shadow:0 0 0 80px rgba(255,255,255,.025)}.products-hero-grid{min-height:500px;display:grid;grid-template-columns:1.1fr .9fr;gap:42px;align-items:center;position:relative;z-index:1}.products-hero .breadcrumbs{margin-bottom:25px}.products-hero .breadcrumbs a{color:#cfe0ef}.products-hero .eyebrow,.product-directory-heading .eyebrow,.legacy-feature .eyebrow,.products-bottom .eyebrow{color:var(--amber);font-size:.75rem;font-weight:800;letter-spacing:1.25px;text-transform:uppercase}.products-hero h1{font-size:3rem;line-height:1.08;letter-spacing:-1px;max-width:670px;margin:12px 0 16px}.products-hero-grid>div>p{color:#d1e1eb;line-height:1.7;max-width:600px;font-size:1rem}.products-hero-actions{display:flex;gap:19px;align-items:center;flex-wrap:wrap;margin-top:28px}.products-text-link{color:#fff;font-size:.86rem;font-weight:800}.products-text-link:hover{color:var(--amber);text-decoration:none}.products-text-link span{font-size:1.1rem;margin-left:3px}.products-hero-stack{height:360px;position:relative}.hero-product-card{position:absolute;width:186px;height:230px;border:1px solid rgba(255,255,255,.46);border-radius:7px;padding:17px;background:rgba(255,255,255,.94);box-shadow:0 17px 30px rgba(0,0,0,.25);display:flex;flex-direction:column;justify-content:space-between}.hero-product-card img{height:160px;width:100%;object-fit:contain}.hero-product-card span{font-size:.68rem;color:var(--navy);font-weight:800;letter-spacing:.6px}.hero-product-one{left:45px;top:32px;transform:rotate(-7deg)}.hero-product-two{right:54px;top:60px;transform:rotate(7deg)}.hero-product-three{left:167px;bottom:-5px;transform:rotate(1deg);z-index:2}

/* Category hero: vector icon blends into the dark background */
.category-hero .category-hero-stack{height:360px}
.category-hero-icon{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:340px;height:340px;mix-blend-mode:multiply;filter:brightness(1.25) contrast(1.06) drop-shadow(0 18px 30px rgba(0,0,0,.2));transition:transform .3s}
.category-hero-icon:hover{transform:translate(-50%,-52%) scale(1.04)}
/* Fallback: image card (only when no vector icon exists) */
.category-hero-card{left:50%;top:50%;transform:translate(-50%,-50%) rotate(2deg);width:230px;height:290px;align-items:center;justify-content:center;gap:10px;text-align:center}
.category-hero-card img{height:215px}
.category-hero-card span{font-size:.78rem;max-width:100%;word-wrap:break-word}
.category-hero-card:hover{transform:translate(-50%,-52%) rotate(0)}
.product-directory{padding:88px 0}.product-directory-heading{display:grid;grid-template-columns:1fr .72fr;align-items:end;gap:54px;margin-bottom:34px}.product-directory-heading h2{color:var(--navy);font-size:2.15rem;line-height:1.17;margin-top:7px}.product-directory-heading>p{color:var(--muted);font-size:.9rem;line-height:1.65}.product-family-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.product-family-card{display:grid;grid-template-columns:43% 57%;background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;min-height:260px;color:var(--ink);transition:.2s}.product-family-card:hover{box-shadow:0 12px 28px rgba(0,31,57,.14);text-decoration:none;transform:translateY(-3px);border-color:#9fbdc9}.family-image{position:relative;background:linear-gradient(145deg,#e5f0f2,#bdd8df);padding:25px;display:flex;align-items:center;justify-content:center;overflow:hidden}.family-image::after{content:"";position:absolute;width:170px;height:170px;border:14px solid rgba(255,255,255,.38);border-radius:50%;right:-76px;top:-55px}.family-image img{width:100%;height:190px;object-fit:contain;position:relative;z-index:1;transition:.25s}.product-family-card:hover .family-image img{transform:scale(1.07)}.family-image span{position:absolute;z-index:2;top:14px;left:14px;font-size:.7rem;font-weight:800;color:var(--blue)}.family-content{padding:26px 23px;display:flex;flex-direction:column}.family-content>p{color:var(--blue);font-weight:800;font-size:.68rem;letter-spacing:.8px}.family-content h3{font-size:1.18rem;line-height:1.2;color:var(--navy);margin:7px 0 13px}.family-tags{display:flex;gap:5px;flex-wrap:wrap}.family-tags span{background:var(--bg);border-radius:12px;color:var(--muted);font-size:.67rem;padding:3px 7px}.family-content>b{color:var(--blue);font-size:.78rem;margin-top:auto;padding-top:17px}.family-content i{font-style:normal;font-size:1.1rem;margin-left:4px}.family-drive .family-image{background:linear-gradient(145deg,#e5edf6,#b9cfdf)}.family-controls .family-image{background:linear-gradient(145deg,#f1ece1,#dfc994)}.family-network .family-image{background:linear-gradient(145deg,#e7eff0,#c2dce0)}.family-process .family-image{background:linear-gradient(145deg,#e5f1eb,#b4d7c4)}.family-power .family-image{background:linear-gradient(145deg,#f2edf3,#d6c4dc)}
.product-family-grid{grid-template-columns:repeat(3,1fr);gap:20px}.product-family-card{display:flex;flex-direction:column;min-height:415px}.family-image{padding:22px;min-height:218px}.family-image::after{width:190px;height:190px}.family-image img{height:182px}.family-content{padding:22px 23px 20px;flex:1}.family-summary{display:block;font-size:.78rem;color:var(--muted);line-height:1.55;margin-top:15px}
.product-guide{padding:76px 0;background:#f5f9fa}.product-guide-heading{display:grid;grid-template-columns:1fr .72fr;align-items:end;gap:54px;margin-bottom:29px}.product-guide .eyebrow,.product-coverage .eyebrow{color:#008aa7;font-size:.73rem;font-weight:800;letter-spacing:1.1px;text-transform:uppercase}.product-guide h2,.product-coverage h2{color:var(--navy);font-size:2rem;line-height:1.18;margin-top:7px}.product-guide-heading>p{color:var(--muted);font-size:.88rem;line-height:1.65}.product-guide-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.product-guide-grid article{background:#fff;border:1px solid #d8e4e8;border-radius:8px;padding:26px 24px}.product-guide-grid article>span{display:block;color:#008aa7;font-size:.74rem;font-weight:800;letter-spacing:1px}.product-guide-grid h3{color:var(--navy);font-size:1.05rem;margin:15px 0 8px}.product-guide-grid p{font-size:.82rem;color:var(--muted);line-height:1.6}.product-coverage{padding:76px 0;background:#002b49;color:#fff}.product-coverage-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:75px;align-items:center}.product-coverage .eyebrow{color:var(--amber)}.product-coverage h2{color:#fff;max-width:460px}.product-coverage p:not(.eyebrow){color:#c7dce7;font-size:.9rem;line-height:1.7;margin:15px 0 22px;max-width:520px}.coverage-list{display:grid;grid-template-columns:1fr 1fr;gap:12px}.coverage-list div{border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.05);border-radius:7px;padding:18px}.coverage-list b{display:block;color:#fff;font-size:.86rem}.coverage-list span{display:block;color:#c8d9e3;font-size:.76rem;line-height:1.5;margin-top:6px}
.legacy-feature{background:#e9f3f5;padding:70px 0}.legacy-feature-grid{display:grid;grid-template-columns:.7fr 1fr .45fr;gap:38px;align-items:center}.legacy-image{height:230px;background:#fff;border-radius:var(--radius);padding:20px;box-shadow:var(--shadow)}.legacy-image img{height:100%;width:100%;object-fit:contain}.legacy-feature h2{color:var(--navy);font-size:1.8rem;line-height:1.2;margin:8px 0 10px}.legacy-feature p:not(.eyebrow){color:var(--muted);font-size:.88rem;line-height:1.65;margin-bottom:18px}.legacy-note{border-left:2px solid var(--blue);padding-left:16px}.legacy-note b{display:block;color:var(--navy);font-size:.85rem}.legacy-note span{display:block;color:var(--muted);font-size:.77rem;line-height:1.5;margin-top:3px}.products-bottom{padding:49px 0;background:#fff}.products-bottom>.container{display:grid;grid-template-columns:1fr .9fr auto;gap:36px;align-items:center}.products-bottom h2{font-size:1.45rem;color:var(--navy);margin-top:6px}.products-bottom .eyebrow{color:var(--blue)}.products-bottom p:not(.eyebrow){font-size:.84rem;color:var(--muted);line-height:1.55}

/* ---------- Second-level product category pages ---------- */
.subcategory-page .page-hero{padding:58px 0 54px;background:linear-gradient(125deg,#001f39,#083a58 62%,#08728b);position:relative;overflow:hidden}
.subcategory-page .page-hero::after{content:"";position:absolute;width:360px;height:360px;border:1px solid rgba(255,255,255,.15);border-radius:50%;right:-90px;top:-170px;box-shadow:0 0 0 55px rgba(255,255,255,.025),0 0 0 110px rgba(255,255,255,.018)}
.subcategory-page .page-hero .container{position:relative;z-index:1}
.subcategory-page .page-hero h1{font-size:2.35rem;letter-spacing:-.5px;margin-top:9px}
.subcategory-page .page-hero p{font-size:1rem;line-height:1.65}
#subcats{background:linear-gradient(180deg,#f3f7f8 0%,#fff 100%)}
#subcats .cat-tabs{margin:0 -1px 26px;border-radius:0 0 8px 8px;background:#062f4b;padding:7px 10px}
#subcats .section-head{margin-bottom:27px}
#subcats .section-head h2{font-size:2rem}
#subcats .grid.grid-2{gap:24px}
#subcats .cat-card{padding:0;min-height:380px;overflow:hidden;display:flex;flex-direction:column;border-top:1px solid var(--line);background:#fff}
#subcats .cat-card::before{content:"";display:block;height:205px;flex:none;background-color:#e7f1f3;background-image:var(--family-image);background-position:center;background-repeat:no-repeat;background-size:contain;border-bottom:1px solid var(--line);position:relative}
#subcats .cat-card:hover::before{background-size:contain}
#subcats .cat-card .cat-ico{display:none}
#subcats .cat-card h3{font-size:1.14rem;line-height:1.3;margin:23px 24px 7px;color:var(--navy)}
#subcats .cat-card p{font-size:.86rem;line-height:1.6;margin:0 24px 16px;color:var(--muted)}
#subcats .cat-card .more{margin:0 24px 23px;color:var(--blue);font-size:.8rem;margin-top:auto}
#subcats a[href*="simatic-s7-1200-1500"]{--family-image:url("../images/products/cpu-1511.jpg")}
#subcats a[href*="et200-distributed-io"]{--family-image:url("../images/products/et200sp-di.jpg")}
#subcats a[href*="simatic-hmi-software"]{--family-image:url("../images/products/ktp700.jpg")}
#subcats a[href="spare-legacy-parts.html"]{--family-image:url("../images/products/s7-memorycard.jpg")}
#subcats a[href*="sinamics-v20-basic"]{--family-image:url("../images/products/g120-pm240.jpg")}
#subcats a[href*="sinamics-g120"]{--family-image:url("../images/products/g120-pm240.jpg")}
#subcats a[href*="sinamics-s120-servo"]{--family-image:url("../images/products/cu320-2.jpg")}
#subcats a[href*="simotics-motors"]{--family-image:url("../images/products/cu320-2.jpg")}
#subcats a[href*="sirius-contactors-protection"]{--family-image:url("../images/products/contactor-3rt2027.jpg")}
#subcats a[href*="sentron-breakers"]{--family-image:url("../images/products/mcb-5sy4.jpg")}
#subcats a[href*="sirius-act-commanding"]{--family-image:url("../images/products/estop-3su1.jpg")}
#subcats a[href*="scalance-switches"]{--family-image:url("../images/products/et200sp-baseunit.jpg")}
#subcats a[href*="scalance-wireless-components"]{--family-image:url("../images/products/et200sp-di.jpg")}
#subcats a[href*="sitrans-transmitters"]{--family-image:url("../images/products/sitrans-lr250.jpg")}
#subcats a[href*="sipart-process-automation"]{--family-image:url("../images/products/sipart-ps2.jpg")}
#subcats a[href*="sitop-psu"]{--family-image:url("../images/products/mcb-5sy4.jpg")}
#subcats a[href*="sitop-buffer-redundancy"]{--family-image:url("../images/products/s7-memorycard.jpg")}
#subcats a[href*="legacy-families"]{--family-image:url("../images/products/s7-memorycard.jpg")}
#subcats a[href="../quote.html"]{--family-image:url("../images/products/cpu-1214c.jpg")}

/* ---------- V20 model catalog & detail pages ---------- */
.v20-hero{background:linear-gradient(125deg,#001f39,#073b59 62%,#08728b);color:#fff;overflow:hidden;position:relative}.v20-hero::after{content:"";position:absolute;width:500px;height:500px;border:1px solid rgba(255,255,255,.13);border-radius:50%;right:-200px;top:-300px;box-shadow:0 0 0 70px rgba(255,255,255,.025)}.v20-hero-grid{min-height:380px;display:grid;grid-template-columns:1.2fr .6fr;gap:45px;align-items:center;position:relative;z-index:1}.v20-hero .breadcrumbs{margin-bottom:22px}.v20-hero .breadcrumbs a{color:#cfe0ef}.v20-hero .eyebrow,.v20-list-heading .eyebrow,.v20-help .eyebrow,.v20-products-heading .eyebrow{color:var(--amber);font-size:.75rem;font-weight:800;letter-spacing:1.25px;text-transform:uppercase}.v20-hero h1{font-size:2.65rem;line-height:1.1;letter-spacing:-.8px;max-width:680px;margin:10px 0 13px}.v20-hero-grid>div>p{max-width:600px;color:#d2e2ed;font-size:.96rem;line-height:1.7}.v20-hero-points{display:flex;gap:8px;flex-wrap:wrap;margin-top:23px}.v20-hero-points span{font-size:.71rem;color:#c7dce6;border:1px solid rgba(255,255,255,.2);border-radius:14px;padding:4px 9px}.v20-hero-product{height:245px;width:210px;justify-self:center;background:#fff;border-radius:8px;padding:20px;display:flex;flex-direction:column;align-items:center;justify-content:space-between;box-shadow:-13px 18px 27px rgba(0,0,0,.25);transform:rotate(4deg)}.v20-hero-product img{height:177px;width:100%;object-fit:contain}.v20-hero-product span{font-size:.72rem;color:var(--navy);font-weight:800;letter-spacing:.7px}.v20-model-section{padding:72px 0}.v20-list-heading{display:flex;justify-content:space-between;gap:24px;align-items:end;margin-bottom:24px}.v20-list-heading h2,.v20-products-heading h2{font-size:2rem;color:var(--navy);line-height:1.2;margin-top:7px}.v20-list-heading>p{font-size:.78rem;color:var(--muted);line-height:1.5;text-align:right}.v20-list-heading>p b{color:var(--blue)}.v20-filter-bar{display:flex;gap:12px;align-items:center;flex-wrap:wrap;background:#e8f3f5;border:1px solid #c5dce2;border-radius:var(--radius);padding:12px 16px;margin-bottom:18px;color:#466476;font-size:.79rem}.v20-filter-bar b{color:var(--navy)}.v20-filter-bar a{margin-left:auto;font-size:.78rem;font-weight:800}.v20-table-wrap table th:nth-child(1){width:26%}.v20-table-wrap table th:nth-child(2){width:21%}.v20-table-wrap table th:nth-child(3){width:39%}.v20-table-wrap table th:nth-child(4){width:14%}.v20-table-wrap td{padding-top:14px!important;padding-bottom:14px!important}.model-pagination{display:flex;justify-content:center;gap:7px;margin:25px 0}.model-pagination a,.model-pagination span{min-width:37px;height:37px;padding:0 10px;border:1px solid var(--line);border-radius:5px;display:flex;align-items:center;justify-content:center;color:#456276;font-size:.82rem}.model-pagination a:hover{text-decoration:none;border-color:var(--blue)}.model-pagination a.active{background:#173f62;border-color:#173f62;color:#fff;font-weight:800}.v20-note{max-width:850px}.v20-products-heading{margin:57px 0 23px}.v20-quote-cta{text-align:center;margin-top:30px}.v20-help{background:#e8f3f5;padding:51px 0}.v20-help>.container{display:grid;grid-template-columns:1fr 1.35fr auto;align-items:center;gap:32px}.v20-help h2{font-size:1.45rem;color:var(--navy);margin-top:7px}.v20-help-items{display:grid;grid-template-columns:1fr 1fr 1fr;gap:12px}.v20-help-items span{font-size:.76rem;font-weight:700;color:var(--navy)}.v20-help-items b{font-size:.7rem;color:var(--blue);margin-right:4px}.v20-breadcrumbs{color:var(--muted)}.v20-breadcrumbs a{color:var(--blue)}.v20-product-layout{padding-top:57px;padding-bottom:52px}.v20-product-page .pd-main span{font-size:.72rem}.v20-product-page .pd-info>.eyebrow{color:var(--blue);font-size:.72rem;font-weight:800;letter-spacing:1.1px}.v20-product-page .quote-card h3{color:var(--navy);font-size:1rem}

/* ---------- Unified product-series catalog ---------- */
.series-page .subcat-hero{position:relative;overflow:hidden;padding:65px 0 61px;background:linear-gradient(118deg,#001f39,#063b5c 64%,#087e91)}
.series-page .subcat-hero::before{content:"";position:absolute;width:470px;height:470px;border:1px solid rgba(255,255,255,.14);border-radius:50%;right:-170px;top:-265px;box-shadow:0 0 0 62px rgba(255,255,255,.025)}
.series-page .subcat-hero .container{position:relative;z-index:1}
.series-page .subcat-hero .breadcrumbs{margin-bottom:23px;color:#c7dce8;font-size:.78rem}.series-page .subcat-hero .breadcrumbs a{color:#dcecf4}
.series-page .subcat-hero h1{max-width:780px;font-size:2.45rem;line-height:1.14;letter-spacing:-.6px}.series-page .subcat-hero p{max-width:720px;color:#d2e4ee;font-size:.96rem;line-height:1.7;margin-top:14px}
.series-page .subcat-hero + .section{padding:68px 0 76px;background:linear-gradient(180deg,#f7fafc 0,#fff 250px)}
.series-page .subcat-hero + .section .section-head{margin-bottom:21px}.series-page .subcat-hero + .section .section-head .eyebrow{color:#008aa7;font-size:.73rem;font-weight:800;letter-spacing:1.1px;text-transform:uppercase}.series-page .subcat-hero + .section .section-head h2{color:var(--navy);font-size:2rem;line-height:1.18;letter-spacing:-.35px;margin-top:7px}
.series-page .table-wrap{border:1px solid #d6e1e8;border-radius:8px;box-shadow:0 9px 25px rgba(14,46,68,.07);background:#fff}.series-page .model-table th{background:#002743;color:#fff;padding:17px 14px;font-size:.74rem;letter-spacing:.3px;text-transform:uppercase}.series-page .model-table th:nth-child(1){width:25%}.series-page .model-table th:nth-child(2){width:22%}.series-page .model-table th:nth-child(3){width:39%}.series-page .model-table th:nth-child(4){width:14%}.series-page .model-table td{padding:15px 14px;line-height:1.5}.series-page .model-table tr:nth-child(even) td{background:#f5f8fa}.series-page .model-table tr:hover td{background:#ecf6f8}.series-page .model-table td:first-child a{color:#008aa7;text-decoration:none}.series-page .model-table td:first-child a:hover{text-decoration:underline}
.series-page .small.muted{max-width:880px;line-height:1.65}.series-page .section-head.mt-4{margin-top:60px}.series-page .grid.grid-3{gap:20px}.series-page .prod-card{border-color:#d7e1e8;border-radius:8px;box-shadow:0 8px 20px rgba(14,46,68,.045)}.series-page .prod-card:hover{box-shadow:0 13px 28px rgba(14,46,68,.13)}.series-page .prod-thumb{height:182px;background:linear-gradient(145deg,#edf5f8,#d9e8ee);color:#5d8296}.series-page .prod-body{padding:19px 16px 16px}.series-page .prod-body h3{min-height:40px;color:var(--navy)}.series-page .prod-body .btn{width:100%;justify-content:center;margin-top:11px}.series-page .mt-3[style*="text-align:center"]{margin-top:34px!important}.series-page .mt-3[style*="text-align:center"] .btn{min-width:260px;padding:13px 24px;box-shadow:0 9px 17px rgba(0,114,151,.18)}

.series-catalog-toolbar{display:flex;align-items:center;gap:12px;flex-wrap:wrap;background:#e8f3f5;border:1px solid #c5dce2;border-radius:var(--radius);padding:12px 16px;margin:0 0 18px;color:#466476;font-size:.79rem}.series-catalog-toolbar b{color:var(--navy)}.series-catalog-toolbar a{margin-left:auto;font-size:.78rem;font-weight:800}.series-page .series-pagination{margin:25px 0 0}.series-page .series-pagination a:last-child{padding:0;min-width:37px}.series-selection-panel{background:#e8f3f5;padding:51px 0}.series-selection-panel>.container{display:grid;grid-template-columns:1fr 1.35fr auto;align-items:center;gap:32px}.series-selection-panel .eyebrow{color:#008aa7;font-size:.73rem;font-weight:800;letter-spacing:1.1px}.series-selection-panel h2{font-size:1.45rem;color:var(--navy);margin-top:7px}.series-selection-items{display:grid;grid-template-columns:1fr 1fr 1fr;gap:12px}.series-selection-items span{font-size:.76rem;font-weight:700;color:var(--navy)}.series-selection-items b{font-size:.7rem;color:var(--blue);margin-right:4px}

/* Align the product gallery with the header and footer content edges. */
.product-detail-page .pd-layout{padding:54px 20px}
.company-video-slot.company-video-embedded{padding:0;background:#001f39}.company-video-slot.company-video-embedded::after{display:none}.company-video-embedded iframe,.company-video-embedded video{display:block;width:100%;height:100%;min-height:390px;border:0;object-fit:cover}
.price-on-request-link{display:inline;color:var(--blue);font-size:.92rem;font-weight:700;text-decoration:none}.price-on-request-link:hover{color:var(--navy);text-decoration:underline}
.scene-card.scene-qc{background-image:url("../images/company/quality-inspection.webp");background-size:cover;background-position:center;color:#fff}.scene-card.scene-qc::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,31,57,.68),rgba(0,31,57,.08));z-index:0}.scene-card.scene-qc::after{border-color:rgba(255,255,255,.18)}.scene-card.scene-qc>span,.scene-card.scene-qc small{color:#d9eaf0}.scene-card.scene-qc b{color:#fff}
.scene-card.scene-team{background-image:url("../images/company/team-office.webp");background-size:cover;background-position:center 42%;color:#fff}.scene-card.scene-team::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,31,57,.72),rgba(0,31,57,.12));z-index:0}.scene-card.scene-team::after{border-color:rgba(255,255,255,.18)}.scene-card.scene-team>span,.scene-card.scene-team small{color:#d9eaf0}.scene-card.scene-team b{color:#fff}
.scene-card.scene-warehouse{background-image:url("../images/company/warehouse.webp");background-size:cover;background-position:center;color:#fff}.scene-card.scene-warehouse::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,31,57,.72),rgba(0,31,57,.1));z-index:0}.scene-card.scene-warehouse::after{border-color:rgba(255,255,255,.18)}.scene-card.scene-warehouse>span,.scene-card.scene-warehouse small{color:#d9eaf0}.scene-card.scene-warehouse b{color:#fff}
.scene-card.scene-team{background-position:center 48%}.scene-card.scene-team::before,.scene-card.scene-team::after{display:none}.scene-card.scene-team>span,.scene-card.scene-team>div{display:none}
.sale-photo-card{width:290px;height:240px}.sale-photo-card img{height:100%}.sale-photo-card figcaption{display:none}.sale-photo-card.is-empty .sales-photo-empty{height:100%}
.company-scenes .scene-card>span,.company-scenes .scene-card>div{display:none}.scene-card.scene-warehouse::before,.scene-card.scene-warehouse::after,.scene-card.scene-team::before,.scene-card.scene-team::after{display:none}.scene-card.scene-qc{background-image:url("../images/company/quality-inspection.webp");background-size:cover;background-position:center}.scene-card.scene-qc::after{display:none}

/* Unified products hero image: products hub and all first-level categories. */
.products-hero{background-image:linear-gradient(90deg,rgba(0,22,42,.96) 0%,rgba(0,27,49,.87) 37%,rgba(0,30,53,.34) 62%,rgba(0,25,47,.08) 100%),url("../images/company/products-hero-industrial-automation.webp");background-position:center;background-size:cover}.products-hero::after{display:none}

/* ---------- Responsive ---------- */
.about-intro-section .editorial-kicker>span{display:none}
@media (max-width:960px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .pd-layout{grid-template-columns:1fr}
  .hero h1{font-size:2rem}
  .shipping-grid{grid-template-columns:repeat(2,1fr)}
  .about-intro,.commitment-layout{grid-template-columns:1fr}.about-timeline{grid-template-columns:repeat(2,1fr)}
  .about-hero h1{font-size:2.65rem}.about-editorial{grid-template-columns:.45fr 1fr 1fr}.about-visual{transform:scale(.88);transform-origin:center right}.commitment-redesign{gap:40px}
  .proof-media-top{grid-template-columns:1fr .75fr}.company-video-slot{min-height:360px}.certificate-row{grid-template-columns:1fr 1fr}.certificate-intro{grid-column:1 / -1}
  .contact-hero-grid{gap:38px}.contact-layout{gap:36px}.contact-hero h1{font-size:2.55rem}
  .products-hero h1{font-size:2.6rem}.product-family-card{grid-template-columns:40% 60%}.legacy-feature-grid{gap:25px}
  #subcats .cat-card{min-height:365px}
  .v20-help>.container{grid-template-columns:1fr 1.25fr;gap:24px}.v20-help>.container>.btn{grid-column:1 / -1;width:max-content}.v20-hero h1{font-size:2.35rem}
}
@media (max-width:720px){
  .nav-toggle{display:block}
  .main-nav{display:none;position:absolute;top:100%;left:0;right:0;background:#fff;border-bottom:1px solid var(--line);box-shadow:var(--shadow);flex-direction:column;padding:12px 16px;gap:2px}
  .main-nav.open{display:flex}
  .nav-item .dropdown{position:static;min-width:0;display:none;grid-template-columns:1fr;box-shadow:none;border:none;padding:4px 0}
  .nav-item.open .dropdown{display:grid}
  .grid-3,.grid-2,.grid-4{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .hero{padding:52px 0}
  .hero h1{font-size:1.65rem}
  .hero-stats{gap:22px}
  .service-nav{position:static}
  .service-highlights,.shipping-grid,.assurance-grid,.support-list{grid-template-columns:1fr 1fr}
  .service-highlights div:nth-child(2){border-right:0}.service-highlights div:nth-child(-n+2){border-bottom:1px solid var(--line)}
  .support-layout{grid-template-columns:1fr}
  .service-detail-heading h2{font-size:1.45rem}
  .about-stats{grid-template-columns:1fr 1fr}.about-stats div{padding:18px}.about-intro h2,.commitment-layout h2{font-size:1.5rem}
  .about-hero-grid{grid-template-columns:1fr;min-height:0}.about-hero-copy{padding:48px 0 24px}.about-hero h1{font-size:2.25rem}.about-visual{height:335px;width:380px;max-width:100%;margin:0 auto;transform:scale(.82);transform-origin:top center}.about-editorial,.about-section-heading,.commitment-redesign{grid-template-columns:1fr;gap:24px}.about-editorial{padding:0 20px}.about-intro-section,.about-services,.about-commitment{padding:65px 0}.about-editorial h2,.about-section-heading h2,.about-workflow h2,.commitment-title h2{font-size:1.7rem}.about-metric-grid,.about-capability-grid{grid-template-columns:1fr 1fr}.about-metric-grid>div:nth-child(2){border-right:0}.about-metric-grid>div:nth-child(-n+2){border-bottom:1px solid #274b64}.about-workflow{padding:66px 0}.about-workflow-top{display:block}.about-workflow-top h2{margin-top:8px}.workflow-track{grid-template-columns:1fr 1fr;gap:20px;border:none}.workflow-track article,.workflow-track article:not(:first-child){padding:0;border-top:1px solid #a6c4ce}.workflow-track span{margin-top:-14px}.about-compliance .container{display:block}.about-compliance a{display:inline-block;margin-top:9px}
  .about-proof-media{padding:65px 0}.proof-media-top,.proof-media-grid{grid-template-columns:1fr;gap:20px}.proof-media-top h2{font-size:1.7rem}.company-scenes{min-height:390px}.product-marquee-section{padding-top:55px}
  .contact-hero-grid,.contact-layout,.contact-prep>.container{grid-template-columns:1fr}.contact-hero-grid{min-height:0;padding:48px 0}.contact-hero h1{font-size:2.2rem}.contact-hero-panel{max-width:500px}.contact-main{padding:62px 0}.contact-layout{gap:42px}.contact-form-wrap{padding:25px}.contact-form-bottom{align-items:flex-start;flex-direction:column}.contact-prep{padding:55px 0}
  .products-hero-grid{grid-template-columns:1fr;min-height:0;padding:48px 0 0}.products-hero h1{font-size:2.2rem}.products-hero-stack{height:310px;width:430px;max-width:100%;margin:0 auto}.product-directory{padding:64px 0}.product-directory-heading,.legacy-feature-grid,.products-bottom>.container{grid-template-columns:1fr;gap:24px}.product-directory-heading h2{font-size:1.7rem}.legacy-feature{padding:56px 0}.legacy-image{max-width:360px}.products-bottom{padding:45px 0}
  .subcategory-page .page-hero{padding:47px 0}.subcategory-page .page-hero h1{font-size:2rem}#subcats .cat-tabs{margin-bottom:20px}#subcats .section-head h2{font-size:1.65rem}
  .v20-hero-grid{grid-template-columns:1fr;min-height:0;padding:48px 0 22px}.v20-hero h1{font-size:2.15rem}.v20-hero-product{height:190px;width:170px;transform:rotate(3deg)}.v20-hero-product img{height:130px}.v20-list-heading{align-items:start;flex-direction:column}.v20-list-heading>p{text-align:left}.v20-list-heading h2,.v20-products-heading h2{font-size:1.65rem}.v20-help>.container{grid-template-columns:1fr}.v20-help-items{grid-template-columns:1fr 1fr}.v20-help>.container>.btn{grid-column:auto}
}
@media (max-width:460px){
  .service-highlights,.shipping-grid,.assurance-grid,.support-list{grid-template-columns:1fr}
  .service-highlights div{border-right:0;border-bottom:1px solid var(--line)}.service-highlights div:last-child{border-bottom:0}
  .about-stats,.about-timeline,.commitment-list{grid-template-columns:1fr}
  .about-hero h1{font-size:1.9rem}.about-hero-proof{gap:14px}.about-metric-grid,.about-capability-grid,.workflow-track{grid-template-columns:1fr}.about-metric-grid>div{border-right:0;border-bottom:1px solid #274b64}.about-metric-grid>div:last-child{border-bottom:0}.about-visual{margin-left:-25px}.about-hero-actions{gap:15px}
  .company-scenes,.certificate-row{grid-template-columns:1fr}.certificate-intro{grid-column:auto}.company-video-slot{min-height:325px}.video-slot-bottom{gap:6px;font-size:.57rem}.marquee-heading{grid-template-columns:1fr}.marquee-product{width:145px;height:162px}.marquee-product img{height:108px}
  .contact-hero h1{font-size:1.9rem}.contact-hero-badges{display:grid;grid-template-columns:1fr}.contact-form-wrap{padding:20px}.contact-prep-list{grid-template-columns:1fr}
  .products-hero h1{font-size:1.9rem}.products-hero-stack{height:260px;transform:scale(.82);transform-origin:top left;width:510px}.product-family-grid{grid-template-columns:1fr}.product-family-card{grid-template-columns:40% 60%;min-height:225px}.family-image{padding:13px}.family-image img{height:160px}.family-content{padding:20px 16px}.family-content h3{font-size:1.05rem}.family-tags span{font-size:.62rem}.legacy-feature h2{font-size:1.5rem}
  .subcategory-page .page-hero h1{font-size:1.75rem}#subcats .cat-card::before{height:185px}#subcats .cat-card h3{margin:20px 19px 7px;font-size:1.04rem}#subcats .cat-card p,#subcats .cat-card .more{margin-left:19px;margin-right:19px}
  .v20-hero h1{font-size:1.85rem}.v20-model-section{padding:52px 0}.v20-filter-bar a{width:100%;margin-left:0}.v20-table-wrap{margin-right:-20px;border-radius:8px 0 0 8px}.v20-table-wrap table{min-width:700px}.model-pagination{justify-content:flex-start;overflow:hidden}.model-pagination a:nth-of-type(2),.model-pagination a:nth-of-type(3){display:none}.v20-help-items{grid-template-columns:1fr}.v20-product-layout{padding-top:35px}
}

@media (max-width:960px){.series-selection-panel>.container{grid-template-columns:1fr 1.25fr;gap:24px}.series-selection-panel>.container>.btn{grid-column:1 / -1;width:max-content}}
@media (max-width:720px){.series-selection-panel>.container{grid-template-columns:1fr}.series-selection-items{grid-template-columns:1fr 1fr}.series-selection-panel>.container>.btn{grid-column:auto}}
@media (max-width:460px){.series-catalog-toolbar a{width:100%;margin-left:0}.series-selection-items{grid-template-columns:1fr}}
@media (max-width:960px){.product-family-grid{grid-template-columns:repeat(2,1fr)}.product-guide-heading{gap:32px}.product-coverage-grid{gap:42px}}
@media (max-width:720px){.product-guide{padding:58px 0}.product-guide-heading,.product-coverage-grid{grid-template-columns:1fr;gap:24px}.product-guide h2,.product-coverage h2{font-size:1.7rem}.product-guide-grid{grid-template-columns:1fr}.product-coverage{padding:58px 0}.coverage-list{grid-template-columns:1fr 1fr}}
@media (max-width:720px){.product-reviews{padding:58px 0}.product-reviews-heading{grid-template-columns:1fr;gap:14px}.product-reviews h2{font-size:1.65rem}.product-detail-page .pd-info{border-left:0;border-top:2px solid #d7e8ed;padding:25px 0 0}.review-submit{grid-template-columns:1fr;gap:20px}.review-form-fields{grid-template-columns:1fr}}
@media (max-width:460px){.product-family-card{min-height:0}.family-image{min-height:195px}.family-image img{height:158px}.coverage-list{grid-template-columns:1fr}}
.products-page .family-image,.products-page .family-drive .family-image,.products-page .family-controls .family-image,.products-page .family-network .family-image,.products-page .family-process .family-image,.products-page .family-power .family-image{background:#fff}.products-page .family-image::after,.products-page .family-image>span{display:none}.products-page .family-image{height:250px;min-height:250px;padding:14px;border-bottom:1px solid var(--line)}.products-page .family-image img{width:100%;height:220px;object-fit:contain}
@media (max-width:460px){.products-page .family-image{height:205px;min-height:205px}.products-page .family-image img{height:177px}}
.home-page .cat-card[href^="products/"]::before{height:210px;background-color:#fff;background-size:cover;background-position:center}
.company-video-slot.company-video-embedded{display:grid;grid-template-rows:auto 1fr auto;gap:10px;padding:22px}.company-video-slot.company-video-embedded video{width:100%;min-height:280px;object-fit:cover;border-radius:8px;background:#000}

/* ============================================================
   WordPress 适配：首页分类卡片背景图
   静态站 CSS 用相对链接做选择器（[href="products/xxx.html"]），
   WordPress 输出绝对链接（/products/xxx/），导致背景图不显示。
   这里用 [href*="/products/xxx/"] 重新匹配，样式与静态站完全一致。
   ============================================================ */
.home-page .cat-card[href*="/products/"]{padding:0;overflow:hidden;display:flex;flex-direction:column}
.home-page .cat-card[href*="/products/"] .cat-ico{display:none}
.home-page .cat-card[href*="/products/"]::before{content:"";height:170px;display:block;background-color:#e7f1f4;background-position:center;background-repeat:no-repeat;background-size:contain;border-bottom:1px solid var(--line);transition:transform .25s}
.home-page .cat-card[href*="/products/"]:hover::before{transform:scale(1.04)}
.home-page .cat-card[href*="/products/"] h3{margin:20px 22px 8px}
.home-page .cat-card[href*="/products/"] p{margin:0 22px 16px;line-height:1.6}
.home-page .cat-card[href*="/products/"] .more{margin-left:22px}
.home-page .cat-card[href*="/products/"] .count{margin-right:22px}
.home-page .cat-card[href*="/products/"] .more,.home-page .cat-card[href*="/products/"] .count{margin-bottom:21px}

/* Product PDF / Documents & Downloads panel */
.ss-docs-panel{border:1px solid var(--line,#e3eaf0);border-radius:12px;overflow:hidden;background:#fff;box-shadow:0 2px 8px rgba(16,42,67,.06);width:100%}
.ss-pdf-notes{list-style:none;margin:0;padding:20px 22px 8px;background:#fff;border-bottom:1px solid var(--line,#e3eaf0);display:grid;grid-template-columns:1fr 1fr;gap:14px 26px}
.ss-pdf-notes li{display:flex;align-items:flex-start;gap:10px;font-size:.88rem;line-height:1.5;color:#3d5167}
.ss-pdf-notes .dashicons{color:#0b7a4b;font-size:17px;width:17px;height:17px;margin-top:3px;flex:none}
.ss-pdf-list{list-style:none;margin:0;padding:0}
.ss-pdf-list li{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 22px;background:#fff}
.ss-pdf-list li+li{border-top:1px solid var(--line,#e3eaf0)}
.ss-pdf-file{display:flex;align-items:center;gap:12px;min-width:0}
.ss-pdf-file .dashicons{color:var(--blue,#005a9c);font-size:24px;width:24px;height:24px}
.ss-pdf-name{font-weight:600;color:var(--navy,#102a43);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.ss-pdf-actions{display:flex;gap:8px;flex-shrink:0}
.ss-pdf-actions a{display:inline-block;padding:7px 18px;border:1px solid #cfdbe4;border-radius:7px;font-size:.88rem;font-weight:600;color:var(--navy,#102a43);text-decoration:none;transition:all .2s}
.ss-pdf-actions a:hover{background:var(--blue,#005a9c);border-color:var(--blue,#005a9c);color:#fff}
.home-page .cat-card[href*="/products/"]::before{height:210px;background-color:#fff;background-size:cover;background-position:center}
.home-page .cat-card[href*="/products/industrial-automation/"]::before{background-image:url("../images/products/cpu-1511.jpg")}
.home-page .cat-card[href*="/products/drive-technology/"]::before{background-image:url("../images/products/g120-pm240.jpg");background-color:#e6eef5}
.home-page .cat-card[href*="/products/low-voltage-controls-distribution/"]::before{background-image:url("../images/products/contactor-3rt2027.jpg");background-color:#f2ede1}
.home-page .cat-card[href*="/products/energy-power-systems/"]::before{background-image:url("../images/products/et200sp-di.jpg")}
.home-page .cat-card[href*="/products/building-technologies/"]::before{background-image:url("../images/products/sitrans-lr250.jpg");background-color:#e5f1eb}
/* ============================================================
   V2：分类图/图标直出（后台缩略图 → 现有图片 → SVG 图标）
   旧 ::before 背景图规则停用，改由 PHP 输出 .cat-card-visual。
   ============================================================ */
.home-page .cat-card[href*="/products/"]::before{display:none}
.cat-card .cat-card-visual{height:218px;display:flex;align-items:center;justify-content:center;background:#fff;border-bottom:1px solid var(--line);overflow:hidden;flex:none}
.cat-card .cat-card-visual img{width:100%;height:100%;object-fit:contain;object-position:center;display:block}
.cat-card .cat-card-visual img.cat-card-icon{width:64px;height:64px;object-fit:contain}
.cat-card.cat-card-series{padding:0;overflow:hidden;display:flex;flex-direction:column}
.cat-card.cat-card-series h3{margin:18px 20px 6px}
.cat-card.cat-card-series p{margin:0 20px 12px;line-height:1.6}
.cat-card.cat-card-series .more{margin-left:20px}
.cat-card.cat-card-series .count{margin-right:20px}
.cat-card.cat-card-series .more,.cat-card.cat-card-series .count{margin-bottom:18px}
.product-desc-section{background:linear-gradient(180deg,#eef6f8,#fff)}
.product-desc-section .container{padding-left:0;padding-right:0}
.product-desc-card{background:#fff;border:1px solid #d7e5ea;border-radius:12px;padding:22px 24px;box-shadow:0 8px 20px rgba(0,31,57,.06)}
.product-desc-card h2{font-size:20px;margin-bottom:12px}
.product-long-desc{color:#3f4a55;font-size:14.5px;line-height:1.85}
.product-detail-page .pd-gallery .pd-main{background:#fff}

/* Product trade info tags (HS Code / Origin) */
.ss-trade-tags{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 16px}
.ss-trade-tag{display:inline-flex;align-items:center;gap:8px;padding:7px 14px;border:1px solid #d7e0e8;border-radius:7px;background:#f6f9fb;font-size:.85rem;color:#334155}
.ss-trade-label{font-size:.72rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#64748b}
.ss-trade-tag b{color:#0f2f4c;font-weight:700}

/* plc-trade import: product details spec list (from xlsx CSS guide) */
.plc-product-details{width:100%;min-width:0;margin:16px 0;box-sizing:border-box;container-type:inline-size;color:#1f2937;font-family:inherit}
.plc-product-details *,.plc-product-details *::before,.plc-product-details *::after{box-sizing:border-box}
.plc-product-heading{width:100%;min-width:0;margin:0 0 16px}
.plc-product-heading h2{margin:8px 0 6px;font-size:clamp(20px,3cqi,28px);line-height:1.3;overflow-wrap:anywhere}
.plc-product-heading p{margin:0;line-height:1.65}
.plc-brand{display:inline-block;padding:4px 9px;border-radius:999px;background:#0066a1;color:#fff;font-size:12px;font-weight:600;letter-spacing:.04em}
.plc-spec-list{width:100%;min-width:0;list-style:none;margin:0;padding:0;overflow:hidden;border:1px solid #d7e0e8;border-radius:8px;background:#fff}
.plc-spec-list li{display:grid;grid-template-columns:minmax(150px,30%) minmax(0,1fr);width:100%;min-width:0;margin:0;padding:0;border-bottom:1px solid #dfe5ec}
.plc-spec-list li:last-child{border-bottom:0}
.plc-spec-label,.plc-spec-value{display:block;min-width:0;padding:12px 14px;overflow-wrap:anywhere;word-break:normal;line-height:1.55}
.plc-spec-label{border-right:1px solid #dfe5ec;background:#f1f5f8;color:#334155;font-weight:600}
.plc-spec-value{color:#111827}
.plc-product-summary{margin:0 0 12px;line-height:1.65}
@container (max-width:520px){.plc-spec-list li{grid-template-columns:minmax(0,1fr)}.plc-spec-label{border-right:0;border-bottom:1px solid #dfe5ec}}
@media (max-width:600px){.plc-spec-list li{grid-template-columns:minmax(0,1fr)}.plc-spec-label{border-right:0;border-bottom:1px solid #dfe5ec}}

/* Resources article cards and dynamic sitemap layout. */
.resource-card{display:flex;min-height:220px;flex-direction:column}.resource-card-image{width:calc(100% + 44px);height:150px;object-fit:cover;margin:-22px -22px 18px;border-radius:var(--radius) var(--radius) 0 0}.resource-card .more{margin-top:auto}.resources-empty{padding:28px;background:#fff;border:1px solid var(--line);border-radius:var(--radius);color:var(--muted)}
.ss-sitemap-page .section{background:#f3f7f8}.ss-sitemap-page .section .container{display:grid;grid-template-columns:minmax(170px,.42fr) minmax(0,1fr);gap:0 32px;align-items:start}.ss-sitemap-page .section h2{align-self:stretch;margin:0;padding:24px 0 18px;color:var(--navy)!important;font-size:1.22rem;border-top:1px solid #c9dce2}.ss-sitemap-page .section h2:first-of-type{border-top:0}.ss-sitemap-page .section ul{margin:0 0 20px!important;padding:16px 20px!important;line-height:1.55!important;list-style:none;background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:0 8px 18px rgba(10,46,71,.05)}.ss-sitemap-page .section li{padding:4px 0}.ss-sitemap-page .section li a{font-size:.88rem;font-weight:600}.ss-sitemap-page .section li[style]{padding-left:16px!important}.ss-sitemap-page .section li[style] a{font-size:.8rem;font-weight:500;color:var(--muted)}
@media (max-width:700px){.ss-sitemap-page .section .container{grid-template-columns:1fr}.ss-sitemap-page .section h2{padding:20px 0 9px}.ss-sitemap-page .section ul{margin-bottom:12px!important}}

/* Keep the footer at the bottom of the viewport on short pages. */
html,body{min-height:100%}body{min-height:100vh;display:flex;flex-direction:column}body>main{flex:1 0 auto}.site-footer{flex:none}

/* First-level category heroes use the shared background image only. */
.products-hero .products-hero-grid{grid-template-columns:1fr}.products-hero .products-hero-stack{display:none}

/* Resources filters, pagination, and grouped sitemap directory. */
.resource-category-filter{display:flex;gap:9px;flex-wrap:wrap;margin:0 0 28px}.resource-category-filter a{padding:7px 13px;border:1px solid #cbdce4;border-radius:999px;color:var(--navy);font-size:.78rem;font-weight:700}.resource-category-filter a:hover,.resource-category-filter a.is-active{border-color:var(--blue);background:var(--blue);color:#fff;text-decoration:none}.resource-pagination{margin-top:34px}.resource-pagination .page-numbers{display:flex;gap:7px;justify-content:center;list-style:none}.resource-pagination a,.resource-pagination span{display:flex;align-items:center;justify-content:center;min-width:36px;height:36px;padding:0 10px;border:1px solid #cedde4;border-radius:6px;font-size:.82rem;font-weight:700}.resource-pagination .current{background:var(--navy);border-color:var(--navy);color:#fff}
.sitemap-directory{background:#f3f7f8}.sitemap-directory .container{display:grid;gap:26px}.sitemap-section{padding:30px;background:#fff;border:1px solid #d7e4e9;border-radius:12px;box-shadow:0 9px 25px rgba(10,46,71,.045)}.sitemap-section-heading{display:flex;align-items:center;gap:13px;margin-bottom:20px}.sitemap-section-heading>span{display:flex;width:34px;height:34px;align-items:center;justify-content:center;border-radius:50%;background:#dff0f4;color:var(--blue);font-size:.72rem;font-weight:800}.sitemap-section-heading p{margin:0;color:var(--blue);font-size:.7rem;font-weight:800;letter-spacing:1px;text-transform:uppercase}.sitemap-section-heading h2{margin:2px 0 0;color:var(--navy);font-size:1.42rem}.sitemap-link-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}.sitemap-link-grid a{display:flex;justify-content:space-between;gap:8px;padding:12px 13px;border:1px solid #d8e3e8;border-radius:7px;color:var(--navy);font-size:.84rem;font-weight:700}.sitemap-link-grid a:hover{border-color:var(--blue);background:#f0f8fa;text-decoration:none}.sitemap-link-grid a span{color:var(--blue)}.sitemap-category-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}.sitemap-category-card{padding:17px;border:1px solid #d8e3e8;border-radius:8px;background:#fbfdfe}.sitemap-category-card h3{margin:0 0 10px;font-size:.92rem}.sitemap-category-card h3 a{color:var(--navy)}.sitemap-category-card ul{margin:0;padding:0;list-style:none}.sitemap-category-card li{margin:5px 0}.sitemap-category-card li a{color:var(--muted);font-size:.76rem;line-height:1.35}.sitemap-category-card li a:hover{color:var(--blue)}.sitemap-view-all{margin-left:auto;font-size:.8rem;font-weight:800}.sitemap-resource-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}.sitemap-resource-grid a{min-height:116px;padding:16px;border-radius:8px;background:var(--navy);color:#fff;display:flex;flex-direction:column;gap:10px}.sitemap-resource-grid a:hover{background:#073c5b;text-decoration:none}.sitemap-resource-grid span{color:var(--amber);font-size:.68rem;font-weight:800;text-transform:uppercase;letter-spacing:.8px}.sitemap-resource-grid b{font-size:.81rem;line-height:1.4}.sitemap-legal .sitemap-link-grid{grid-template-columns:repeat(2,1fr);max-width:520px}
@media (max-width:850px){.sitemap-link-grid{grid-template-columns:repeat(2,1fr)}.sitemap-category-grid{grid-template-columns:repeat(2,1fr)}.sitemap-resource-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.sitemap-section{padding:21px 16px}.sitemap-link-grid,.sitemap-category-grid,.sitemap-resource-grid,.sitemap-legal .sitemap-link-grid{grid-template-columns:1fr}.sitemap-view-all{display:none}}
