/* Curated inline photographs; native lazy-loading, no gallery script. */
.abc-page-photos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.shell.abc-page-photos--single { max-width: 940px; grid-template-columns: 1fr; }
.abc-page-photo { margin: 0; border: 1px solid #dce5ef; border-radius: 18px; overflow: hidden; background: #fff; }
.abc-page-photo img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.abc-page-photo--contain img { object-fit: contain; padding: 18px; background: #fff; }
.abc-page-photo figcaption { padding: 16px 20px; color: #4d5c70; font-size: 14px; line-height: 1.65; }
@media (max-width: 700px) { .abc-page-photos { grid-template-columns: 1fr; gap: 22px; } }

:root {
	--navy: #071b36;
	--navy-2: #0b2b57;
	--blue: #1f56a8;
	--cyan: #1fc2df;
	--cyan-soft: #dff8fc;
	--ink: #10213b;
	--body: #4d5c70;
	--line: #dce5ef;
	--soft: #f4f7fb;
	--white: #fff;
	--success: #1ea672;
	--radius: 20px;
}

/* Editorial blog: restrained reading width, full images and accessible tables. */
.abc-blog-header { padding: 58px 0 48px; background: var(--soft); border-bottom: 1px solid var(--line); }
.abc-blog-header > .shell { max-width: 940px; }
.abc-blog-header h1 { max-width: 930px; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.14; letter-spacing: -.035em; margin: 18px 0; overflow-wrap: anywhere; }
.abc-blog-header .abc-breadcrumbs, .abc-blog-header .rank-math-breadcrumb { color: var(--body); font-size: .875rem; }
.abc-blog-header .eyebrow { margin-top: 24px; }
.abc-blog-header .abc-blog-meta { font-size: .875rem; color: var(--body); line-height: 1.7; }
.abc-blog-meta a { text-decoration: underline; text-underline-offset: 3px; }
.abc-blog-reading { max-width: 800px; padding: 44px 0 64px; }
.abc-blog-content { font-size: 1.0625rem; line-height: 1.85; }
.abc-blog-lead, .abc-blog-content > .abc-blog-lead { font-size: 1.1875rem; line-height: 1.8; color: var(--ink); }
.abc-blog .abc-blog-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.3; scroll-margin-top: 130px; }
.abc-blog .abc-blog-content h3 { font-size: 1.25rem; line-height: 1.4; }
.abc-blog .eyebrow { font-size: .875rem; }
.abc-blog-content li { margin-bottom: .7em; }
.abc-blog-content .abc-blog-figure { margin: 34px 0; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.abc-blog-figure img { width: 100%; max-height: 470px; object-fit: contain; background: #fff; }
.abc-blog-figure figcaption { font-size: .875rem; line-height: 1.65; padding: 16px 20px; color: var(--body); }
.abc-blog-toc { display: grid; gap: 9px; padding: 24px; background: var(--soft); border: 1px solid var(--line); border-radius: 12px; margin: 30px 0; }
.abc-blog-toc strong { color: var(--ink); }
.abc-blog-note { border-left: 4px solid var(--blue); background: var(--cyan-soft); padding: 20px 24px; margin: 28px 0; color: var(--ink); }
.abc-blog-table { overflow-x: auto; max-width: 100%; margin: 24px 0; border: 1px solid var(--line); border-radius: 12px; }
.abc-blog-table table { width: 100%; border-collapse: collapse; font-size: 1rem; text-align: left; line-height: 1.65; }
.abc-blog-table caption { text-align: left; padding: 16px; font-weight: 750; color: var(--ink); background: var(--soft); }
.abc-blog-table th, .abc-blog-table td { padding: 16px; min-width: 145px; vertical-align: top; border-bottom: 1px solid var(--line); }
.abc-blog-table thead { background: var(--navy); color: #fff; }
.abc-blog-table tbody tr:nth-child(even) { background: var(--soft); }
.abc-blog-content .abc-blog-cta { padding: 28px; margin-top: 40px; border-radius: 16px; color: #fff; background: var(--navy); }
.abc-blog-content .abc-blog-cta h2 { color: #fff; margin-top: 0; }
.abc-blog-content .abc-blog-cta a.button { color: var(--navy); text-decoration: none; }
.abc-blog-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); gap: 24px; margin-top: 28px; }
.abc-blog-card { max-width: 580px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.abc-blog-card__image { display: block; background: #fff; }
.abc-blog-card__image img { width: 100%; height: 220px; object-fit: contain; }
.abc-blog-card__body { padding: 24px; }
.abc-blog-card__body h3 { margin: 0 0 14px; font-size: 1.25rem; line-height: 1.4; }
.abc-blog-card__body h3 a { text-decoration: underline; text-decoration-color: var(--cyan); text-underline-offset: 4px; }
.abc-blog-card__body > p:last-child { font-size: 1rem; line-height: 1.75; color: var(--body); margin-bottom: 0; }
.abc-blog-content .faq-list summary { font-size: 1rem; }
.abc-blog-content .faq-list p { font-size: 1rem; }
.abc-blog-service-links { font-size: 1.0625rem; line-height: 1.8; padding-left: 24px; }
.abc-blog-service-links a { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }
.abc-blog a:focus-visible, .abc-blog-table:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
@media (max-width: 620px) {
	.abc-blog-header { padding: 30px 0; }
	.abc-blog-reading { padding-top: 24px; }
	.abc-blog-note, .abc-blog-toc, .abc-blog-content .abc-blog-cta { padding: 18px; }
	.abc-blog-content ol, .abc-blog-content ul { padding-left: 24px; }
	.abc-blog-table th, .abc-blog-table td { padding: 12px; }
	.abc-blog-figure img { max-height: 350px; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--white);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 14px; top: -80px; z-index: 1000; background: #fff; color: var(--navy); padding: 12px 18px; border-radius: 8px; box-shadow: 0 10px 30px #0002; }
.skip-link:focus { top: 14px; }

.topbar { background: var(--navy); color: #dbe9fb; font-size: 12px; }
.topbar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar__inner > span, .topbar__inner > div, .topbar a { display: flex; align-items: center; gap: 8px; }
.topbar__inner > div { gap: 24px; }
.topbar a:hover { color: #fff; }
.live-dot { width: 7px; height: 7px; border-radius: 999px; background: #40e0a5; box-shadow: 0 0 0 4px #40e0a526; display: inline-block; flex: 0 0 auto; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); box-shadow: 0 1px 0 #dce5ef; backdrop-filter: blur(12px); }
.nav-row { min-height: 86px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand img, .brand .custom-logo { width: 210px; height: auto; }
.brand .custom-logo-link { display: inline-flex; }
.primary-nav { display: flex; align-items: center; }
.abc-menu { list-style: none; display: flex; gap: 23px; align-items: center; margin: 0; padding: 0; }
.abc-menu > li { position: relative; }
.abc-menu__parent-row { display: flex; align-items: center; gap: 3px; }
.abc-menu > li > a, .abc-menu__parent-row > a { color: #263a55; font-size: 13px; font-weight: 780; position: relative; padding: 12px 0; white-space: nowrap; }
.abc-menu > li > a::after, .abc-menu__parent-row > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 5px; height: 2px; background: var(--cyan); transition: right .2s ease; }
.abc-menu > li > a:hover::after, .abc-menu > li > a:focus-visible::after, .abc-menu__parent-row > a:hover::after, .abc-menu__parent-row > a:focus-visible::after, .abc-menu > .current-menu-item > a::after, .abc-menu > .current-menu-ancestor > .abc-menu__parent-row > a::after { right: 0; }
.menu-toggle { display: none; align-items: center; gap: 8px; min-height: 42px; padding: 0 12px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 10px; font: inherit; font-size: 12px; font-weight: 820; cursor: pointer; }
.menu-toggle__icon { width: 18px; display: grid; gap: 4px; }
.menu-toggle__icon span { display: block; height: 2px; border-radius: 99px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:last-child { transform: translateY(-6px) rotate(-45deg); }
.submenu-toggle { width: 28px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; padding: 0; border: 0; border-radius: 8px; color: #58708e; background: transparent; font: inherit; font-size: 16px; line-height: 1; cursor: pointer; }
.submenu-toggle > span[aria-hidden="true"] { display: block; transform: translateY(-2px); transition: transform .2s ease; }
.submenu-toggle[aria-expanded="true"] > span[aria-hidden="true"] { transform: translateY(2px) rotate(180deg); }
.submenu-toggle:hover { color: var(--blue); background: var(--soft); }
.sub-menu { position: absolute; z-index: 20; left: -18px; top: calc(100% + 1px); min-width: 270px; max-height: calc(100vh - 130px); overflow-y: auto; display: grid; gap: 2px; list-style: none; margin: 0; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 20px 45px #071b3626; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px); transition: opacity .18s ease, visibility .18s ease, transform .18s ease; }
.abc-menu > li:hover > .sub-menu, .abc-menu > li:focus-within > .sub-menu, .abc-menu > li.is-open > .sub-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.sub-menu a { display: block; padding: 10px 12px; border-radius: 9px; color: #344a66; font-size: 13px; font-weight: 700; line-height: 1.35; }
.sub-menu a:hover, .sub-menu a:focus-visible, .sub-menu .current-menu-item > a { color: var(--navy); background: var(--cyan-soft); }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.header-call { display: flex; align-items: center; gap: 11px; border-left: 1px solid var(--line); padding-left: 24px; }
.contact-symbol { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: var(--blue); }
.header-call__text { margin: 0; display: grid; gap: 1px; }
.header-call small { color: #718096; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.header-call strong { font-size: 15px; letter-spacing: .02em; }

.hero { position: relative; min-height: 610px; overflow: hidden; background: var(--navy); color: #fff; }
.hero__photo { position: absolute; inset: 0 0 0 44%; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, #071b36 0%, #071b36 38%, #071b36eb 51%, #071b3670 72%, #071b3630 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(#fff1 1px, transparent 1px), linear-gradient(90deg, #fff1 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, #000, transparent 70%); }
.hero::after { content: "24/7"; position: absolute; right: 2.5vw; bottom: -26px; font-size: clamp(110px, 16vw, 230px); font-weight: 900; line-height: .8; letter-spacing: -.08em; color: #fff0; -webkit-text-stroke: 1px #ffffff2b; }
.hero__inner { position: relative; min-height: 610px; display: flex; align-items: center; }
.hero__content { width: min(665px, 62%); padding: 82px 0 98px; }
.eyebrow { color: var(--blue); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 850; margin: 0 0 16px; }
.eyebrow--light { color: #98e9f7; display: flex; align-items: center; gap: 10px; }
.hero h1 { font-size: clamp(46px, 5.25vw, 72px); line-height: 1.03; letter-spacing: -.045em; margin: 0; max-width: 680px; }
.hero h1 span { color: var(--cyan); }
.hero__lead { max-width: 610px; margin: 24px 0 0; color: #d9e5f4; font-size: 18px; line-height: 1.7; }
.hero__actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 12px; padding: 0 20px; font-weight: 800; font-size: 14px; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .abc-menu a:focus-visible, .menu-toggle:focus-visible, .submenu-toggle:focus-visible, .floating-actions a:focus-visible { outline: 3px solid #69dff1; outline-offset: 3px; }
.button--accent { color: #041a2e; background: var(--cyan); box-shadow: 0 12px 34px #05c6e72b; }
.button--accent:hover { background: #50d9ef; box-shadow: 0 16px 40px #05c6e740; }
.button--ghost-light { color: #fff; border-color: #ffffff55; background: #ffffff0d; }
.button--ghost-light:hover { background: #ffffff18; }
.button--dark { color: #fff; background: var(--navy); }
.button--outline { color: var(--navy); border-color: #b8c8da; background: #fff; }
.button--outline:hover { border-color: var(--blue); }
.hero__checks { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 30px; color: #bed0e5; font-size: 13px; }

.trust-rail { position: relative; z-index: 3; margin-top: -38px; }
.trust-rail__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 18px; background: #fff; box-shadow: 0 24px 60px #08244d21; border: 1px solid #e5edf6; overflow: hidden; }
.trust-rail__grid > div { display: flex; align-items: center; gap: 16px; min-height: 96px; padding: 20px 28px; }
.trust-rail__grid > div + div { border-left: 1px solid var(--line); }
.rail-symbol, .service-card__icon { display: grid; place-items: center; color: #fff; background: var(--blue); font-weight: 900; }
.rail-symbol { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 14px; font-size: 11px; }
.trust-rail p { margin: 0; display: grid; gap: 3px; }
.trust-rail strong { font-size: 15px; }
.trust-rail p span { color: #738096; font-size: 12px; }

.section { padding: 104px 0; }
.section--compact { padding-top: 54px; }
.section--soft { background: var(--soft); }
.section--navy { background: var(--navy); color: #fff; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 70px; align-items: end; margin-bottom: 42px; }
.section-heading--center { max-width: 760px; margin-inline: auto; text-align: center; display: block; }
.section-heading--center p:last-child { max-width: 600px; margin: 16px auto 0; }
h2 { font-size: clamp(31px, 3.4vw, 46px); line-height: 1.14; letter-spacing: -.035em; margin: 0; }
.section-heading > p, .process-intro > p, .about-split__content > p, .faq-layout > div > p, .story-grid > div > p, .solution-grid > div > p, .contact-main-grid > div > p, .contact-details-grid > div > p, .area-contact > div > p { color: var(--body); line-height: 1.75; margin: 0; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: 0 12px 35px #0a2a550a; transition: transform .22s ease, box-shadow .22s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px #0a2a5517; }
.service-card__image { position: relative; aspect-ratio: 2 / 1; overflow: hidden; background: #dfe8f1; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-card:hover .service-card__image img { transform: scale(1.035); }
.service-card__icon { position: absolute; left: 22px; bottom: -1px; transform: translateY(50%); width: 48px; height: 48px; border-radius: 14px; box-shadow: 0 10px 25px #1f56a84a; }
.service-card__body { padding: 40px 24px 26px; }
.service-card h3, .service-extra h3, .steps h3, .solution-card h3, .values-grid h3 { margin: 0; font-size: 20px; letter-spacing: -.02em; }
.service-card p, .service-extra p, .steps p, .values-grid p, .solution-card li { color: var(--body); font-size: 14px; line-height: 1.72; }
.text-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 7px; color: var(--blue); font-size: 13px; font-weight: 850; }
.text-link:hover { text-decoration: underline; }
.text-link--large { font-size: 15px; margin-top: 14px; }
.service-extra { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; padding: 25px 28px; border-radius: 18px; background: var(--cyan-soft); margin-top: 22px; }
.service-extra__symbol { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: var(--blue); color: #fff; font-size: 10px; font-weight: 900; }
.service-extra p { margin: 5px 0 0; }

.process-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 86px; align-items: center; }
.process-intro .button { margin-top: 26px; }
.process-intro > p { margin-top: 20px; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.steps li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 23px; border-radius: 16px; background: #fff; border: 1px solid #e2e9f1; }
.steps li > span { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: var(--blue); font-weight: 900; font-size: 13px; }
.steps p { margin: 7px 0 0; }

.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-split__visual { position: relative; min-height: 520px; border-radius: 26px 90px 26px 26px; overflow: hidden; background: #dce7f1; }
.about-split__visual > img { width: 100%; height: 100%; object-fit: cover; }
.about-split__badge { position: absolute; left: 22px; right: 22px; bottom: 22px; display: grid; gap: 3px; padding: 18px 20px; background: #071b36e8; color: #fff; backdrop-filter: blur(10px); border: 1px solid #ffffff28; border-radius: 15px; }
.about-split__badge span { color: #c7d7e9; font-size: 12px; }
.about-split__badge strong { font-size: 14px; }
.about-split__content > p { margin-top: 21px; }
.check-list { list-style: none; padding: 0; margin: 25px 0; display: grid; gap: 13px; }
.check-list li { color: #34455c; font-size: 14px; line-height: 1.5; }
.check-list--boxed { margin-top: 28px; }
.check-list--boxed li { padding: 14px 16px; border: 1px solid var(--line); border-radius: 11px; background: #fff; }

.area-row { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.area-row > div { max-width: 760px; }
.area-row p:last-child { color: #bdcadb; line-height: 1.75; margin: 18px 0 0; }
.area-row .button { flex: 0 0 auto; }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.faq-layout > div > p { margin-top: 20px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center; background: var(--soft); color: var(--blue); font-size: 20px; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -8px 44px 22px 0; color: var(--body); line-height: 1.7; font-size: 14px; }

.final-cta { padding: 66px 0; color: #fff; background: linear-gradient(115deg, #1f56a8, #0c2b56); position: relative; overflow: hidden; }
.final-cta::after { content: ""; width: 330px; height: 330px; border: 60px solid #ffffff0b; border-radius: 50%; position: absolute; right: -70px; top: -155px; }
.final-cta__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta h2 { font-size: clamp(30px, 3vw, 42px); }
.final-cta p:last-child { color: #d8e4f2; margin: 12px 0 0; }
.final-cta__actions { display: flex; gap: 10px; flex-wrap: wrap; flex: 0 0 auto; }

.page-hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 82% 20%, #1c579d 0, #0c2c57 28%, #071b36 68%); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(90deg, transparent 49.5%, #fff3 50%, transparent 50.5%); background-size: 88px 100%; }
.page-hero__inner { min-height: 420px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; position: relative; z-index: 1; padding-block: 72px; }
.page-hero__inner > div:first-child { max-width: 760px; }
.page-hero h1 { font-size: clamp(43px, 5vw, 66px); line-height: 1.06; letter-spacing: -.045em; margin: 0; }
.page-hero h1 + p { color: #c9d8ea; font-size: 18px; line-height: 1.7; max-width: 700px; margin: 22px 0 0; }
.abc-breadcrumbs, .rank-math-breadcrumb p { display: flex; gap: 10px; color: #9eb1c9; font-size: 12px; margin: 0 0 38px; }
.abc-breadcrumbs a, .rank-math-breadcrumb a { color: #fff; }
.page-hero__mark { width: 220px; height: 220px; border: 1px solid #ffffff2b; border-radius: 55px 55px 55px 12px; display: grid; place-items: center; font-size: 48px; font-weight: 950; letter-spacing: -.08em; transform: rotate(3deg); box-shadow: inset 0 0 0 15px #ffffff08; }
.page-hero__mark span { display: block; color: var(--cyan); font-size: 26px; margin-top: -48px; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-grid__image { position: relative; min-height: 540px; border-radius: 24px; overflow: hidden; background: #dce5ef; }
.story-grid__image img { width: 100%; height: 100%; object-fit: cover; }
.story-grid__stamp { position: absolute; left: 22px; bottom: 22px; color: #fff; background: var(--blue); padding: 14px 18px; border-radius: 13px; font-weight: 800; }
.story-grid > div > p { margin-top: 20px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 42px; }
.values-grid article { padding: 28px 24px; background: #fff; border: 1px solid var(--line); border-radius: 17px; }
.values-grid article > span { width: 44px; height: 44px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 12px; font-size: 10px; font-weight: 900; margin-bottom: 24px; }
.values-grid p { margin-bottom: 0; }
.solution-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: center; }
.solution-grid > div > p { margin-top: 20px; }
.solution-card { background: var(--navy); color: #fff; border-radius: 22px; padding: 36px; box-shadow: 18px 18px 0 var(--cyan-soft); }
.solution-card ul { list-style: none; padding: 0; margin: 25px 0 0; display: grid; gap: 15px; }
.solution-card li { color: #d7e2ef; }
.company-row { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.company-row dl { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.company-row dl > div { border-bottom: 1px solid #ffffff24; padding-bottom: 18px; }
.company-row dt { color: #8fa4be; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 7px; }
.company-row dd { margin: 0; font-weight: 750; }

.contact-overlap { padding-top: 0; margin-top: -42px; position: relative; z-index: 2; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-card { min-height: 230px; padding: 28px; border: 1px solid var(--line); border-radius: 19px; background: #fff; box-shadow: 0 18px 50px #08244d17; transition: transform .2s ease; }
.contact-card:hover { transform: translateY(-4px); }
.contact-card--primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.contact-card__icon { width: 49px; height: 49px; border-radius: 14px; display: grid; place-items: center; background: var(--cyan-soft); color: var(--blue); }
.contact-card--primary .contact-card__icon { background: #ffffff18; color: var(--cyan); }
.contact-card > p { color: #6e7d91; text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 850; margin: 22px 0 7px; }
.contact-card--primary > p { color: #c4d5ea; }
.contact-card h2 { font-size: 25px; }
.contact-card > span:last-child { display: flex; color: var(--blue); font-size: 12px; font-weight: 800; margin-top: 24px; }
.contact-card--primary > span:last-child { color: #fff; }
.contact-main-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 80px; align-items: start; }
.contact-main-grid > div > p { margin-top: 20px; }
.availability-card { color: #fff; background: var(--navy); border-radius: 22px; padding: 38px; position: relative; overflow: hidden; }
.availability-card__mark { position: absolute; right: -12px; top: -16px; font-size: 90px; font-weight: 900; color: #ffffff0c; }
.availability-card .eyebrow { color: var(--cyan); }
.availability-card h2 { font-size: 32px; max-width: 390px; }
.availability-card > p:not(.eyebrow) { color: #c4d2e2; line-height: 1.72; margin: 20px 0 28px; }
.contact-details-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.contact-details-grid > div > p { margin-top: 18px; }
.details-list { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.details-list > div { padding: 22px; border-radius: 15px; background: #fff; border: 1px solid var(--line); }
.details-list dt { color: #78869a; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.details-list dd { margin: 12px 0 0; line-height: 1.55; font-weight: 720; overflow-wrap: anywhere; }
.area-contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.area-contact > div > p { margin-top: 20px; }
.area-contact__places { display: flex; gap: 10px; flex-wrap: wrap; }
.area-contact__places span { border: 1px solid #cbd7e4; border-radius: 999px; padding: 11px 16px; color: #37506e; font-size: 13px; font-weight: 750; }

.services-overview-link { display: flex; justify-content: center; margin-top: 30px; }
.service-page-hero .page-hero__inner { min-height: 470px; }
.service-page-hero .hero__actions { margin-top: 28px; }
.service-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-feature-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 16px 45px #0a2a550d; }
.service-feature-card__image { aspect-ratio: 5 / 2.7; overflow: hidden; background: #dfe8f1; }
.service-feature-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.service-feature-card:hover .service-feature-card__image img { transform: scale(1.03); }
.service-feature-card__body { position: relative; padding: 34px 30px 32px; }
.feature-symbol { width: 40px; height: 40px; display: grid; place-items: center; color: #fff; background: var(--blue); border-radius: 12px; font-size: 13px; font-weight: 900; margin-bottom: 22px; }
.service-feature-card__body h2 { font-size: 29px; }
.service-feature-card__body p { color: var(--body); line-height: 1.72; }
.service-feature-card__number { position: absolute; right: 24px; top: 22px; color: #dce6f1; font-size: 50px; line-height: 1; font-weight: 900; letter-spacing: -.06em; }
.support-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.support-service-grid article { padding: 30px 26px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.support-symbol { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: var(--blue); background: var(--cyan-soft); font-size: 11px; font-weight: 900; }
.support-service-grid h3 { margin: 23px 0 10px; font-size: 19px; }
.support-service-grid p { min-height: 96px; color: var(--body); font-size: 14px; line-height: 1.7; }
.support-service-grid a { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 800; font-size: 13px; }
.related-navigation { padding: 82px 0; color: #fff; }
.related-navigation__inner { display: grid; grid-template-columns: .68fr 1.32fr; gap: 80px; align-items: start; }
.related-navigation__inner h2 { font-size: clamp(30px, 3vw, 42px); }
.related-links { display: grid; gap: 10px; }
.related-links > a { min-height: 80px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 16px 18px; color: #fff; border: 1px solid #ffffff20; border-radius: 15px; background: #ffffff0a; transition: background .2s ease, border-color .2s ease; }
.related-links > a:hover { background: #ffffff13; border-color: #ffffff3b; }
.related-symbol { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 10px; color: var(--navy); background: var(--cyan); font-size: 10px; font-weight: 900; }
.related-links span:nth-child(2) { display: grid; gap: 4px; }
.related-links small { color: #9db0c7; font-size: 12px; }
.service-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 78px; align-items: center; }
.service-intro-grid__image { position: relative; min-height: 500px; overflow: hidden; border-radius: 24px 78px 24px 24px; background: #dce5ef; }
.service-intro-grid__image img { width: 100%; height: 100%; object-fit: cover; }
.service-intro-grid__image > span { position: absolute; left: 20px; bottom: 20px; padding: 15px 18px; color: #fff; background: #071b36e8; border: 1px solid #ffffff24; border-radius: 13px; font-size: 13px; font-weight: 800; backdrop-filter: blur(8px); }
.service-intro-grid > div:last-child > p:not(.eyebrow) { color: var(--body); line-height: 1.76; margin: 19px 0 0; }
.inline-link { color: var(--blue); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.situation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.situation-grid article { min-height: 138px; display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 15px; padding: 23px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.situation-grid span { color: var(--blue); font-size: 12px; font-weight: 900; }
.situation-grid p { margin: 0; color: #35485f; line-height: 1.6; font-weight: 700; }
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.reason-grid article { padding: 27px 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.reason-grid span { color: var(--blue); font-size: 12px; font-weight: 900; }
.reason-grid h3 { margin: 18px 0 8px; font-size: 19px; }
.reason-grid p { margin: 0; color: var(--body); font-size: 14px; line-height: 1.68; }
.service-note { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.service-note > div { max-width: 770px; }
.service-note p:last-child { color: #bdcadb; line-height: 1.75; margin: 18px 0 0; }
.service-note p:last-child a { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.service-note .button { flex: 0 0 auto; }

.content-page__header { color: #fff; background: linear-gradient(120deg, var(--navy), var(--navy-2)); padding: 76px 0; }
.content-page__header h1 { max-width: 900px; margin: 0; font-size: clamp(38px, 5vw, 62px); line-height: 1.08; letter-spacing: -.04em; overflow-wrap: anywhere; }
.content-page__header .abc-breadcrumbs, .content-page__header .rank-math-breadcrumb p { margin-bottom: 24px; }
.content-page__meta { color: #b8cbe1; }
.content-shell { max-width: 900px; padding-block: 72px 92px; }
.entry-content { color: var(--body); font-size: 17px; line-height: 1.8; overflow-wrap: anywhere; }
.entry-content h2, .entry-content h3, .entry-content h4 { color: var(--ink); margin: 1.6em 0 .65em; }
.entry-content h2 { font-size: clamp(28px, 3vw, 40px); }
.entry-content h3 { font-size: 24px; }
.entry-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.entry-content img, .entry-content figure { max-width: 100%; height: auto; }
.entry-content iframe { max-width: 100%; }
.post-list { display: grid; gap: 22px; }
.post-card { padding: 28px; border: 1px solid var(--line); border-radius: 16px; }
.post-card h2 { font-size: 28px; }
.post-card__date { color: #77879a; font-size: 12px; }
.not-found { padding-block: 110px; max-width: 850px; }
.not-found h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.05; margin: 0; }
.not-found > p:not(.eyebrow) { color: var(--body); font-size: 18px; line-height: 1.7; }

.site-footer { background: #06172d; color: #fff; padding: 72px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr 1fr .75fr; gap: 60px; }
.footer-brand img { width: 205px; height: auto; opacity: .96; }
.footer-brand p { color: #aab9cc; line-height: 1.7; max-width: 330px; font-size: 13px; margin: 22px 0 16px; }
.footer-brand span { display: inline-flex; color: var(--cyan); border: 1px solid #1fc2df4d; background: #1fc2df0e; padding: 8px 12px; border-radius: 999px; font-size: 11px; font-weight: 800; }
.footer-grid h2 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 22px; color: #d9e6f5; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-grid a, .footer-grid > div:not(:first-child) p { color: #91a2b8; font-size: 13px; line-height: 1.55; margin: 0; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { margin-top: 55px; padding-top: 22px; border-top: 1px solid #ffffff16; display: flex; justify-content: space-between; color: #71849d; font-size: 11px; }
.footer-bottom p { margin: 0; }
.floating-actions { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; align-items: center; gap: 9px; }
.floating-actions a { height: 52px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; color: #fff; box-shadow: 0 12px 30px #00142e42; }
.floating-actions__whatsapp { width: 52px; background: #1fb76b; }
.floating-actions__call { gap: 8px; padding: 0 18px; background: var(--blue); font-size: 13px; font-weight: 850; }

@media (max-width: 1120px) {
	.header-call__text { display: none; }
	.header-call { padding-left: 18px; }
}

@media (max-width: 980px) {
	.nav-row { gap: 18px; }
	.abc-menu { gap: 12px; }
	.abc-menu > li > a, .abc-menu__parent-row > a { font-size: 12px; }
	.hero__content { width: 72%; }
	.service-grid { grid-template-columns: 1fr 1fr; }
	.service-card:last-child { grid-column: span 2; }
	.service-card:last-child .service-card__image { aspect-ratio: 3 / 1; }
	.process-layout, .about-split, .story-grid, .solution-grid, .contact-main-grid { gap: 54px; }
	.values-grid { grid-template-columns: 1fr 1fr; }
	.service-intro-grid { gap: 50px; }
	.support-service-grid, .situation-grid, .reason-grid { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1.2fr .8fr 1fr; }
	.footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
	.shell { width: min(100% - 28px, 680px); }
	.topbar__inner > div { display: none; }
	.topbar__inner { justify-content: center; min-height: 33px; }
	.nav-row { min-height: 76px; flex-wrap: wrap; gap: 0; padding-top: 10px; }
	.brand img, .brand .custom-logo { width: 175px; }
	.header-call { margin-left: auto; border-left: 0; padding: 0; }
	.contact-symbol { width: 39px; height: 39px; }
	.menu-toggle { margin-right: 9px; }
	.abc-nav-ready .menu-toggle { display: inline-flex; }
	.primary-nav { order: 4; width: 100%; justify-content: stretch; border-top: 1px solid var(--line); margin-top: 9px; }
	.abc-nav-ready .primary-nav { display: none; }
	.abc-nav-ready .primary-nav.is-open { display: block; }
	.abc-menu { width: 100%; display: grid; gap: 0; align-items: stretch; padding: 8px 0 13px; }
	.abc-menu > li { border-bottom: 1px solid #e8eef5; }
	.abc-menu > li:last-child { border-bottom: 0; }
	.abc-menu > li > a, .abc-menu__parent-row > a { display: flex; align-items: center; min-height: 47px; flex: 1 1 auto; padding: 10px 5px; font-size: 14px; }
	.abc-menu > li > a::after, .abc-menu__parent-row > a::after { bottom: 6px; }
	.abc-menu__parent-row { gap: 8px; }
	.submenu-toggle { width: 44px; height: 42px; background: var(--soft); }
	.sub-menu { position: static; min-width: 0; display: none; gap: 2px; padding: 0 0 10px 14px; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
	.abc-menu > li.is-open > .sub-menu { display: grid; }
	.sub-menu a { padding: 10px 12px; font-size: 13px; }
	.hero, .hero__inner { min-height: 660px; }
	.hero__photo { inset: 0; }
	.hero__shade { background: linear-gradient(90deg, #071b36f7 0%, #071b36eb 64%, #071b36a8 100%); }
	.hero__content { width: 90%; padding-block: 72px 100px; }
	.hero h1 { font-size: clamp(43px, 11vw, 62px); }
	.hero__lead { font-size: 16px; }
	.hero::after { font-size: 130px; }
	.trust-rail__grid { grid-template-columns: 1fr; }
	.trust-rail__grid > div { min-height: 78px; }
	.trust-rail__grid > div + div { border-left: 0; border-top: 1px solid var(--line); }
	.section { padding: 78px 0; }
	.section-heading, .process-layout, .about-split, .faq-layout, .story-grid, .solution-grid, .company-row, .contact-main-grid, .contact-details-grid, .area-contact, .service-intro-grid, .related-navigation__inner { grid-template-columns: 1fr; gap: 40px; }
	.section-heading { margin-bottom: 32px; }
	.about-split__visual, .story-grid__image { min-height: 430px; }
	.area-row, .final-cta__inner { align-items: flex-start; flex-direction: column; }
	.page-hero__inner { min-height: 380px; grid-template-columns: 1fr; }
	.page-hero__mark { display: none; }
	.contact-cards { grid-template-columns: 1fr; }
	.contact-card { min-height: auto; }
	.contact-overlap { margin-top: -26px; }
	.service-intro-grid__image { min-height: 410px; }
	.service-note { align-items: flex-start; flex-direction: column; }
	.details-list { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; }
	.footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
	.shell { width: calc(100% - 28px); }
	.site-header { position: relative; }
	.hero, .hero__inner { min-height: 620px; }
	.hero__content { width: 100%; padding: 58px 0 82px; }
	.hero h1 { font-size: 42px; }
	.hero__lead { line-height: 1.58; }
	.hero__actions { display: grid; }
	.hero__actions .button { width: 100%; }
	.hero__checks { gap: 10px 16px; }
	.service-grid { grid-template-columns: 1fr; }
	.service-card:last-child { grid-column: auto; }
	.service-card:last-child .service-card__image { aspect-ratio: 2 / 1; }
	.service-extra { grid-template-columns: auto 1fr; }
	.service-extra .button { grid-column: 1 / -1; }
	.steps li { grid-template-columns: 52px 1fr; padding: 18px; gap: 14px; }
	.steps li > span { width: 44px; height: 44px; }
	.about-split__visual, .story-grid__image { min-height: 350px; border-radius: 20px 58px 20px 20px; }
	.about-split__badge { left: 14px; right: 14px; bottom: 14px; }
	.values-grid, .company-row dl { grid-template-columns: 1fr; }
	.service-feature-grid, .support-service-grid, .situation-grid, .reason-grid { grid-template-columns: 1fr; }
	.service-feature-card__body { padding: 28px 22px; }
	.support-service-grid p { min-height: 0; }
	.service-intro-grid__image { min-height: 340px; border-radius: 20px 55px 20px 20px; }
	.situation-grid article { min-height: 0; }
	.page-hero__inner { padding-block: 58px; }
	.page-hero h1, .content-page__header h1 { font-size: 41px; }
	.page-hero h1 + p { font-size: 16px; }
	.abc-breadcrumbs, .rank-math-breadcrumb p { margin-bottom: 27px; }
	.contact-cards { width: calc(100% - 20px); }
	.availability-card, .solution-card { padding: 28px; }
	.footer-grid { grid-template-columns: 1fr; gap: 38px; }
	.footer-brand, .footer-grid > div:last-child { grid-column: auto; }
	.footer-bottom { flex-direction: column; gap: 8px; }
	.floating-actions { right: 14px; bottom: 14px; }
	.floating-actions__whatsapp { display: none; }
	.floating-actions__call { width: 54px; height: 54px; padding: 0; }
	.floating-actions__call span { display: none; }
}

/* Service expansion 1.2.0: scoped styles, no new frontend framework or fonts. */
.abc-service-page { --service-gap: clamp(28px, 5vw, 72px); }
.abc-service-page h2 { font-size: clamp(29px, 3.1vw, 42px); }
.service-editorial-hero { background: var(--navy); color: #fff; overflow: hidden; }
.service-editorial-hero__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: var(--service-gap); align-items: center; padding-block: 58px; }
.service-editorial-hero__copy { min-width: 0; }
.service-editorial-hero h1 { font-size: clamp(39px, 4.6vw, 62px); line-height: 1.08; letter-spacing: -.04em; margin: 0; overflow-wrap: anywhere; }
.service-editorial-hero__copy > p:not(.eyebrow) { color: #d1dfef; line-height: 1.8; font-size: 17px; margin-top: 24px; }
.service-editorial-hero .service-hero-note { font-size: 12px !important; color: #a9c4de !important; }
.service-editorial-hero .abc-breadcrumbs, .service-editorial-hero .rank-math-breadcrumb p { flex-wrap: wrap; margin-bottom: 27px; }
.service-editorial-hero__visual { position: relative; margin: 0; border-radius: 22px 70px 22px 22px; overflow: hidden; background: #dce7f1; }
.service-editorial-hero__visual > img { width: 100%; height: 100%; object-fit: cover; }
.service-editorial-hero__visual--portrait { height: 580px; }
.service-editorial-hero__visual--portrait > img { object-position: 50% 40%; }
.service-editorial-hero__visual figcaption { position: absolute; bottom: 0; inset-inline: 0; padding: 52px 22px 23px; color: #fff; background: linear-gradient(transparent, #06172df2); font-size: 13px; line-height: 1.6; }
.service-editorial-hero__visual--diagram { aspect-ratio: 1; background: #fff; border-radius: 24px; }
.service-editorial-hero__visual--diagram > img { object-fit: contain; padding-bottom: 48px; }
.service-editorial-hero__visual--diagram figcaption { background: #eef4f9; color: #183658; padding: 15px 20px; font-size: 12px; }
/* Keep the entire cylinder visible; this is a product image, not a background. */
.service-editorial-hero__visual--product { background: #fff; border-radius: 24px; }
.service-editorial-hero__visual--product > img { display: block; height: auto; aspect-ratio: 1; object-fit: contain; }
.service-editorial-hero__visual--product figcaption { position: static; padding: 15px 20px; color: #183658; background: #eef4f9; font-size: 12px; }
.service-editorial-hero__visual--auto { aspect-ratio: 1.08; }
.service-editorial-hero__visual--auto > img { object-position: 57% center; }
.service-editorial-hero__visual--landscape { aspect-ratio: 3 / 2; border-radius: 22px 50px 22px 22px; }
.service-editorial-hero__visual--landscape > img { display: block; }
.service-editorial-hero__visual--square { aspect-ratio: 1; }
.service-editorial-hero__visual--square > img { display: block; object-position: center 60%; }
.service-toc { display: flex; align-items: center; gap: 11px 23px; flex-wrap: wrap; padding-block: 23px; border-bottom: 1px solid var(--line); }
.service-toc span { color: #66778d; font-size: 12px; font-weight: 750; }
.service-toc a { font-size: 13px; font-weight: 800; color: var(--blue); padding: 9px 0; text-decoration: underline; text-underline-offset: 4px; }
.abc-service-page section[id] { scroll-margin-top: 145px; }
.service-reading-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: var(--service-gap); align-items: start; }
.service-reading-grid--reverse { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: center; }
.service-reading-grid > div > p:not(.eyebrow), .service-section-intro > p:not(.eyebrow) { color: var(--body); font-size: 16px; line-height: 1.85; margin: 22px 0 0; }
.service-reading-grid > div > h3 { color: var(--ink); font-size: 23px; margin: 30px 0 0; }
.service-summary-card { background: var(--soft); padding: 32px; border: 1px solid var(--line); border-top: 4px solid var(--cyan); border-radius: 17px; }
.section--soft .service-summary-card { background: #fff; }
.service-summary-card h3 { font-size: 23px; line-height: 1.3; margin: 0; }
.service-summary-card ul { padding-left: 20px; display: grid; gap: 12px; margin-block: 24px; color: #344a63; font-size: 15px; line-height: 1.7; }
.service-summary-card > p:not(.eyebrow) { color: var(--body); font-size: 14px; line-height: 1.85; margin-top: 18px; }
.service-summary-card .button { margin-top: 13px; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.service-detail-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-detail-grid article { background: #fff; border: 1px solid var(--line); padding: 29px; border-radius: 18px; }
.service-detail-grid h3 { font-size: 21px; line-height: 1.3; margin: 20px 0 13px; }
.service-detail-grid p { color: var(--body); line-height: 1.8; font-size: 15px; margin: 0; }
.service-number { color: var(--blue); font-size: 13px; font-weight: 850; letter-spacing: .06em; }
.service-product-figure { margin: 0; padding: 25px; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.service-product-figure img { width: 100%; height: auto; }
.service-product-figure figcaption { color: #53667c; font-size: 12px; line-height: 1.65; margin-top: 18px; }
.service-section-intro { max-width: 830px; margin-bottom: 32px; }
.service-section-note { color: var(--body); font-size: 14px; line-height: 1.85; margin: 27px 0 0; max-width: 900px; }
.service-table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
.service-matrix { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 14px; }
.service-matrix caption { text-align: left; padding: 20px; background: var(--navy); color: #fff; font-weight: 800; }
.service-matrix th, .service-matrix td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.service-matrix thead { background: #eaf2fa; }
.service-matrix tbody th { font-weight: 750; }
.service-matrix tbody tr:nth-child(even) { background: var(--soft); }
.service-matrix tbody tr:last-child > * { border-bottom: 0; }
.service-symptom-table { min-width: 720px; }
.service-symptom-table th, .service-symptom-table td { vertical-align: top; line-height: 1.7; }
.service-symptom-table tbody th { width: 25%; }
.service-table-hint { display: none; color: var(--body); font-size: 13px; line-height: 1.6; }
.service-safety-note { margin-top: 25px; padding: 20px 24px; background: #fff5e6; border: 1px solid #e5c184; border-left: 4px solid #a2630c; border-radius: 12px; color: #65421b; }
.service-safety-note p { margin: 7px 0 0; line-height: 1.7; font-size: 14px; }
.service-safety-note a { font-weight: 850; text-decoration: underline; }
.service-area-links { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 20px; }
.service-area-links a { color: var(--blue); font-size: 12px; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; padding-block: 5px; }
.location-followup { margin-top: 32px; }
.location-featured > p:not(.eyebrow) { max-width: 800px; color: var(--body); line-height: 1.8; }
.location-featured .location-links { gap: 12px 28px; }
.location-featured .location-links a { font-size: 14px; padding-block: 10px; }
.location-featured--dark .location-links a, .section--navy .location-links a { color: #d5f6ff; }
.location-featured--dark .location-directory-link a { color: #d5f6ff; text-decoration: underline; text-underline-offset: 4px; }
.location-support { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); }
.location-support > p { color: var(--body); line-height: 1.7; font-size: 14px; }
.location-service-context { padding-block: 28px 38px; }
.location-service-context > p { max-width: 850px; color: var(--body); line-height: 1.8; }
#werkgebied { scroll-margin-top: 145px; }
.footer-grid .footer-area-title { margin: 24px 0 0; }
.footer-grid .location-links { margin-top: 0; flex-direction: column; gap: 8px; }
.footer-grid .location-links a { color: #b9c9dc; }
.service-mini-image { width: 100%; height: 165px; object-fit: cover; border-radius: 10px; margin-bottom: 22px; }
.service-mini-image--contain { object-fit: contain; background: #fff; }
.service-image-note { display: block; margin-top: -13px; color: #526278; font-size: 11px; line-height: 1.6; }
.service-inline-links { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center; margin-top: 25px; }
.service-inline-links a { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; font-size: 14px; font-weight: 750; padding-block: 8px; }
.service-table-scroll:focus-visible, .service-toc a:focus-visible, .inline-link:focus-visible, .service-area-links a:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
@media (max-width: 980px) {
	.service-editorial-hero__grid { gap: 32px; }
	.service-editorial-hero__visual--portrait { height: 540px; }
	.service-detail-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
	.service-editorial-hero__grid, .service-reading-grid, .service-reading-grid--reverse { grid-template-columns: minmax(0, 1fr); }
	.service-editorial-hero__visual--portrait { height: 430px; }
	.service-editorial-hero__visual--diagram { max-width: 500px; width: 100%; margin-inline: auto; }
	.service-editorial-hero__visual--auto { aspect-ratio: 3 / 2; }
	.service-editorial-hero__visual--square { aspect-ratio: 4 / 3; }
	.service-summary-card { padding: 27px; }
	.service-product-figure { max-width: 430px; margin-inline: auto; }
	.service-editorial-hero__copy > p:not(.eyebrow) { font-size: 16px; }
}
@media (max-width: 620px) {
	.service-editorial-hero__grid { padding-block: 38px; }
	.service-editorial-hero h1 { font-size: clamp(32px, 8.8vw, 43px); }
	.service-editorial-hero__visual--portrait { height: 355px; }
	.service-detail-grid, .service-detail-grid--three { grid-template-columns: minmax(0, 1fr); }
	.service-detail-grid article { padding: 24px; }
	.service-toc { gap: 3px 18px; }
	.service-toc > span { flex-basis: 100%; }
	.service-safety-note { padding: 18px; }
	.service-table-hint { display: block; }
	.abc-service-page section[id] { scroll-margin-top: 20px; }
	.service-inline-links { flex-direction: column; align-items: center; gap: 2px; }
}

/* English landing page: reuse the service layout and original image assets. */
.abc-english-figure { margin: 0; border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; }
.abc-english-figure img { display: block; width: 100%; height: auto; max-height: 460px; object-fit: contain; }
.abc-english-figure figcaption { padding: 18px 22px; color: var(--body); font-size: 14px; line-height: 1.7; }
.abc-english-page .service-detail-grid h3 { margin-top: 0; }
.abc-english-page .service-detail-grid .inline-link { display: inline-block; margin-top: 15px; }
.abc-english-page .process-intro > p + p { margin-top: 20px; }
.hero .english-entry { font-size: 14px; line-height: 1.6; margin-top: 20px; }
.english-entry a { color: #d5f6ff; text-decoration: underline; text-underline-offset: 4px; }
@media (min-width: 821px) {
	.primary-nav { min-width: 0; }
	.abc-menu { flex-wrap: wrap; row-gap: 8px; padding-block: 10px; }
}
@media (min-width: 821px) and (max-width: 1120px) {
	.nav-row { gap: 18px; }
	.abc-menu { column-gap: 12px; }
	.brand img, .brand .custom-logo { width: 175px; }
}

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