/* Local Montserrat from user-supplied font package */
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #102033;
  --ink-soft: #415064;
  --navy: #071d3d;
  --blue: #165dff;
  --blue-dark: #0b45c5;
  --red: #d61f3d;
  --mist: #eef4ff;
  --sky: #dceaff;
  --line: #dbe3ee;
  --paper: #ffffff;
  --warm: #f8f6f2;
  --success: #087a5b;
  --shadow: 0 22px 70px rgba(21, 45, 81, .09);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Montserrat", Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button, select { cursor: pointer; }
img { max-width: 100%; height: auto; }
p { line-height: 1.68; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.eyebrow { margin: 0 0 18px; color: var(--blue-dark); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.mini-label { margin: 0; color: var(--ink-soft); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.screen-section { position: relative; min-height: 88vh; padding: 110px 0; overflow: hidden; }
.screen-section h2, .service-body h2, .faq-section h2, .legal-page h1 { margin: 0; font-size: clamp(36px, 4.2vw, 62px); line-height: 1.03; letter-spacing: -.045em; }
.section-heading { margin-bottom: 56px; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr); gap: 80px; align-items: end; }
.split-heading > p { margin: 0 0 4px; color: var(--ink-soft); font-size: 17px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(219,227,238,.8); }
.notice-bar { border-bottom: 1px solid var(--line); background: #f7f9fc; }
.notice-inner { min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: #627087; font-size: 11px; }
.notice-inner a { color: var(--navy); font-weight: 800; }
.nav-shell { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; }
.brand img { display: block; }
.nav-panel { display: flex; align-items: center; gap: 22px; }
.primary-nav { display: flex; align-items: center; gap: 22px; }
.primary-nav a { position: relative; padding: 29px 0 26px; color: #344156; font-size: 13px; font-weight: 700; white-space: nowrap; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 21px; height: 2px; background: var(--red); transition: right .2s ease; }
.primary-nav a:hover::after, .primary-nav a.active::after { right: 0; }
.language-menu { display: flex; align-items: center; gap: 4px; padding-left: 12px; border-left: 1px solid var(--line); }
.language-menu select { border: 0; background: transparent; color: var(--navy); font-size: 12px; font-weight: 800; }
.globe { color: var(--blue); font-weight: 900; }
.nav-cta { padding: 11px 15px; border: 1px solid var(--navy); border-radius: 5px; color: var(--navy); font-size: 12px; font-weight: 800; transition: .2s ease; }
.nav-cta:hover { color: white; background: var(--navy); }
.menu-button { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 5px; background: white; align-items: center; justify-content: center; flex-direction: column; gap: 7px; }
.menu-button span { width: 19px; height: 2px; background: var(--navy); transition: .2s ease; }

.home-hero { min-height: calc(100vh - 110px); padding-top: 92px; padding-bottom: 64px; background: linear-gradient(120deg, #f8fbff 0%, #fff 54%, #f1f6ff 100%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 690px) 1fr; min-height: 470px; align-items: center; }
.hero-copy h1, .interior-hero h1, .guide-hero h1, .contact-page h1 { max-width: 810px; margin: 0; font-size: clamp(48px, 6vw, 82px); line-height: .98; letter-spacing: -.058em; font-weight: 750; }
.hero-intro { max-width: 720px; margin: 27px 0 0; color: var(--ink-soft); font-size: clamp(17px, 1.5vw, 20px); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; padding: 0 22px; border: 1px solid transparent; border-radius: 5px; font-size: 13px; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; background: var(--blue); box-shadow: 0 12px 28px rgba(22,93,255,.2); }
.button.primary:hover { background: var(--blue-dark); }
.button.secondary { color: var(--navy); background: rgba(255,255,255,.72); border-color: #bfcbdc; }
.button.light { color: var(--navy); background: white; }
.trust-list { display: flex; flex-wrap: wrap; gap: 16px 26px; padding: 0; margin: 32px 0 0; list-style: none; color: #516073; font-size: 12px; font-weight: 700; }
.trust-list li { display: flex; align-items: center; gap: 8px; }
.trust-list span { width: 19px; height: 19px; display: inline-grid; place-items: center; color: var(--success); border: 1px solid #b7d9cd; border-radius: 50%; font-size: 10px; }
.hero-visual { position: absolute; z-index: 1; top: 0; right: 0; width: 45vw; min-width: 620px; height: 610px; border-bottom-left-radius: 160px; background-position: center; background-size: cover; overflow: hidden; clip-path: polygon(21% 0, 100% 0, 100% 100%, 0 86%); transition: background-image .25s ease; }
html[data-hero="0"] .hero-visual { background-image: url('assets/hero/hero-1.svg'); }
html[data-hero="1"] .hero-visual { background-image: url('assets/hero/hero-2.svg'); }
html[data-hero="2"] .hero-visual { background-image: url('assets/hero/hero-3.svg'); }
html[data-hero="3"] .hero-visual { background-image: url('assets/hero/hero-4.svg'); }
html[data-hero="4"] .hero-visual { background-image: url('assets/hero/hero-5.svg'); }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.43); border-radius: 50%; animation: float 9s ease-in-out infinite; }
.orbit-one { width: 470px; height: 470px; right: -90px; top: 28px; }
.orbit-two { width: 270px; height: 270px; left: 90px; bottom: 32px; animation-delay: -3s; }
.hero-mark { position: absolute; right: 74px; bottom: 86px; display: grid; color: white; text-align: right; }
.hero-mark span { font-size: 84px; line-height: .8; font-weight: 800; letter-spacing: -.07em; }
.hero-mark small { margin-top: 12px; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
@keyframes float { 0%,100% { transform: translate3d(0,0,0) rotate(0); } 50% { transform: translate3d(-14px,12px,0) rotate(5deg); } }
.stats-grid { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 30px; background: var(--line); border: 1px solid var(--line); box-shadow: var(--shadow); }
.stat-card { min-height: 155px; display: grid; grid-template-columns: 98px 1fr; gap: 20px; align-items: start; padding: 26px 28px; background: rgba(255,255,255,.96); }
.stat-card > strong { color: var(--blue); font-size: 38px; letter-spacing: -.05em; }
.stat-card h2 { margin: 4px 0 8px; font-size: 15px; letter-spacing: -.02em; }
.stat-card p { margin: 0; color: #5c6a7d; font-size: 12px; line-height: 1.55; }

.solutions-screen { background: white; }
.editorial-row { display: grid; grid-template-columns: 280px 1fr; gap: 64px; }
.editorial-copy { padding-right: 32px; border-right: 1px solid var(--line); }
.index-label { display: block; margin-bottom: 55px; color: #7a8798; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.editorial-copy h3 { margin: 0; font-size: 28px; letter-spacing: -.035em; }
.editorial-copy p { color: var(--ink-soft); font-size: 14px; }
.text-link { display: inline-flex; gap: 18px; align-items: center; margin-top: 16px; color: var(--blue-dark); font-size: 13px; font-weight: 800; border-bottom: 1px solid #8bb0ff; }
.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.solution-card { min-height: 220px; position: relative; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; transition: .2s ease; }
.solution-card:hover { z-index: 2; background: var(--mist); box-shadow: 0 16px 38px rgba(35,68,112,.08); }
.card-number { color: #8b97a9; font-size: 11px; font-weight: 800; }
.solution-card h3 { max-width: 300px; margin: 30px 0 10px; font-size: 21px; letter-spacing: -.025em; }
.solution-card p { max-width: 390px; margin: 0; color: var(--ink-soft); font-size: 13px; }
.solution-card b { position: absolute; top: 27px; right: 28px; color: var(--blue); font-size: 19px; transition: transform .2s ease; }
.solution-card:hover b { transform: translateX(4px); }

.company-services-screen { min-height: auto; background: linear-gradient(145deg, #f3f7ff 0%, #fff 50%, #f7f4ef 100%); }
.service-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); box-shadow: var(--shadow); }
.service-link-card { min-height: 295px; display: flex; flex-direction: column; padding: 32px; background: rgba(255,255,255,.92); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: .22s ease; }
.service-link-card:hover { position: relative; z-index: 2; transform: translateY(-4px); background: white; box-shadow: 0 20px 38px rgba(28,55,95,.11); }
.service-link-card > span { color: var(--red); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.service-link-card h3 { margin: 34px 0 13px; font-size: 22px; line-height: 1.12; letter-spacing: -.035em; }
.service-link-card p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.service-link-card b { margin-top: auto; padding-top: 24px; color: var(--blue-dark); font-size: 12px; }

.sectors-screen { background: var(--warm); }
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #d9d7d2; border-left: 1px solid #d9d7d2; }
.sector-card { min-height: 240px; padding: 34px; border-right: 1px solid #d9d7d2; border-bottom: 1px solid #d9d7d2; transition: .2s ease; }
.sector-card:hover { background: white; }
.sector-card > span { color: var(--red); font-size: 12px; font-weight: 800; }
.sector-card h3 { margin: 46px 0 12px; font-size: 22px; letter-spacing: -.035em; }
.sector-card p { margin: 0; color: #596676; font-size: 13px; }
.sector-card b { display: inline-block; margin-top: 22px; color: var(--blue-dark); font-size: 12px; }
.source-strip { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 25px; margin-top: 38px; color: #5c6878; font-size: 12px; }
.source-strip > span { color: var(--ink); font-weight: 800; }
.source-strip a { border-bottom: 1px solid #a6b0bf; }

.conversion-screen { display: grid; align-items: center; background: linear-gradient(135deg, #edf4ff 0%, #fbfdff 60%, #f6f2ed 100%); }
.conversion-grid { display: grid; grid-template-columns: 1fr 470px; gap: 100px; align-items: center; }
.conversion-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 16px; }
.steps-list { margin-top: 42px; border-top: 1px solid #cfd9e7; }
.steps-list article { display: grid; grid-template-columns: 54px 1fr; gap: 24px; padding: 19px 0; border-bottom: 1px solid #cfd9e7; }
.steps-list article > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.steps-list h3 { margin: 0 0 5px; font-size: 16px; }
.steps-list p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.lead-card { position: relative; padding: 42px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.lead-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--red) 0 16%, white 16% 21%, var(--blue) 21% 100%); }
.lead-card-top { display: flex; gap: 18px; align-items: center; }
.lead-card-top h3 { margin: 5px 0 0; font-size: 24px; letter-spacing: -.035em; }
.document-icon { width: 46px; height: 54px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 3px; font-weight: 900; }
.lead-card > p { color: var(--ink-soft); font-size: 13px; }

.lead-form { padding: 34px; border: 1px solid var(--line); background: white; box-shadow: var(--shadow); }
.lead-card .lead-form { padding: 0; margin-top: 28px; border: 0; box-shadow: none; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid label { display: grid; gap: 7px; color: #47566a; font-size: 11px; font-weight: 800; letter-spacing: .04em; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; padding: 12px 13px; border: 1px solid #cbd5e2; border-radius: 4px; color: var(--ink); background: white; outline: none; font-size: 14px; font-weight: 500; letter-spacing: normal; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,93,255,.1); }
.span-2 { grid-column: 1 / -1; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0; color: #687487; font-size: 11px; line-height: 1.5; }
.consent input { margin-top: 2px; accent-color: var(--blue); }
.lead-form .button { width: 100%; }
.form-status { min-height: 19px; margin: 12px 0 0; color: var(--success); font-size: 11px; font-weight: 700; }
.compact .form-grid { grid-template-columns: 1fr 1fr; }

.interior-hero, .guide-hero { position: relative; padding: 112px 0 96px; overflow: hidden; background: linear-gradient(115deg, #f2f7ff 0%, white 62%, #eaf1ff 100%); }
.interior-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 90px; align-items: end; }
.interior-hero h1, .guide-hero h1, .contact-page h1 { font-size: clamp(48px, 5.5vw, 76px); }
.interior-pattern { position: absolute; inset: 0 0 0 58%; opacity: .85; background: url('assets/hero/hero-1.svg') center/cover; clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%); }
.interior-pattern span { position: absolute; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.interior-pattern span:nth-child(1) { top: -80px; right: -40px; }
.interior-pattern span:nth-child(2) { bottom: -140px; left: 130px; }
.interior-pattern span:nth-child(3) { width: 90px; height: 90px; top: 120px; left: 120px; background: rgba(255,255,255,.13); }
.highlight-list { margin: 0; padding: 28px; list-style: none; background: rgba(255,255,255,.94); border: 1px solid var(--line); box-shadow: var(--shadow); }
.highlight-list li { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); color: #3f4d60; font-size: 13px; font-weight: 700; }
.highlight-list li:last-child { border: 0; }
.highlight-list span { color: var(--success); }
.service-body { padding: 104px 0; }
.content-columns { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: 100px; justify-content: center; }
.sticky-summary { position: sticky; top: 140px; align-self: start; padding-top: 6px; }
.sticky-summary .index-label { margin-bottom: 20px; }
.sticky-summary p { color: #758196; font-size: 12px; }
.article-content section + section { margin-top: 80px; padding-top: 75px; border-top: 1px solid var(--line); }
.article-content h2 { margin: 0 0 28px; font-size: clamp(34px, 4vw, 51px); }
.article-content > section > p { color: #3f4e62; font-size: 17px; line-height: 1.82; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 28px; margin: 36px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.check-grid li { display: flex; gap: 11px; padding: 14px 0; border-bottom: 1px solid var(--line); color: #3b495c; font-size: 13px; font-weight: 700; }
.check-grid span { color: var(--success); }
.process-section { padding: 86px 0; background: var(--navy); color: white; }
.process-section .eyebrow { color: #8eb4ff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.24); border-left: 1px solid rgba(255,255,255,.24); }
.process-grid article { min-height: 205px; padding: 27px; border-right: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(255,255,255,.24); }
.process-grid article > span { color: #7ba7ff; font-size: 11px; font-weight: 800; }
.process-grid h3 { margin: 45px 0 8px; font-size: 19px; }
.process-grid p { margin: 0; color: #b9c7da; font-size: 13px; }
.faq-section { padding: 105px 0; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq-section h2 { max-width: 460px; font-size: clamp(33px, 3.7vw, 51px); }
.faq-section details { border-top: 1px solid var(--line); }
.faq-section details:last-child { border-bottom: 1px solid var(--line); }
.faq-section summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; font-weight: 750; list-style: none; }
.faq-section summary::-webkit-details-marker { display: none; }
.faq-section summary span { color: var(--blue); font-size: 22px; }
.faq-section details p { margin: -5px 0 25px; color: var(--ink-soft); font-size: 14px; }
.cta-band { padding: 72px 0; color: white; background: var(--blue); }
.cta-band .shell { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band .eyebrow { color: #d5e2ff; }
.cta-band h2 { max-width: 760px; margin: 0; font-size: clamp(32px, 4vw, 52px); line-height: 1.02; letter-spacing: -.045em; }

.guide-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 370px; gap: 100px; align-items: center; }
.guide-meta { display: flex; gap: 24px; margin: 27px 0; color: #637187; font-size: 12px; font-weight: 700; }
.guide-cover { height: 490px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 35px; overflow: hidden; color: white; background: linear-gradient(145deg, #0a2f78, #155dff 55%, #68a1ff); box-shadow: 0 32px 65px rgba(10,47,120,.25); transform: rotate(2deg); }
.guide-cover::before, .guide-cover::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
.guide-cover::before { width: 430px; height: 430px; top: -110px; right: -180px; }
.guide-cover::after { width: 260px; height: 260px; left: -100px; bottom: 40px; }
.guide-cover span { position: absolute; top: 32px; right: 30px; font-size: 13px; font-weight: 800; }
.guide-cover strong { position: relative; z-index: 2; font-size: 54px; letter-spacing: -.06em; }
.guide-cover small { position: relative; z-index: 2; margin-top: 8px; text-transform: uppercase; letter-spacing: .13em; }
.guide-cover i { position: absolute; top: 31px; left: 31px; width: 37px; height: 24px; background: linear-gradient(32deg, transparent 44%, white 45% 54%, transparent 55%), linear-gradient(-32deg, transparent 44%, #e51f44 45% 54%, transparent 55%); }
.guide-layout { display: grid; grid-template-columns: 260px minmax(0, 760px); gap: 100px; justify-content: center; padding-top: 100px; padding-bottom: 110px; }
.guide-toc { position: sticky; top: 130px; align-self: start; padding: 26px; border: 1px solid var(--line); background: #f9fbfe; }
.guide-toc h2 { margin: 0 0 18px; font-size: 16px; }
.guide-toc a { display: block; padding: 11px 0; border-top: 1px solid var(--line); color: #526075; font-size: 12px; font-weight: 700; }
.guide-toc a:hover { color: var(--blue); }
.longform > section { scroll-margin-top: 125px; }
.longform > section + section { margin-top: 92px; padding-top: 85px; border-top: 1px solid var(--line); }
.longform h2 { margin: 0 0 30px; font-size: clamp(36px, 4vw, 54px); line-height: 1.05; letter-spacing: -.045em; }
.longform > section > p:not(.eyebrow) { color: #3d4c61; font-family: "Montserrat", Arial, Helvetica, sans-serif; font-size: 18px; line-height: 1.9; }
.analysis-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin: 34px 0 0; padding: 1px; background: var(--line); list-style: none; }
.analysis-list li { position: relative; padding: 21px 21px 21px 42px; background: #f8fafc; color: #415066; font-size: 13px; font-weight: 700; }
.analysis-list li::before { content: "→"; position: absolute; left: 19px; color: var(--blue); }
.source-note { margin-top: 90px; padding: 30px; border-left: 4px solid var(--blue); background: var(--mist); }
.source-note p { color: #415066; font-size: 13px; }
.source-note div { display: flex; flex-wrap: wrap; gap: 11px 20px; }
.source-note a { color: var(--blue-dark); font-size: 12px; font-weight: 800; border-bottom: 1px solid #9ab7f3; }

.contact-page { min-height: 80vh; padding: 110px 0; background: linear-gradient(125deg, #f4f8ff, white 62%); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) 540px; gap: 100px; align-items: start; }
.response-pill { width: fit-content; display: flex; gap: 10px; align-items: center; margin-top: 35px; padding: 10px 13px; border: 1px solid #bdd9cf; color: var(--success); background: #f4fffa; font-size: 12px; font-weight: 800; }
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(8,122,91,.1); }
.direct-contact { margin-top: 80px; padding-top: 25px; border-top: 1px solid var(--line); }
.direct-contact p { color: var(--ink-soft); font-size: 13px; }
.direct-contact a { display: flex; justify-content: space-between; color: var(--blue); font-weight: 800; }
.legal-page { min-height: 70vh; padding: 115px 0; background: #f9fbfe; }
.legal-shell { max-width: 800px; }
.legal-page h1 { margin-bottom: 42px; }
.legal-page p:not(.eyebrow) { color: #415066; font-size: 17px; line-height: 1.85; }
.legal-page .button { margin-top: 28px; }
.legal-shell > section { margin-top: 48px; padding-top: 38px; border-top: 1px solid var(--line); }
.legal-shell > section h2 { font-size: 28px; }

.related-services { padding: 100px 0; background: #f5f8fd; }
.related-services h2 { max-width: 760px; margin: 0 0 46px; font-size: clamp(36px, 4.2vw, 58px); line-height: 1.03; letter-spacing: -.045em; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.related-grid a { min-height: 230px; display: flex; flex-direction: column; padding: 28px; background: white; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: .2s ease; }
.related-grid a:hover { background: var(--mist); }
.related-grid h3 { margin: 0 0 14px; font-size: 19px; }
.related-grid p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.related-grid span { margin-top: auto; padding-top: 20px; color: var(--blue-dark); font-size: 12px; font-weight: 800; }

.site-footer { padding-top: 72px; background: #f4f6f8; border-top: 1px solid var(--line); }
.footer-brand-row { display: grid; grid-template-columns: 180px 1fr auto; gap: 42px; align-items: center; padding-bottom: 55px; }
.footer-brand-row p { max-width: 670px; margin: 0; color: #536178; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 60px; padding: 52px 0 60px; border-top: 1px solid var(--line); }
.footer-grid h2 { margin: 6px 0 20px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid a { display: block; margin: 12px 0; color: #596779; font-size: 12px; font-weight: 650; }
.footer-grid a:hover { color: var(--blue); }
.footer-legal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 32px; padding: 32px 0; border-top: 1px solid var(--line); }
.footer-legal a { margin: 8px 0; color: #5d6a7d; font-size: 12px; font-weight: 700; }
.footer-legal a:hover { color: var(--blue); }
.footer-contact { background: var(--navy); color: white; }
.footer-contact .shell { min-height: 68px; display: flex; flex-wrap: wrap; gap: 12px 30px; align-items: center; }
.footer-contact a { font-size: 13px; font-weight: 800; }
.footer-contact span { margin-left: auto; color: #bdcbe0; font-size: 12px; }
.footer-bottom { min-height: 75px; display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; color: #7a8798; font-size: 11px; }
.footer-bottom p { margin: 0; }

/* Expanded sales catalogue */
.nav-dropdown { position: relative; }
.nav-dropdown summary { position: relative; display: flex; gap: 6px; align-items: center; padding: 12px 0; color: #243247; font-size: 12px; font-weight: 750; cursor: pointer; list-style: none; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary span { color: var(--blue); font-size: 14px; transition: transform .2s ease; }
.nav-dropdown[open] summary span { transform: rotate(180deg); }
.nav-dropdown summary.active { color: var(--blue); }
.dropdown-panel { width: 340px; max-height: min(70vh, 610px); position: absolute; z-index: 30; top: calc(100% + 12px); left: -22px; display: grid; overflow: auto; padding: 10px; border: 1px solid var(--line); border-top: 3px solid var(--blue); background: white; box-shadow: 0 24px 55px rgba(13,33,62,.16); }
.dropdown-panel a { padding: 10px 12px !important; border-bottom: 1px solid #edf1f6; font-size: 11px !important; line-height: 1.3; }
.dropdown-panel a::after { display: none !important; }
.dropdown-panel a:hover { color: var(--blue); background: var(--mist); }
.dropdown-panel .dropdown-hub { color: var(--blue-dark); background: #eef4ff; font-weight: 850; }
.info-menu { width: 380px; left: auto; right: -80px; }

/* Desktop: pointer hover opens the submenu. Mobile keeps native tap-to-toggle. */
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .nav-dropdown::after { content: ""; position: absolute; top: 100%; left: -20px; right: -20px; height: 14px; }
  .nav-dropdown summary { cursor: default; }
  .nav-dropdown > .dropdown-panel { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-7px); transition: opacity .16s ease, transform .16s ease, visibility .16s ease; }
  .nav-dropdown[open] > .dropdown-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
}

.catalog-hero { position: relative; overflow: hidden; padding: 110px 0 100px; background: linear-gradient(125deg,#edf4ff 0%,#ffffff 55%,#eaf2fa 100%); }
.catalog-hero h1 { max-width: 950px; margin: 0; font-size: clamp(50px,6vw,84px); line-height: .98; letter-spacing: -.06em; }
.catalog-hero h1 small { display: inline-block; color: var(--blue); font-size: .32em; font-weight: 800; letter-spacing: -.02em; vertical-align: .36em; }
.catalog-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 90px; align-items: end; }
.catalog-orb { width: 650px; height: 650px; position: absolute; top: -390px; right: -130px; border: 1px solid rgba(22,93,255,.15); border-radius: 50%; box-shadow: 0 0 0 90px rgba(22,93,255,.035),0 0 0 180px rgba(22,93,255,.025); }
.digital-note,.price-ticket { padding: 30px; border: 1px solid rgba(122,145,178,.28); background: rgba(255,255,255,.86); box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.digital-note strong { color: var(--blue); font-size: 58px; letter-spacing: -.06em; }
.digital-note p,.price-ticket p { margin: 10px 0 0; color: var(--ink-soft); font-size: 13px; }
.catalog-list { padding: 100px 0 115px; background: #f8fafc; }
.catalog-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.catalog-card { min-height: 315px; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--ink); background: white; transition: transform .22s ease,box-shadow .22s ease,background .22s ease; }
.catalog-card:hover { position: relative; z-index: 2; transform: translateY(-5px); background: #fbfdff; box-shadow: 0 22px 45px rgba(24,54,96,.12); }
.catalog-card h3 { margin: 45px 0 12px; font-size: 23px; line-height: 1.08; letter-spacing: -.035em; }
.catalog-card p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.catalog-card > div { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-top: auto; padding-top: 25px; }
.catalog-card strong { color: var(--ink); font-size: 16px; }
.catalog-card b { color: var(--blue-dark); font-size: 12px; }
.domain-check { padding: 60px 0; color: white; background: var(--navy); }
.domain-check-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.domain-check h2 { margin: 0; font-size: 39px; }
.domain-check p { color: #b9c7da; font-size: 12px; }
.domain-check form { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.domain-check input { width: 100%; height: 52px; padding: 0 17px; border: 1px solid #8096b7; border-radius: 3px; font-size: 16px; }
.detail-hero { padding-bottom: 86px; }
.price-ticket span { color: #6f7e92; font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.price-ticket strong { display: block; margin: 12px 0 3px; color: var(--blue); font-size: 38px; line-height: 1; letter-spacing: -.05em; }
.cpa-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: 30px; }
.cpa-grid .button { min-height: 48px; justify-content: center; padding: 12px 16px; font-size: 11px; }
.messenger { color: white; border-color: transparent; }
.messenger svg { width: 20px; height: 20px; margin-right: 8px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.messenger.telegram svg { fill: currentColor; stroke: none; }
.messenger.whatsapp { background: #128c61; }
.messenger.telegram { background: #2385c7; }
.messenger:hover { color: white; filter: brightness(.92); transform: translateY(-2px); }
.breadcrumbs { display: flex; gap: 10px; align-items: center; padding-top: 22px; padding-bottom: 22px; color: #728096; font-size: 11px; }
.breadcrumbs a { color: var(--blue-dark); font-weight: 750; }
.breadcrumbs strong { color: var(--ink); }
.sales-body { padding: 90px 0 110px; }
.question-grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(360px,.75fr); gap: 90px; }
.question-feature h2 { margin: 0 0 28px; font-size: clamp(42px,5vw,66px); }
.question-feature > p:not(.eyebrow) { color: #39485d; font-family: "Montserrat", Arial, Helvetica, sans-serif; font-size: 19px; line-height: 1.9; }
.digital-callout { margin-top: 42px; padding: 28px; border-left: 4px solid var(--blue); background: #edf4ff; }
.digital-callout strong { color: var(--blue-dark); }
.digital-callout p { margin: 8px 0 0; color: var(--ink-soft); font-size: 13px; }
.answer-stack { border-top: 1px solid var(--line); }
.answer-stack article { padding: 27px 0 31px; border-bottom: 1px solid var(--line); }
.answer-stack article > span { color: var(--red); font-size: 11px; font-weight: 850; }
.answer-stack h3 { margin: 12px 0 16px; font-size: 21px; }
.answer-stack ul { display: grid; gap: 10px; margin: 0; padding: 0; color: #4f5d70; font-size: 13px; list-style: none; }
.warning-band { padding: 28px 0; color: #5c4511; background: #fff6d8; border-block: 1px solid #ead89b; }
.warning-band .shell { display: grid; grid-template-columns: 180px 1fr; gap: 25px; }
.warning-band p { margin: 0; font-size: 13px; }
.price-cpa { padding: 90px 0; color: white; background: var(--navy); }
.price-cpa > .shell { display: grid; grid-template-columns: minmax(300px,.8fr) minmax(520px,1.2fr); gap: 90px; align-items: center; }
.price-summary h2 { margin: 4px 0 12px; color: white; font-size: 54px; }
.price-summary p { color: #c6d2e4; }
.price-summary small { color: #93a7c4; }
.price-cpa .secondary { color: white; border-color: rgba(255,255,255,.4); background: transparent; }
.official-sources { padding: 32px 0; background: #eef4ff; }
.official-sources .shell { display: flex; flex-wrap: wrap; gap: 12px 25px; align-items: center; }
.official-sources .eyebrow { margin: 0 auto 0 0; }
.official-sources a { color: var(--blue-dark); font-size: 12px; font-weight: 800; }
.price-hero .shell,.article-hero .shell { position: relative; z-index: 2; }
.prices-page { padding: 100px 0; background: #f8fafc; }
.price-group + .price-group { margin-top: 90px; }
.price-group-head { display: grid; grid-template-columns: .7fr 1fr; gap: 70px; align-items: end; margin-bottom: 30px; }
.price-group-head h2 { margin: 0; font-size: 48px; }
.price-group-head p { color: var(--ink-soft); }
.price-rows { border-top: 1px solid var(--line); }
.price-rows a { display: grid; grid-template-columns: 1fr 220px 100px; gap: 25px; align-items: center; padding: 19px 20px; border-bottom: 1px solid var(--line); background: white; transition: background .2s ease; }
.price-rows a:hover { background: #edf4ff; }
.price-rows strong { color: var(--blue-dark); }
.price-rows small { color: var(--blue); font-weight: 800; text-align: right; }
.payment-note { margin-top: 90px; padding: 38px; border: 1px solid var(--line); border-top: 4px solid var(--red); background: white; }
.payment-note h2 { margin-top: 0; }
.payment-note p { color: var(--ink-soft); font-size: 14px; }
.info-hero { background: linear-gradient(130deg,#edf4ff,#ffffff 55%,#e8f0fa); }
.info-grid .catalog-card { min-height: 280px; }
.info-article { display: grid; grid-template-columns: 230px minmax(0,780px); gap: 100px; justify-content: center; padding-top: 100px; padding-bottom: 110px; }
.info-article > aside { position: sticky; top: 130px; align-self: start; display: grid; gap: 25px; }
.info-article > aside a { color: var(--blue-dark); font-size: 12px; font-weight: 800; }
@media (max-width: 1160px) {
  .primary-nav { gap: 14px; }
  .primary-nav a { font-size: 11px; }
  .nav-panel { gap: 14px; }
  .hero-visual { right: -130px; opacity: .86; }
  .hero-grid { grid-template-columns: minmax(0, 720px) 1fr; }
  .contact-grid { gap: 55px; }
  .primary-nav { gap: 10px; }
  .nav-dropdown summary { font-size: 11px; }
  .catalog-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 980px) {
  .shell { width: min(100% - 36px, 760px); }
  .notice-inner span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .menu-button { display: flex; }
  .nav-panel { display: none; position: absolute; top: 110px; left: 0; right: 0; max-height: calc(100vh - 110px); overflow: auto; padding: 24px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 24px 50px rgba(13,33,62,.12); }
  .nav-panel.is-open { display: block; }
  .primary-nav { display: grid; gap: 0; }
  .primary-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
  .primary-nav a::after { display: none; }
  .nav-dropdown { border-bottom: 1px solid var(--line); }
  .nav-dropdown summary { padding: 16px 0; justify-content: space-between; font-size: 14px; }
  .dropdown-panel,.info-menu { width: auto; max-height: none; position: static; padding: 0 0 12px 15px; border: 0; border-left: 2px solid var(--blue); box-shadow: none; }
  .dropdown-panel a { padding: 10px 12px !important; border: 0; }
  .language-menu { margin-top: 18px; padding: 14px 0; border-left: 0; }
  .nav-cta { display: flex; justify-content: center; margin-top: 10px; }
  .screen-section { min-height: auto; padding: 90px 0; }
  .hero-visual { width: 620px; right: -340px; opacity: .25; }
  .hero-grid { grid-template-columns: 1fr; min-height: 470px; }
  .hero-copy { max-width: 690px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 130px; }
  .split-heading, .editorial-row, .conversion-grid, .interior-grid, .content-columns, .faq-grid, .guide-hero-grid, .guide-layout, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .editorial-copy { padding-right: 0; padding-bottom: 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .index-label { margin-bottom: 24px; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .service-link-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .conversion-grid { max-width: 760px; }
  .lead-card { max-width: 610px; }
  .interior-pattern { inset: 0; opacity: .12; clip-path: none; }
  .interior-grid { align-items: start; }
  .highlight-list { max-width: 560px; }
  .content-columns { justify-content: initial; }
  .sticky-summary, .guide-toc { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-cover { width: 330px; height: 430px; margin-left: 25px; }
  .guide-layout { padding-top: 72px; }
  .guide-toc { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 20px; }
  .guide-toc h2 { grid-column: 1 / -1; }
  .contact-grid .lead-form { max-width: 650px; }
  .footer-brand-row { grid-template-columns: 150px 1fr; }
  .footer-brand-row .button { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-hero-grid,.question-grid,.price-cpa > .shell,.domain-check-inner,.info-article { grid-template-columns: 1fr; gap: 48px; }
  .digital-note,.price-ticket { max-width: 520px; }
  .info-article > aside { position: static; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 520px); }
  .notice-inner { min-height: 28px; }
  .notice-inner span { max-width: 70%; }
  .nav-shell { min-height: 68px; }
  .brand img { width: 124px; }
  .nav-panel { top: 96px; }
  .screen-section { padding: 74px 0; }
  .home-hero { padding-top: 62px; }
  .hero-copy h1, .interior-hero h1, .guide-hero h1, .contact-page h1 { font-size: clamp(42px, 13vw, 61px); }
  .hero-visual { right: -420px; opacity: .18; }
  .button-row { display: grid; }
  .button-row .button { width: 100%; }
  .trust-list { display: grid; }
  .stat-card { grid-template-columns: 82px 1fr; padding: 24px 20px; }
  .stat-card > strong { font-size: 32px; }
  .split-heading { gap: 26px; }
  .section-heading { margin-bottom: 38px; }
  .screen-section h2, .service-body h2, .faq-section h2, .legal-page h1 { font-size: 39px; }
  .solution-grid, .sector-grid, .service-link-grid, .related-grid, .form-grid, .compact .form-grid, .check-grid, .analysis-list, .guide-toc { grid-template-columns: 1fr; }
  .solution-card, .sector-card { min-height: 190px; }
  .sector-card h3 { margin-top: 30px; }
  .source-strip { align-items: flex-start; flex-direction: column; }
  .lead-card { padding: 30px 22px; }
  .lead-form { padding: 24px 18px; }
  .span-2 { grid-column: auto; }
  .interior-hero, .guide-hero, .contact-page { padding: 76px 0; }
  .highlight-list { padding: 20px; }
  .service-body { padding: 75px 0; }
  .article-content > section > p, .legal-page p:not(.eyebrow) { font-size: 16px; }
  .article-content section + section { margin-top: 58px; padding-top: 55px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 160px; }
  .process-grid h3 { margin-top: 30px; }
  .faq-section { padding: 75px 0; }
  .cta-band .shell { align-items: flex-start; flex-direction: column; }
  .guide-cover { width: 270px; height: 370px; margin: 0 auto; }
  .guide-cover strong { font-size: 44px; }
  .guide-layout { padding-bottom: 76px; }
  .longform > section + section { margin-top: 68px; padding-top: 62px; }
  .longform > section > p:not(.eyebrow) { font-size: 17px; }
  .footer-brand-row { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand-row .button { grid-column: auto; }
  .footer-grid, .footer-legal { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-contact .shell { padding: 18px 0; }
  .footer-contact span { width: 100%; margin-left: 0; }
  .footer-bottom { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .catalog-hero { padding: 72px 0; }
  .catalog-hero h1 { font-size: clamp(43px,13vw,62px); }
  .catalog-grid,.cpa-grid { grid-template-columns: 1fr; }
  .catalog-card { min-height: 260px; }
  .catalog-card h3 { margin-top: 30px; }
  .domain-check form { grid-template-columns: 1fr; }
  .sales-body { padding: 70px 0; }
  .question-feature > p:not(.eyebrow) { font-size: 17px; }
  .warning-band .shell,.price-group-head,.price-rows a { grid-template-columns: 1fr; }
  .price-rows a { gap: 8px; }
  .price-rows small { text-align: left; }
  .price-cpa { padding: 70px 0; }
  .price-summary h2 { font-size: 43px; }
  .official-sources .shell { align-items: flex-start; flex-direction: column; }
  .info-article { padding-top: 70px; padding-bottom: 75px; }
}

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


/* TAXC editorial integration */
.taxc-editorial-band {
  padding: 40px 0 8px;
  background: #fff;
}
.taxc-editorial-card {
  max-width: 760px;
  margin: 32px 0;
  padding: 27px 30px 29px 32px;
  border: 1px solid #d8e2ef;
  border-left: 4px solid var(--blue);
  background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 78%);
  box-shadow: 0 14px 34px rgba(18, 49, 92, .065);
}
.taxc-editorial-band .taxc-editorial-card {
  max-width: 980px;
  margin: 0 auto;
}
.taxc-editorial-card .taxc-note-label {
  display: block;
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.taxc-editorial-card p {
  max-width: 72ch;
  margin: 0;
  color: #35455a;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.78;
}
.question-feature .taxc-editorial-card {
  max-width: none;
  margin-top: 30px;
}
.article-content .taxc-editorial-card,
.longform .taxc-editorial-card {
  width: 100%;
}
.sticky-summary .taxc-editorial-card {
  display: none;
}

@media (max-width: 980px) {
  .taxc-editorial-band { padding-top: 28px; }
  .taxc-editorial-card { max-width: none; }
}

@media (max-width: 640px) {
  .taxc-editorial-band { padding: 22px 0 0; }
  .taxc-editorial-card {
    margin: 24px 0;
    padding: 21px 20px 23px;
    box-shadow: 0 10px 24px rgba(18, 49, 92, .055);
  }
  .taxc-editorial-card p {
    max-width: none;
    font-size: 16px;
    line-height: 1.72;
  }
}

/* UKLTD.UK DESKTOP MENU READABILITY 2026 */
@media (min-width: 981px) {
  .site-header .nav-shell {
    width: min(1480px, calc(100% - 24px));
    min-height: 78px;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .site-header .brand { flex: 0 0 auto; }
  .site-header .brand img { width: 138px; height: auto; }
  .site-header .nav-panel {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .site-header .primary-nav {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .site-header .primary-nav > a,
  .site-header .nav-dropdown > summary {
    flex: 0 0 auto;
    padding: 27px 3px 24px;
    color: #344156;
    font-size: 15px;
    line-height: 1.15;
    font-weight: 700;
    white-space: nowrap;
  }
  .site-header .nav-dropdown > summary { gap: 0; }
  .site-header .nav-dropdown > summary > span { display: none !important; }
  .site-header .language-menu {
    flex: 0 0 auto;
    gap: 4px;
    padding-left: 8px;
  }
  .site-header .language-menu select { font-size: 15px; font-weight: 800; }
  .site-header .nav-cta {
    flex: 0 0 auto;
    padding: 11px 12px;
    font-size: 15px;
    line-height: 1.15;
  }

  .site-header .dropdown-panel,
  .site-header .info-menu {
    max-height: none;
    overflow: visible;
    display: grid;
    gap: 0 18px;
    padding: 16px 18px;
    border-top: 3px solid var(--blue);
  }
  .site-header .dropdown-panel a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 10px 12px !important;
    border-bottom: 1px solid #edf1f6;
    font-size: 15px !important;
    line-height: 1.28;
    white-space: normal;
  }
  .site-header .dropdown-panel .dropdown-hub {
    min-height: 44px;
    grid-column: 1 / -1;
  }

  .site-header .menu-services > .dropdown-panel {
    width: min(930px, calc(100vw - 32px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    left: -130px;
  }
  .site-header .menu-info > .dropdown-panel {
    width: min(930px, calc(100vw - 32px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    left: auto;
    right: -120px;
  }
  .site-header .menu-banks > .dropdown-panel {
    width: min(760px, calc(100vw - 32px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    left: -120px;
  }
  .site-header .menu-domains > .dropdown-panel {
    width: min(610px, calc(100vw - 32px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    left: -110px;
  }
}

/* Keep desktop text readable at the existing 1160px compaction breakpoint. */
@media (min-width: 981px) and (max-width: 1160px) {
  .site-header .nav-shell { width: calc(100% - 16px); gap: 6px; }
  .site-header .brand img { width: 122px; }
  .site-header .nav-panel { gap: 5px; }
  .site-header .primary-nav { gap: 5px; }
  .site-header .primary-nav > a,
  .site-header .nav-dropdown > summary {
    padding-left: 1px;
    padding-right: 1px;
    font-size: 15px;
  }
  .site-header .language-menu { padding-left: 4px; }
  .site-header .language-menu select,
  .site-header .nav-cta { font-size: 15px; }
  .site-header .nav-cta { padding-left: 8px; padding-right: 8px; }
}


/* UKLTD.UK DESKTOP MENU WIDE FINAL 2026 */
@media (min-width: 981px) {
  /*
     Main content is 1180px wide.
     On wide screens the logo and CTA occupy the two outer "wings":
     logo right edge ≈ content left edge, CTA left edge ≈ content right edge.
  */
  .site-header .nav-shell {
    width: min(1480px, calc(100% - 16px)) !important;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px !important;
    flex-wrap: nowrap !important;
  }

  .site-header .brand {
    width: clamp(104px, calc((100vw - 1180px) / 2), 150px);
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
  }

  .site-header .brand img {
    width: 150px !important;
    max-width: 100%;
    height: auto;
  }

  .site-header .nav-panel {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px !important;
    flex-wrap: nowrap !important;
  }

  .site-header .primary-nav {
    min-width: 0;
    flex: 1 1 auto;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
  }

  /* Explicitly defeat the old 11–13px breakpoint rules. */
  .site-header .primary-nav > a,
  .site-header .primary-nav > details.nav-dropdown > summary {
    flex: 0 0 auto;
    padding: 27px 3px 24px !important;
    color: #344156;
    font-size: 16px !important;
    line-height: 1.1 !important;
    font-weight: 700;
    white-space: nowrap !important;
  }

  /* No arrow / angle / chevron signs next to desktop menu labels. */
  .site-header .primary-nav > details.nav-dropdown > summary > span {
    display: none !important;
  }

  .site-header .language-menu {
    flex: 0 0 auto;
    gap: 4px;
    padding-left: 7px !important;
  }

  .site-header .language-menu select {
    font-size: 15px !important;
    font-weight: 800;
  }

  .site-header .nav-cta {
    width: clamp(124px, calc((100vw - 1180px) / 2), 150px);
    min-width: 124px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 8px !important;
    font-size: 15px !important;
    line-height: 1.1;
    white-space: nowrap !important;
  }

  /*
     Desktop submenu: never scroll internally.
     Position fixed + viewport centering prevents horizontal clipping.
  */
  .site-header .nav-dropdown > .dropdown-panel,
  .site-header .nav-dropdown > .dropdown-panel.info-menu {
    position: fixed !important;
    z-index: 300 !important;
    top: 110px !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    max-width: calc(100vw - 32px) !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    padding: 15px 17px !important;
    gap: 0 18px !important;
    transform: translateX(-50%) translateY(-7px) !important;
    scrollbar-width: none !important;
  }

  .site-header .nav-dropdown[open] > .dropdown-panel {
    transform: translateX(-50%) translateY(0) !important;
  }

  .site-header .nav-dropdown > .dropdown-panel::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  .site-header .dropdown-panel a {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 9px 11px !important;
    border-bottom: 1px solid #edf1f6;
    font-size: 16px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  .site-header .dropdown-panel .dropdown-hub {
    min-height: 42px;
    grid-column: 1 / -1;
    font-weight: 850;
  }

  /* Long lists: 3 columns. */
  .site-header .menu-services > .dropdown-panel,
  .site-header .menu-info > .dropdown-panel {
    width: min(1180px, calc(100vw - 32px)) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  /* Medium lists: 2 columns. */
  .site-header .menu-banks > .dropdown-panel {
    width: min(1000px, calc(100vw - 32px)) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .site-header .menu-domains > .dropdown-panel {
    width: min(780px, calc(100vw - 32px)) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* On narrower desktop windows, keep readable 16px text and use two columns for long lists. */
@media (min-width: 981px) and (max-width: 1279px) {
  .site-header .nav-shell {
    width: calc(100% - 12px) !important;
    gap: 5px !important;
  }

  .site-header .brand {
    width: 104px;
  }

  .site-header .brand img {
    width: 104px !important;
  }

  .site-header .nav-panel,
  .site-header .primary-nav {
    gap: 5px !important;
  }

  .site-header .primary-nav > a,
  .site-header .primary-nav > details.nav-dropdown > summary {
    padding-left: 1px !important;
    padding-right: 1px !important;
    font-size: 15px !important;
  }

  .site-header .language-menu {
    padding-left: 3px !important;
  }

  .site-header .language-menu select {
    font-size: 15px !important;
  }

  .site-header .nav-cta {
    width: auto;
    min-width: 120px;
    font-size: 15px !important;
    padding-left: 7px !important;
    padding-right: 7px !important;
  }

  .site-header .menu-services > .dropdown-panel,
  .site-header .menu-info > .dropdown-panel {
    width: calc(100vw - 32px) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .site-header .dropdown-panel a {
    font-size: 15px !important;
  }

  .site-header .menu-banks > .dropdown-panel,
  .site-header .menu-domains > .dropdown-panel {
    width: min(920px, calc(100vw - 32px)) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}


/* UKLTD.UK LOCAL MONTSERRAT FONTS */
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/Montserrat-Black.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

/* UKLTD.UK HEADING TYPOGRAPHY FINAL */
body {
  font-family: "Montserrat", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* All headings: SlateGray instead of black/navy. */
h1, h2, h3, h4, h5, h6,
.hero-copy h1,
.interior-hero h1,
.guide-hero h1,
.contact-page h1,
.catalog-hero h1,
.article-content h2,
.longform h2,
.question-feature h2,
.footer-grid h2 {
  color: #778899 !important;
  font-family: "Montserrat", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Hero titles only: Montserrat SemiBold 600. */
.hero-copy h1,
.interior-hero h1,
.guide-hero h1,
.contact-page h1,
.catalog-hero h1 {
  font-weight: 600 !important;
}



/* UKLTD.UK CONSOLIDATED UI FIXES 2026-08-28 */

/* British blue is for font colour only; bright-blue buttons remain unchanged. */
.uk-price-british-blue {
  color: #012169 !important;
}

/* Header "Buy company" CTA: same bright blue as the Hero, with breathing room. */
.site-header .nav-cta {
  color: #fff !important;
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  min-width: 156px !important;
}
.site-header .nav-cta:hover {
  color: #fff !important;
  background: var(--blue-dark) !important;
}

/* Hero primary CTA keeps the existing bright blue, only gets more horizontal air. */
.catalog-hero .button.primary,
.home-hero .button.primary,
.interior-hero .button.primary,
.guide-hero .button.primary {
  padding-left: 22px !important;
  padding-right: 22px !important;
}

/* Internal Hero uses existing local hero artwork, stable per URL. */
.catalog-hero.hero-bg-1,
.interior-hero.hero-bg-1,
.guide-hero.hero-bg-1,
.contact-page.hero-bg-1 {
  background-image:
    linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.91) 43%,rgba(255,255,255,.48) 72%,rgba(255,255,255,.16) 100%),
    url("assets/hero/hero-1.svg") !important;
}
.catalog-hero.hero-bg-2,
.interior-hero.hero-bg-2,
.guide-hero.hero-bg-2,
.contact-page.hero-bg-2 {
  background-image:
    linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.91) 43%,rgba(255,255,255,.48) 72%,rgba(255,255,255,.16) 100%),
    url("assets/hero/hero-2.svg") !important;
}
.catalog-hero.hero-bg-3,
.interior-hero.hero-bg-3,
.guide-hero.hero-bg-3,
.contact-page.hero-bg-3 {
  background-image:
    linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.91) 43%,rgba(255,255,255,.48) 72%,rgba(255,255,255,.16) 100%),
    url("assets/hero/hero-3.svg") !important;
}
.catalog-hero.hero-bg-4,
.interior-hero.hero-bg-4,
.guide-hero.hero-bg-4,
.contact-page.hero-bg-4 {
  background-image:
    linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.91) 43%,rgba(255,255,255,.48) 72%,rgba(255,255,255,.16) 100%),
    url("assets/hero/hero-4.svg") !important;
}
.catalog-hero.hero-bg-5,
.interior-hero.hero-bg-5,
.guide-hero.hero-bg-5,
.contact-page.hero-bg-5 {
  background-image:
    linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.91) 43%,rgba(255,255,255,.48) 72%,rgba(255,255,255,.16) 100%),
    url("assets/hero/hero-5.svg") !important;
}
.catalog-hero[class*="hero-bg-"],
.interior-hero[class*="hero-bg-"],
.guide-hero[class*="hero-bg-"],
.contact-page[class*="hero-bg-"] {
  background-size: cover !important;
  background-position: center right !important;
  background-repeat: no-repeat !important;
}
.catalog-hero-grid,
.interior-grid,
.guide-hero-grid {
  position: relative;
  z-index: 2;
}

/* Hero: 2 normal CTA + 2 circular SVG messenger icons, all in one row. */
.catalog-hero .hero-cpa-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  flex-wrap: nowrap !important;
  gap: 10px !important;
}
.catalog-hero .hero-cpa-row > .button:not(.messenger) {
  flex: 0 1 auto;
  min-width: 0;
}
.catalog-hero .hero-cpa-row > .hero-messenger-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  flex: 0 0 44px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
.catalog-hero .hero-cpa-row > .hero-messenger-icon svg {
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
}

/* Old full-width dark price-cpa sections are removed in HTML.
   Compact price card now lives in the right column beside the main text. */
.compact-price-card {
  margin: 0 0 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  background: #fff;
  box-shadow: 0 12px 30px rgba(23,58,137,.07);
}
.compact-price-label {
  margin: 0 0 8px;
  color: #68758a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.compact-price-value {
  display: block;
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 29px;
  line-height: 1.1;
  font-weight: 700;
}
.compact-price-text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}
.compact-price-card small {
  display: block;
  margin-top: 12px;
  color: #78859a;
  font-size: 11px;
  line-height: 1.5;
}
.compact-price-actions {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
  margin-top: 16px;
}
.compact-price-actions .button {
  min-height: 42px;
  padding: 8px 10px !important;
  font-size: 10.5px;
  text-align: center;
}

/* Related blocks: 4 cards = one complete row on desktop. */
@media (min-width: 981px) {
  .related-grid.grid-count-4 {
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  }

  /* Catalogues: balanced complete rows, never 3+1. */
  .catalog-grid.grid-count-4 {
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  }
  .catalog-grid.grid-count-10 {
    grid-template-columns: repeat(5,minmax(0,1fr)) !important;
  }
  .catalog-grid.grid-count-16 {
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  }

  /* Promotional cards: avoid 3+1 and 3+2. */
  .service-promo-grid.grid-count-4 {
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  }
  .service-promo-grid.grid-count-5 {
    grid-template-columns: repeat(5,minmax(0,1fr)) !important;
  }
  .service-promo-grid.grid-count-5 .service-promo-card {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Tablet: keep rows balanced rather than 3+1. */
@media (min-width: 641px) and (max-width: 980px) {
  .related-grid.grid-count-4,
  .catalog-grid.grid-count-4 {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }
  .catalog-grid.grid-count-10,
  .catalog-grid.grid-count-16 {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }
  .service-promo-grid.grid-count-4 {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }
  .service-promo-grid.grid-count-5 {
    grid-template-columns: repeat(5,minmax(0,1fr)) !important;
  }
}

/* Mobile Hero still keeps all four actions in a single row. */
@media (max-width: 640px) {
  .catalog-hero .hero-cpa-row {
    width: 100%;
    gap: 6px !important;
  }
  .catalog-hero .hero-cpa-row > .button:not(.messenger) {
    flex: 1 1 0;
    min-height: 44px;
    padding: 7px 7px !important;
    font-size: 10px;
    line-height: 1.15;
    white-space: normal;
  }
  .catalog-hero .hero-cpa-row > .hero-messenger-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    flex-basis: 40px !important;
  }
  .compact-price-card {
    padding: 18px;
  }
}


/* Legal pages use the same local Hero artwork only in the top reading zone. */
.legal-page.hero-bg-1 {
  background-image: linear-gradient(90deg,rgba(255,255,255,.96),rgba(255,255,255,.84) 58%,rgba(255,255,255,.32)),url("assets/hero/hero-1.svg") !important;
}
.legal-page.hero-bg-2 {
  background-image: linear-gradient(90deg,rgba(255,255,255,.96),rgba(255,255,255,.84) 58%,rgba(255,255,255,.32)),url("assets/hero/hero-2.svg") !important;
}
.legal-page.hero-bg-3 {
  background-image: linear-gradient(90deg,rgba(255,255,255,.96),rgba(255,255,255,.84) 58%,rgba(255,255,255,.32)),url("assets/hero/hero-3.svg") !important;
}
.legal-page.hero-bg-4 {
  background-image: linear-gradient(90deg,rgba(255,255,255,.96),rgba(255,255,255,.84) 58%,rgba(255,255,255,.32)),url("assets/hero/hero-4.svg") !important;
}
.legal-page.hero-bg-5 {
  background-image: linear-gradient(90deg,rgba(255,255,255,.96),rgba(255,255,255,.84) 58%,rgba(255,255,255,.32)),url("assets/hero/hero-5.svg") !important;
}
.legal-page[class*="hero-bg-"] {
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-size: 100% 380px !important;
}


@media (min-width:981px) and (max-width:1279px) {
  .site-header .nav-cta {
    min-width: 138px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .service-promo-grid.grid-count-5 {
    grid-template-columns: 1fr !important;
  }
}


/* UKLTD.UK UNIFIED ENGLISH FOOTER 2026 */
.footer-contact .shell {
  min-height: 68px;
}

.footer-legal-row {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: #778899;
  font-size: 11px;
  line-height: 1.2;
}

.footer-copyright {
  flex: 0 0 auto;
  color: #778899;
  font-size: 11px;
  white-space: nowrap;
}

.footer-legal-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #778899;
  font-size: 11px;
  white-space: nowrap;
}

.footer-legal-links a {
  margin: 0;
  padding: 0;
  color: #778899;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.footer-legal-links a:hover {
  color: var(--blue);
}

@media (max-width: 760px) {
  .footer-legal-row {
    min-height: 58px;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .footer-legal-links {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }
}


/* UKLTD.UK FINAL REFINEMENT 2026-08-28 */

/* Header CTA must be the same bright-blue button as Hero CTA. */
.site-header .nav-cta.button.primary {
  width: auto !important;
  min-width: 0 !important;
  min-height: 50px !important;
  padding: 0 22px !important;
  border: 1px solid transparent !important;
  border-radius: 5px !important;
  color: #fff !important;
  background: var(--blue) !important;
  box-shadow: 0 12px 28px rgba(22,93,255,.20) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  gap: 24px !important;
  white-space: nowrap !important;
}
.site-header .nav-cta.button.primary:hover {
  color: #fff !important;
  background: var(--blue-dark) !important;
  transform: translateY(-2px);
}
@media (min-width:981px) {
  .site-header .nav-cta.button.primary { font-size:15px !important; }
}

/* Card system: no red numeric badges; arrow is inline with title. */
.card-number { display:none !important; }
.card-eyebrow {
  display:block;
  margin:0 0 12px;
  color:#778899 !important;
  font-size:11px;
  line-height:1.35;
  font-weight:650;
  letter-spacing:.035em;
  text-transform:none;
}
.solution-card h3,.service-link-card h3,.sector-card h3,.catalog-card h3,
.service-promo-card h3,.related-grid > a h3 {
  color:#778899 !important;
  transition:color .18s ease;
}
.card-inline-arrow {
  display:inline !important;
  margin-left:5px !important;
  padding:0 !important;
  color:#778899 !important;
  font-size:1em !important;
  font-weight:700 !important;
  transition:color .18s ease;
}
.solution-card:hover h3,.service-link-card:hover h3,.sector-card:hover h3,.catalog-card:hover h3,
.service-promo-card:hover h3,.related-grid > a:hover h3,
.solution-card:hover .card-inline-arrow,.service-link-card:hover .card-inline-arrow,
.sector-card:hover .card-inline-arrow,.catalog-card:hover .card-inline-arrow,
.service-promo-card:hover .card-inline-arrow,.related-grid > a:hover .card-inline-arrow {
  color:var(--blue) !important;
}
.solution-card,.service-link-card,.sector-card { min-height:172px !important; padding:23px !important; }
.related-grid > a { min-height:188px !important; padding:23px !important; }
.catalog-card { min-height:238px !important; padding:23px !important; }
.service-promo-card { min-height:185px !important; padding:23px !important; }
.solution-card h3,.service-link-card h3,.sector-card h3,.catalog-card h3,
.service-promo-card h3,.related-grid > a h3 { margin-top:0 !important; margin-bottom:12px !important; }

/* Footer: local vector grey gradient, 50% grey (#808080) as the visual base. */
.site-footer {
  background:#808080 url("assets/footer-gray-gradient.svg") center/cover no-repeat !important;
  border-top:1px solid rgba(255,255,255,.28) !important;
  color:#f7f8f9;
}
.site-footer .footer-brand-row p { color:rgba(255,255,255,.88) !important; }
.site-footer .footer-grid { border-top-color:rgba(255,255,255,.28) !important; }
.site-footer .footer-grid h2 { color:#fff !important; }
.site-footer .footer-grid a { color:rgba(255,255,255,.86) !important; }
.site-footer .footer-grid a:hover { color:#fff !important; }
.site-footer .footer-contact { display:none !important; }
.footer-legal-row {
  min-height:48px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:28px !important;
  border-top:1px solid rgba(255,255,255,.34) !important;
  color:rgba(255,255,255,.90) !important;
  font-size:11px !important;
}
.footer-legal-links {
  margin:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:18px !important;
  order:1;
  color:rgba(255,255,255,.90) !important;
  font-size:11px !important;
  white-space:nowrap;
}
.footer-legal-links a { color:rgba(255,255,255,.90) !important; font-size:11px !important; font-weight:500 !important; }
.footer-legal-links a:hover { color:#fff !important; }
.footer-copyright {
  margin-left:auto !important;
  order:2;
  color:rgba(255,255,255,.90) !important;
  font-size:11px !important;
  white-space:nowrap;
}

/* Floating action dock appears after scrolling begins. */
.floating-action-dock {
  position:fixed;
  z-index:420;
  right:22px;
  bottom:22px;
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(16px);
  transition:opacity .2s ease,transform .2s ease,visibility .2s ease;
}
body.floating-actions-visible .floating-action-dock {
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}
.floating-action {
  width:44px;
  height:44px;
  flex:0 0 44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:1px solid rgba(255,255,255,.32);
  border-radius:50%;
  background:rgba(10,24,85,.90);
  color:#fff;
  box-shadow:0 8px 22px rgba(11,31,67,.14);
  cursor:pointer;
  transition:background .18s ease,transform .18s ease,box-shadow .18s ease;
}
.floating-action:hover {
  background:var(--blue);
  transform:translateY(-2px);
  box-shadow:0 11px 26px rgba(22,93,255,.25);
}
.floating-action svg {
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.55;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.floating-telegram svg { fill:currentColor; stroke:none; }

@media (max-width:760px) {
  .floating-action-dock {
    right:50%;
    bottom:max(14px,env(safe-area-inset-bottom));
    flex-direction:row;
    gap:12px;
    transform:translate(50%,16px);
  }
  body.floating-actions-visible .floating-action-dock { transform:translate(50%,0); }
  .floating-action { width:42px; height:42px; flex-basis:42px; }
  .footer-legal-row { flex-wrap:wrap !important; padding:12px 0 !important; gap:8px 16px !important; }
  .footer-legal-links { width:100%; flex-wrap:wrap; gap:10px 14px !important; }
  .footer-copyright { margin-left:0 !important; }
  .solution-card,.service-link-card,.sector-card,.related-grid > a,.catalog-card,.service-promo-card { min-height:auto !important; padding:20px !important; }
}


/* Red numeric badges removed from answer cards. */
.answer-stack h3 { margin-top:0 !important; }


/* UKLTD.UK MENU TYPOGRAPHY + HERO BUTTON SYNC + COLD HERO 2026 */
.site-header .dropdown-panel a,
.site-header .dropdown-panel .dropdown-hub {
  font-family: "Montserrat", Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-weight: 400 !important;
}
.site-header .dropdown-panel a:hover,
.site-header .dropdown-panel .dropdown-hub:hover {
  font-weight: 500 !important;
}

@media (min-width: 981px) {
  .site-header .primary-nav > a,
  .site-header .primary-nav > details.nav-dropdown > summary {
    font-family: "Montserrat", Inter, ui-sans-serif, system-ui, sans-serif !important;
    font-weight: 500 !important;
  }
  .site-header .primary-nav > a:hover,
  .site-header .primary-nav > a.active,
  .site-header .primary-nav > details.nav-dropdown > summary:hover,
  .site-header .primary-nav > details.nav-dropdown[open] > summary,
  .site-header .primary-nav > details.nav-dropdown > summary.active {
    font-weight: 600 !important;
  }
  .site-header .menu-services > .dropdown-panel,
  .site-header .menu-info > .dropdown-panel {
    width: min(1180px, calc(100vw - 32px)) !important;
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    max-height: none !important;
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
  }
}

.catalog-hero .hero-cpa-row > .button:not(.messenger),
.interior-hero .button,
.guide-hero .button,
.contact-page .button {
  min-height: 50px !important;
  padding: 0 22px !important;
  gap: 24px !important;
  font-size: 13px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
}

.home-hero {
  background: linear-gradient(120deg,#f7faff 0%,#ffffff 54%,#eaf2fb 100%) !important;
}
.catalog-hero { background-color: #edf3fa; }
.interior-hero,
.guide-hero { background-color: #eef4fb; }
.catalog-orb {
  box-shadow: 0 0 0 90px rgba(22,93,255,.035),0 0 0 180px rgba(74,113,164,.025) !important;
}

@media (max-width: 640px) {
  .catalog-hero .hero-cpa-row > .button:not(.messenger) {
    min-height: 50px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
  }
}


/* UKLTD.UK FOOTER LOCALIZATION RESTORE 2026 */
.footer-legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-legal-links {
  order: 1;
  margin-left: 0 !important;
  margin-right: auto;
  justify-content: flex-start !important;
  text-align: left;
}
.footer-copyright {
  order: 2;
  margin-left: auto;
  text-align: right;
}
@media (max-width: 760px) {
  .footer-legal-links {
    width: auto;
    flex: 1 1 auto;
    justify-content: flex-start !important;
  }
  .footer-copyright {
    flex: 0 0 auto;
  }
}


/* UKLTD.UK FOOTER FINAL SIDE ORDER 2026 */
.footer-legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright {
  order: 1 !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
}
.footer-legal-links {
  order: 2 !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  justify-content: flex-end !important;
  text-align: right !important;
}

/* UKLTD.UK RU READY ACCOUNT CTA SINGLE LINE */
@media (min-width: 981px) {
  .ru-ready-account-cta-shell {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    flex-wrap: nowrap !important;
  }
  .ru-ready-account-cta-shell > div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1 1 auto;
  }
  .ru-ready-account-cta-shell h2 {
    margin: 0 !important;
    white-space: nowrap !important;
  }
  .ru-ready-account-cta-shell > .button {
    flex: 0 0 auto !important;
    min-width: auto !important;
    white-space: nowrap !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}


/* UKLTD.UK COMPACT READY ACCOUNT PROMO + WARNING CLEANUP */
/* Yellow warning-band sections are removed from HTML on all languages. */

.compact-ready-account-band {
  padding: 24px 0 !important;
}

.compact-ready-account-band .ru-ready-account-cta-shell {
  min-height: 50px;
  align-items: center !important;
}

.compact-ready-account-band .ru-ready-account-cta-shell > div {
  align-items: center !important;
}

.compact-ready-account-band .ru-ready-account-cta-shell h2 {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(29px, 3.6vw, 47px) !important; /* 10% smaller than 32–52px */
  line-height: 1 !important;
  letter-spacing: -.04em !important;
  white-space: nowrap !important;
}

.compact-ready-account-band .ru-ready-account-cta-shell > .button {
  min-height: 46px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

@media (max-width: 980px) {
  .compact-ready-account-band {
    padding: 20px 0 !important;
  }
}

@media (max-width: 640px) {
  .compact-ready-account-band {
    padding: 18px 0 !important;
  }

  .compact-ready-account-band .ru-ready-account-cta-shell {
    gap: 14px !important;
  }

  .compact-ready-account-band .ru-ready-account-cta-shell h2 {
    font-size: 25px !important;
    white-space: normal !important;
  }
}




/* UKLTD.UK CENTRALIZED LEGACY PAGE COMPONENT STYLES */
/* centralized from ready-made-uk-ltd.html */
.ready-guide-wrap { overflow: hidden; }
    .ready-guide-full { width: min(1180px, calc(100% - 48px)); }
    .ready-guide { width: 100%; }
    .ready-guide > section + section { margin-top: 80px; padding-top: 75px; border-top: 1px solid var(--line); }
    .ready-guide p { max-width: 1000px; }
    .ready-guide .ready-list { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
    .ready-guide .ready-list li { position: relative; padding: 16px 16px 16px 34px; color: #3b495c; font-size: 14px; line-height: 1.7; border-bottom: 1px solid var(--line); }
    .ready-guide .ready-list li::before { content: "✓"; position: absolute; left: 5px; color: var(--success); font-weight: 800; }
    .service-promo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
    .service-promo-card { min-height: 220px; display: flex; flex-direction: column; padding: 28px; color: inherit; text-decoration: none; border: 1px solid var(--line); background: white; box-shadow: 0 12px 34px rgba(15, 34, 66, .06); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
    .service-promo-card:hover { transform: translateY(-5px); border-color: var(--blue); box-shadow: 0 18px 42px rgba(15, 34, 66, .12); }
    .service-promo-card h3 { margin: 0; color: var(--navy); font-size: 20px; line-height: 1.25; }
    .service-promo-card p { margin: 18px 0 26px; color: #506077; font-size: 14px; line-height: 1.7; }
    .service-promo-card span { margin-top: auto; color: var(--blue-dark); font-size: 12px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
    .portal-heading { margin-bottom: 36px; padding-left: 24px; border-left: 4px solid var(--blue); }
    .portal-kicker { margin: 0 0 10px; color: var(--blue-dark); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
    .portal-heading .portal-title { margin: 0; color: var(--navy); font-size: clamp(32px, 5vw, 58px); line-height: 1; }
    .portal-subtitle { margin: 14px 0 0; color: #506077; font-size: 17px; line-height: 1.6; }
    .portal-cpa { margin-top: 36px; }
    .notice-inner { justify-content: flex-end; }
    .contact-inline { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
    .contact-inline > a:not(.contact-icon) { color: inherit; font-weight: 800; }
    .contact-icon { width: 27px; height: 27px; display: inline-grid; place-items: center; color: var(--navy); border: 1px solid #cbd5e2; border-radius: 50%; background: white; transition: .2s ease; }
    .contact-icon:hover { color: white; border-color: var(--blue); background: var(--blue); transform: translateY(-1px); }
    .contact-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
    .contact-icon.telegram svg { fill: currentColor; stroke: none; }
    .footer-contact .shell { min-height: 68px; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 28px; align-items: center; }
    .footer-contact .contact-inline { min-height: 68px; }
    .footer-contact .contact-inline > span { width: auto; margin: 0; color: inherit; font-size: inherit; }
    .footer-contact .contact-icon { color: white; border-color: rgba(255,255,255,.42); background: transparent; }
    .footer-contact .contact-icon:hover { border-color: var(--blue); background: var(--blue); }
    .footer-contact .operator-info { width: auto; margin: 0; padding: 0; color: #bdcbe0; line-height: 1.6; text-align: right; }
    @media (max-width: 980px) {
      .service-promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 640px) {
      .ready-guide-full { width: min(100% - 28px, 520px); }
      .ready-guide > section + section { margin-top: 58px; padding-top: 55px; }
      .ready-guide .ready-list li { padding-right: 4px; }
      .service-promo-grid { grid-template-columns: 1fr; }
      .service-promo-card { min-height: 0; }
      .footer-contact .shell { grid-template-columns: 1fr; gap: 8px; padding-top: 16px; padding-bottom: 16px; }
      .footer-contact .contact-inline { min-height: auto; }
      .footer-contact .operator-info { text-align: left; }
    }

/* centralized from register-uk-ltd-online.html */
.ready-guide-wrap { overflow: hidden; }
    .ready-guide-full { width: min(1180px, calc(100% - 48px)); }
    .ready-guide { width: 100%; }
    .ready-guide > section + section { margin-top: 80px; padding-top: 75px; border-top: 1px solid var(--line); }
    .ready-guide p { max-width: 1000px; }
    .ready-guide .ready-list { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
    .ready-guide .ready-list li { position: relative; padding: 16px 16px 16px 34px; color: #3b495c; font-size: 14px; line-height: 1.7; border-bottom: 1px solid var(--line); }
    .ready-guide .ready-list li::before { content: "✓"; position: absolute; left: 5px; color: var(--success); font-weight: 800; }
    .service-promo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
    .service-promo-card { min-height: 220px; display: flex; flex-direction: column; padding: 28px; color: inherit; text-decoration: none; border: 1px solid var(--line); background: white; box-shadow: 0 12px 34px rgba(15, 34, 66, .06); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
    .service-promo-card:hover { transform: translateY(-5px); border-color: var(--blue); box-shadow: 0 18px 42px rgba(15, 34, 66, .12); }
    .service-promo-card h3 { margin: 0; color: var(--navy); font-size: 20px; line-height: 1.25; }
    .service-promo-card p { margin: 18px 0 26px; color: #506077; font-size: 14px; line-height: 1.7; }
    .service-promo-card span { margin-top: auto; color: var(--blue-dark); font-size: 12px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
    .portal-heading { margin-bottom: 36px; padding-left: 24px; border-left: 4px solid var(--blue); }
    .portal-kicker { margin: 0 0 10px; color: var(--blue-dark); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
    .portal-heading .portal-title { margin: 0; color: var(--navy); font-size: clamp(32px, 5vw, 58px); line-height: 1; }
    .portal-subtitle { margin: 14px 0 0; color: #506077; font-size: 17px; line-height: 1.6; }
    .portal-cpa { margin-top: 36px; }
    .notice-inner { justify-content: flex-end; }
    .contact-inline { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
    .contact-inline > a:not(.contact-icon) { color: inherit; font-weight: 800; }
    .contact-icon { width: 27px; height: 27px; display: inline-grid; place-items: center; color: var(--navy); border: 1px solid #cbd5e2; border-radius: 50%; background: white; transition: .2s ease; }
    .contact-icon:hover { color: white; border-color: var(--blue); background: var(--blue); transform: translateY(-1px); }
    .contact-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
    .contact-icon.telegram svg { fill: currentColor; stroke: none; }
    .footer-contact .shell { min-height: 68px; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 28px; align-items: center; }
    .footer-contact .contact-inline { min-height: 68px; }
    .footer-contact .contact-inline > span { width: auto; margin: 0; color: inherit; font-size: inherit; }
    .footer-contact .contact-icon { color: white; border-color: rgba(255,255,255,.42); background: transparent; }
    .footer-contact .contact-icon:hover { border-color: var(--blue); background: var(--blue); }
    .footer-contact .operator-info { width: auto; margin: 0; padding: 0; color: #bdcbe0; line-height: 1.6; text-align: right; }
    @media (max-width: 980px) {
      .service-promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 640px) {
      .ready-guide-full { width: min(100% - 28px, 520px); }
      .ready-guide > section + section { margin-top: 58px; padding-top: 55px; }
      .ready-guide .ready-list li { padding-right: 4px; }
      .service-promo-grid { grid-template-columns: 1fr; }
      .service-promo-card { min-height: 0; }
      .footer-contact .shell { grid-template-columns: 1fr; gap: 8px; padding-top: 16px; padding-bottom: 16px; }
      .footer-contact .contact-inline { min-height: auto; }
      .footer-contact .operator-info { text-align: left; }
    }

/* centralized from uk-company-registry-extract.html */
.ready-guide-wrap { overflow: hidden; }
    .ready-guide-full { width: min(1180px, calc(100% - 48px)); }
    .ready-guide { width: 100%; }
    .ready-guide > section + section { margin-top: 80px; padding-top: 75px; border-top: 1px solid var(--line); }
    .ready-guide p { max-width: 1000px; }
    .ready-guide .ready-list { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
    .ready-guide .ready-list li { position: relative; padding: 16px 16px 16px 34px; color: #3b495c; font-size: 14px; line-height: 1.7; border-bottom: 1px solid var(--line); }
    .ready-guide .ready-list li::before { content: "✓"; position: absolute; left: 5px; color: var(--success); font-weight: 800; }
    .service-promo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
    .service-promo-card { min-height: 220px; display: flex; flex-direction: column; padding: 28px; color: inherit; text-decoration: none; border: 1px solid var(--line); background: white; box-shadow: 0 12px 34px rgba(15, 34, 66, .06); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
    .service-promo-card:hover { transform: translateY(-5px); border-color: var(--blue); box-shadow: 0 18px 42px rgba(15, 34, 66, .12); }
    .service-promo-card h3 { margin: 0; color: var(--navy); font-size: 20px; line-height: 1.25; }
    .service-promo-card p { margin: 18px 0 26px; color: #506077; font-size: 14px; line-height: 1.7; }
    .service-promo-card span { margin-top: auto; color: var(--blue-dark); font-size: 12px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
    .portal-heading { margin-bottom: 36px; padding-left: 24px; border-left: 4px solid var(--blue); }
    .portal-kicker { margin: 0 0 10px; color: var(--blue-dark); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
    .portal-heading .portal-title { margin: 0; color: var(--navy); font-size: clamp(32px, 5vw, 58px); line-height: 1; }
    .portal-subtitle { margin: 14px 0 0; color: #506077; font-size: 17px; line-height: 1.6; }
    .portal-cpa { margin-top: 36px; }
    .ready-guide .portal-section-title { margin-top: 64px; padding-top: 56px; border-top: 1px solid var(--line); }
    .notice-inner { justify-content: flex-end; }
    .contact-inline { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
    .contact-inline > a:not(.contact-icon) { color: inherit; font-weight: 800; }
    .contact-icon { width: 27px; height: 27px; display: inline-grid; place-items: center; color: var(--navy); border: 1px solid #cbd5e2; border-radius: 50%; background: white; transition: .2s ease; }
    .contact-icon:hover { color: white; border-color: var(--blue); background: var(--blue); transform: translateY(-1px); }
    .contact-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
    .contact-icon.telegram svg { fill: currentColor; stroke: none; }
    .footer-contact .shell { min-height: 68px; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 28px; align-items: center; }
    .footer-contact .contact-inline { min-height: 68px; }
    .footer-contact .contact-inline > span { width: auto; margin: 0; color: inherit; font-size: inherit; }
    .footer-contact .contact-icon { color: white; border-color: rgba(255,255,255,.42); background: transparent; }
    .footer-contact .contact-icon:hover { border-color: var(--blue); background: var(--blue); }
    .footer-contact .operator-info { width: auto; margin: 0; padding: 0; color: #bdcbe0; line-height: 1.6; text-align: right; }
    @media (max-width: 980px) {
      .service-promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 640px) {
      .ready-guide-full { width: min(100% - 28px, 520px); }
      .ready-guide > section + section { margin-top: 58px; padding-top: 55px; }
      .ready-guide .ready-list li { padding-right: 4px; }
      .service-promo-grid { grid-template-columns: 1fr; }
      .service-promo-card { min-height: 0; }
      .footer-contact .shell { grid-template-columns: 1fr; gap: 8px; padding-top: 16px; padding-bottom: 16px; }
      .footer-contact .contact-inline { min-height: auto; }
      .footer-contact .operator-info { text-align: left; }
    }

/* centralized from certificate-good-standing-uk-ltd.html */
.ready-guide-wrap { overflow: hidden; }
    .ready-guide-full { width: min(1180px, calc(100% - 48px)); }
    .ready-guide { width: 100%; }
    .ready-guide > section + section { margin-top: 80px; padding-top: 75px; border-top: 1px solid var(--line); }
    .ready-guide p { max-width: 1000px; }
    .ready-guide .ready-list { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
    .ready-guide .ready-list li { position: relative; padding: 16px 16px 16px 34px; color: #3b495c; font-size: 14px; line-height: 1.7; border-bottom: 1px solid var(--line); }
    .ready-guide .ready-list li::before { content: "✓"; position: absolute; left: 5px; color: var(--success); font-weight: 800; }
    .service-promo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
    .service-promo-card { min-height: 220px; display: flex; flex-direction: column; padding: 28px; color: inherit; text-decoration: none; border: 1px solid var(--line); background: white; box-shadow: 0 12px 34px rgba(15, 34, 66, .06); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
    .service-promo-card:hover { transform: translateY(-5px); border-color: var(--blue); box-shadow: 0 18px 42px rgba(15, 34, 66, .12); }
    .service-promo-card h3 { margin: 0; color: var(--navy); font-size: 20px; line-height: 1.25; }
    .service-promo-card p { margin: 18px 0 26px; color: #506077; font-size: 14px; line-height: 1.7; }
    .service-promo-card span { margin-top: auto; color: var(--blue-dark); font-size: 12px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
    .portal-heading { margin-bottom: 36px; padding-left: 24px; border-left: 4px solid var(--blue); }
    .portal-kicker { margin: 0 0 10px; color: var(--blue-dark); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
    .portal-heading .portal-title { margin: 0; color: var(--navy); font-size: clamp(32px, 5vw, 58px); line-height: 1; }
    .portal-subtitle { margin: 14px 0 0; color: #506077; font-size: 17px; line-height: 1.6; }
    .portal-cpa { margin-top: 36px; }
    .ready-guide .portal-section-title { margin-top: 64px; padding-top: 56px; border-top: 1px solid var(--line); }
    .notice-inner { justify-content: flex-end; }
    .contact-inline { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
    .contact-inline > a:not(.contact-icon) { color: inherit; font-weight: 800; }
    .contact-icon { width: 27px; height: 27px; display: inline-grid; place-items: center; color: var(--navy); border: 1px solid #cbd5e2; border-radius: 50%; background: white; transition: .2s ease; }
    .contact-icon:hover { color: white; border-color: var(--blue); background: var(--blue); transform: translateY(-1px); }
    .contact-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
    .contact-icon.telegram svg { fill: currentColor; stroke: none; }
    .footer-contact .shell { min-height: 68px; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 28px; align-items: center; }
    .footer-contact .contact-inline { min-height: 68px; }
    .footer-contact .contact-inline > span { width: auto; margin: 0; color: inherit; font-size: inherit; }
    .footer-contact .contact-icon { color: white; border-color: rgba(255,255,255,.42); background: transparent; }
    .footer-contact .contact-icon:hover { border-color: var(--blue); background: var(--blue); }
    .footer-contact .operator-info { width: auto; margin: 0; padding: 0; color: #bdcbe0; line-height: 1.6; text-align: right; }
    @media (max-width: 980px) {
      .service-promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 640px) {
      .ready-guide-full { width: min(100% - 28px, 520px); }
      .ready-guide > section + section { margin-top: 58px; padding-top: 55px; }
      .ready-guide .ready-list li { padding-right: 4px; }
      .service-promo-grid { grid-template-columns: 1fr; }
      .service-promo-card { min-height: 0; }
      .footer-contact .shell { grid-template-columns: 1fr; gap: 8px; padding-top: 16px; padding-bottom: 16px; }
      .footer-contact .contact-inline { min-height: auto; }
      .footer-contact .operator-info { text-align: left; }
    }

/* centralized from uk-trade-mark-registration.html */
.ready-guide-wrap { overflow: hidden; }
    .ready-guide-full { width: min(1180px, calc(100% - 48px)); }
    .ready-guide { width: 100%; }
    .ready-guide > section + section { margin-top: 80px; padding-top: 75px; border-top: 1px solid var(--line); }
    .ready-guide p { max-width: 1000px; }
    .ready-guide .ready-list { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
    .ready-guide .ready-list li { position: relative; padding: 16px 16px 16px 34px; color: #3b495c; font-size: 14px; line-height: 1.7; border-bottom: 1px solid var(--line); }
    .ready-guide .ready-list li::before { content: "✓"; position: absolute; left: 5px; color: var(--success); font-weight: 800; }
    .service-promo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
    .service-promo-card { min-height: 220px; display: flex; flex-direction: column; padding: 28px; color: inherit; text-decoration: none; border: 1px solid var(--line); background: white; box-shadow: 0 12px 34px rgba(15, 34, 66, .06); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
    .service-promo-card:hover { transform: translateY(-5px); border-color: var(--blue); box-shadow: 0 18px 42px rgba(15, 34, 66, .12); }
    .service-promo-card h3 { margin: 0; color: var(--navy); font-size: 20px; line-height: 1.25; }
    .service-promo-card p { margin: 18px 0 26px; color: #506077; font-size: 14px; line-height: 1.7; }
    .service-promo-card span { margin-top: auto; color: var(--blue-dark); font-size: 12px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
    .portal-heading { margin-bottom: 36px; padding-left: 24px; border-left: 4px solid var(--blue); }
    .portal-kicker { margin: 0 0 10px; color: var(--blue-dark); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
    .portal-heading .portal-title { margin: 0; color: var(--navy); font-size: clamp(32px, 5vw, 58px); line-height: 1; }
    .portal-subtitle { margin: 14px 0 0; color: #506077; font-size: 17px; line-height: 1.6; }
    .portal-cpa { margin-top: 36px; }
    .notice-inner { justify-content: flex-end; }
    .contact-inline { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
    .contact-inline > a:not(.contact-icon) { color: inherit; font-weight: 800; }
    .contact-icon { width: 27px; height: 27px; display: inline-grid; place-items: center; color: var(--navy); border: 1px solid #cbd5e2; border-radius: 50%; background: white; transition: .2s ease; }
    .contact-icon:hover { color: white; border-color: var(--blue); background: var(--blue); transform: translateY(-1px); }
    .contact-icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
    .contact-icon.telegram svg { fill: currentColor; stroke: none; }
    .footer-contact .shell { min-height: 68px; display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 28px; align-items: center; }
    .footer-contact .contact-inline { min-height: 68px; }
    .footer-contact .contact-inline > span { width: auto; margin: 0; color: inherit; font-size: inherit; }
    .footer-contact .contact-icon { color: white; border-color: rgba(255,255,255,.42); background: transparent; }
    .footer-contact .contact-icon:hover { border-color: var(--blue); background: var(--blue); }
    .footer-contact .operator-info { width: auto; margin: 0; padding: 0; color: #bdcbe0; line-height: 1.6; text-align: right; }
    @media (max-width: 980px) {
      .service-promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 640px) {
      .ready-guide-full { width: min(100% - 28px, 520px); }
      .ready-guide > section + section { margin-top: 58px; padding-top: 55px; }
      .ready-guide .ready-list li { padding-right: 4px; }
      .service-promo-grid { grid-template-columns: 1fr; }
      .service-promo-card { min-height: 0; }
      .footer-contact .shell { grid-template-columns: 1fr; gap: 8px; padding-top: 16px; padding-bottom: 16px; }
      .footer-contact .contact-inline { min-height: auto; }
      .footer-contact .operator-info { text-align: left; }
    }

/* UKLTD.UK WIDE CARD AREAS + RU VISUAL SYNC 2026 */

/* The disclaimer line above the header is removed on every locale. */
.notice-bar.notice-empty {
  display: none !important;
}

/*
  Card areas use the same outer geometry as the desktop header:
  from the left edge of the logo to the right edge of the Buy Company CTA.
*/
@media (min-width: 981px) {
  .wide-card-zone {
    width: min(1480px, calc(100% - 16px)) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Catalogue cards: wider and visibly more horizontal. */
  .catalog-grid.grid-count-4 {
    grid-template-columns: repeat(4, minmax(0,1fr)) !important;
  }
  .catalog-grid.grid-count-10 {
    grid-template-columns: repeat(4, minmax(0,1fr)) !important;
  }
  .catalog-grid.grid-count-10 > :nth-last-child(2) {
    grid-column: 2;
  }
  .catalog-grid.grid-count-15 {
    grid-template-columns: repeat(5, minmax(0,1fr)) !important;
  }
  .catalog-grid.grid-count-16 {
    grid-template-columns: repeat(4, minmax(0,1fr)) !important;
  }

  .catalog-card {
    min-height: 180px !important;
    padding: 22px 24px !important;
  }
  .catalog-card h3 {
    margin: 0 0 10px !important;
    font-size: 21px !important;
    line-height: 1.16 !important;
  }
  .catalog-card p {
    line-height: 1.55 !important;
  }
  .catalog-card > div {
    margin-top: auto !important;
    padding-top: 14px !important;
  }

  /* Related/service cards use balanced wide rows. */
  .related-grid.grid-count-3 {
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  }
  .related-grid.grid-count-4 {
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  }
  .related-grid.grid-count-6 {
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  }
  .related-grid a {
    min-height: 165px !important;
    padding: 22px 24px !important;
  }
  .related-grid h3 {
    margin: 0 0 10px !important;
    line-height: 1.22 !important;
  }

  .service-promo-grid.grid-count-4 {
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  }
  .service-promo-grid.grid-count-5 {
    grid-template-columns: repeat(5,minmax(0,1fr)) !important;
  }
  .service-promo-grid.grid-count-15 {
    grid-template-columns: repeat(5,minmax(0,1fr)) !important;
  }
  .service-promo-card {
    min-height: 165px !important;
    padding: 20px 22px !important;
  }

  .service-link-grid,
  .sector-grid,
  .solution-grid {
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  }
  .service-link-card,
  .sector-card,
  .solution-card {
    min-height: 170px !important;
    padding: 22px 24px !important;
  }
  .service-link-card h3,
  .sector-card h3,
  .solution-card h3 {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
  }

  .stats-grid {
    grid-template-columns: repeat(3,minmax(0,1fr)) !important;
  }

  .process-grid {
    grid-template-columns: repeat(4,minmax(0,1fr)) !important;
  }
  .process-grid article {
    min-height: 170px !important;
    padding: 22px 24px !important;
  }
  .process-grid h3 {
    margin-top: 18px !important;
  }
}

/* Tablet keeps the same visual system but avoids over-dense rows. */
@media (min-width: 641px) and (max-width: 980px) {
  .wide-card-zone {
    width: calc(100% - 28px) !important;
    max-width: none !important;
  }
  .catalog-grid.grid-count-10,
  .catalog-grid.grid-count-15,
  .catalog-grid.grid-count-16,
  .related-grid.grid-count-4,
  .related-grid.grid-count-6,
  .service-link-grid,
  .sector-grid,
  .solution-grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  }
  .catalog-grid.grid-count-10 > :nth-last-child(2) {
    grid-column: auto;
  }
}

/* Mobile remains one-column where the existing responsive system requires it. */
@media (max-width: 640px) {
  .wide-card-zone {
    width: calc(100% - 28px) !important;
    max-width: none !important;
  }
}


/* UKLTD.UK 2026 UNIFIED INTAKE */
body.intake-open {
  overflow: hidden;
}

.intake-host,
.intake-component,
.intake-form,
.intake-stage {
  min-width: 0;
}

.intake-component {
  --intake-line: #dbe3ee;
  --intake-soft: #f4f7fb;
  --intake-text: #102033;
  --intake-muted: #778899;
  --intake-blue: #165dff;
  --intake-navy: #071d3d;
  font-family: "Montserrat", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--intake-text);
}

.intake-inline {
  width: 100%;
}

.intake-form {
  position: relative;
  width: 100%;
  margin: 0;
}

.intake-honey {
  position: absolute !important;
  left: -10000px !important;
  top: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.intake-progress-host {
  margin-bottom: 22px;
}

.intake-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.intake-progress > span {
  display: block;
  padding: 0 0 8px;
  border-bottom: 2px solid #e4eaf2;
  color: #a2adbb;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
}

.intake-progress > span.is-active {
  border-bottom-color: var(--intake-blue);
  color: var(--intake-blue);
}

.intake-stage {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity .18s ease, transform .18s ease;
}

.intake-stage.intake-back {
  transform: translateX(-12px);
}

.intake-stage.is-ready {
  opacity: 1;
  transform: translateX(0);
}

.intake-heading {
  margin-bottom: 18px;
}

.intake-heading h2 {
  margin: 0;
  color: #778899 !important;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.intake-heading p {
  max-width: 560px;
  margin: 8px 0 0;
  color: #667487;
  font-size: 13px;
  line-height: 1.45;
}

.intake-context {
  display: grid;
  gap: 4px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid #dbe3ee;
  border-left: 3px solid var(--intake-blue);
  border-radius: 8px;
  background: #f8fbff;
}

.intake-context span {
  color: #778899;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.intake-context strong {
  color: #26374d;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.intake-choice-grid {
  display: grid;
  gap: 8px;
}

.intake-service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 16px;
}

.intake-channel-grid,
.intake-time-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.intake-choice {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #fff;
  color: #26374d;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: border-color .14s ease, background .14s ease, color .14s ease, transform .14s ease;
}

.intake-choice:hover {
  border-color: #9ebcfb;
  background: #f7faff;
}

.intake-choice.is-selected {
  border-color: var(--intake-blue);
  background: #eef4ff;
  color: #0b45c5;
}

.intake-field {
  display: grid;
  gap: 7px;
  margin: 0 0 15px;
}

.intake-field-label,
.intake-group-label {
  margin: 0 0 7px;
  color: #556579;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.intake-field input,
.intake-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #fff;
  color: #102033;
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
}

.intake-field input {
  height: 48px;
  padding: 0 13px;
}

.intake-field textarea {
  min-height: 70px;
  padding: 11px 13px;
  resize: vertical;
}

.intake-field input::placeholder,
.intake-field textarea::placeholder {
  color: #9aa6b5;
}

.intake-contact-field {
  display: none;
}

.intake-contact-field.is-active {
  display: grid;
}

.intake-group-label {
  margin-top: 4px;
}

.intake-time-grid {
  margin-bottom: 14px;
}

.intake-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 4px 0 16px;
  color: #657386;
  font-size: 10px;
  line-height: 1.4;
  cursor: pointer;
}

.intake-consent input {
  width: 15px;
  height: 15px;
  margin: 0;
  flex: 0 0 auto;
}

.intake-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 17px;
}

.intake-actions-end {
  justify-content: flex-end;
}

.intake-actions .button {
  min-height: 46px;
  margin: 0;
}

.intake-status {
  display: none;
  min-height: 0;
  margin: 12px 0 0;
  color: #b42318;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.intake-status.is-visible {
  display: block;
}

.intake-success {
  display: grid;
  justify-items: start;
  align-content: center;
  min-height: 320px;
  padding: 26px 0;
}

.intake-success-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border: 1px solid #b7d9cd;
  border-radius: 50%;
  color: #087a5b;
  font-size: 22px;
  font-weight: 700;
}

.intake-success h2 {
  margin: 0;
  color: #778899 !important;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.intake-success p {
  max-width: 510px;
  margin: 12px 0 22px;
  color: #607084;
  font-size: 13px;
  line-height: 1.55;
}

.intake-overlay {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 29, 61, .62);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, visibility .18s ease;
}

.intake-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.intake-dialog {
  width: min(680px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border: 1px solid rgba(219, 227, 238, .95);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(7, 29, 61, .24);
  transform: translateY(12px) scale(.99);
  transition: transform .18s ease;
}

.intake-overlay.is-open .intake-dialog {
  transform: translateY(0) scale(1);
}

.intake-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 8px 22px;
  border-bottom: 1px solid #edf1f5;
}

.intake-modal-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid #dbe3ee;
  border-radius: 50%;
  background: #fff;
  color: #536174;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.intake-modal-logo {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
}

.intake-modal {
  padding: 22px 28px 28px;
}

.intake-inline .intake-progress-host {
  margin-top: 2px;
}

.contact-page .intake-inline,
.lead-card .intake-inline {
  width: 100%;
}

@media (max-width: 720px) {
  .intake-overlay {
    display: block;
    padding: 0;
    background: #fff;
    backdrop-filter: none;
  }

  .intake-dialog {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: translateX(14px);
  }

  .intake-overlay.is-open .intake-dialog {
    transform: translateX(0);
  }

  .intake-modal-top {
    height: 58px;
    min-height: 58px;
    padding: 6px 16px;
  }

  .intake-modal-logo {
    height: 38px;
  }

  .intake-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }

  .intake-modal {
    height: calc(100dvh - 58px);
    box-sizing: border-box;
    padding: 14px 16px 14px;
  }

  .intake-modal .intake-form {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .intake-modal .intake-progress-host {
    flex: 0 0 auto;
    margin-bottom: 13px;
  }

  .intake-modal .intake-stage {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
  }

  .intake-heading {
    margin-bottom: 11px;
  }

  .intake-heading h2 {
    font-size: 27px;
  }

  .intake-heading p {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.35;
  }

  .intake-context {
    margin-bottom: 10px;
    padding: 9px 11px;
  }

  .intake-context strong {
    font-size: 11px;
  }

  .intake-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 10px;
  }

  .intake-channel-grid,
  .intake-time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .intake-choice {
    min-height: 40px;
    padding: 7px 9px;
    font-size: 10.5px;
  }

  .intake-field {
    gap: 5px;
    margin-bottom: 10px;
  }

  .intake-field-label,
  .intake-group-label {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .intake-field input {
    height: 43px;
    font-size: 12px;
  }

  .intake-field textarea {
    min-height: 56px;
    max-height: 66px;
    font-size: 12px;
    resize: none;
  }

  .intake-time-grid {
    margin-bottom: 8px;
  }

  .intake-consent {
    margin: 6px 0 8px;
    font-size: 9px;
    line-height: 1.3;
  }

  .intake-actions {
    margin-top: auto;
    padding-top: 8px;
  }

  .intake-actions .button {
    min-height: 44px;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }

  .intake-status {
    margin-top: 7px;
    font-size: 10px;
  }

  .intake-success {
    flex: 1 1 auto;
    align-content: center;
    min-height: 0;
    padding: 16px 0;
  }
}

@media (max-width: 420px) and (max-height: 680px) {
  .intake-modal-top {
    height: 52px;
    min-height: 52px;
  }

  .intake-modal-logo {
    height: 34px;
  }

  .intake-modal {
    height: calc(100dvh - 52px);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .intake-progress-host {
    margin-bottom: 9px !important;
  }

  .intake-heading h2 {
    font-size: 23px;
  }

  .intake-heading p {
    display: none;
  }

  .intake-context {
    padding: 7px 9px;
  }

  .intake-choice {
    min-height: 36px;
    padding: 6px 8px;
    font-size: 10px;
  }

  .intake-field input {
    height: 39px;
  }

  .intake-field textarea {
    min-height: 48px;
    max-height: 48px;
  }

  .intake-consent {
    margin-top: 3px;
    margin-bottom: 4px;
  }

  .intake-actions .button {
    min-height: 40px;
  }
}


/* UKLTD.UK ORDER / CONTACT INTAKE ONLY — 2026 GLASS UI */
.intake-component {
  --intake-line: #c7d0dc;
  --intake-line-strong: #adb9c7;
  --intake-glass: rgba(255,255,255,.84);
  --intake-shadow: 0 22px 62px rgba(30,48,73,.14);
  --intake-shadow-soft: 0 10px 28px rgba(30,48,73,.10);
  --intake-shadow-field: inset 0 1px 0 rgba(255,255,255,.80), 0 4px 12px rgba(30,48,73,.07);
}

.intake-inline .intake-form,
.intake-dialog {
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(246,249,252,.86));
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

.lead-card .intake-inline .intake-form,
.contact-page .intake-inline .intake-form {
  padding: 19px;
  border: 1px solid var(--intake-line-strong);
  border-radius: 12px;
  box-shadow: var(--intake-shadow-soft);
}

.intake-overlay {
  background:
    radial-gradient(circle at 50% 0%, rgba(145,169,202,.18), transparent 44%),
    rgba(7,29,61,.66);
  -webkit-backdrop-filter: blur(9px) saturate(115%);
  backdrop-filter: blur(9px) saturate(115%);
}

.intake-dialog {
  border: 1px solid rgba(166,178,192,.96);
  box-shadow:
    0 38px 110px rgba(7,29,61,.30),
    0 10px 30px rgba(30,48,73,.15),
    inset 0 1px 0 rgba(255,255,255,.90);
}

.intake-modal-top {
  min-height: 60px;
  padding: 7px 20px;
  border-bottom: 1px solid #cbd4df;
  background: rgba(255,255,255,.76);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
  box-shadow: 0 6px 18px rgba(30,48,73,.06);
}

.intake-modal-close {
  border: 1px solid #b6c0cd;
  background: rgba(247,249,252,.94);
  box-shadow: 0 4px 12px rgba(30,48,73,.08);
}

.intake-progress-host {
  margin-bottom: 16px;
}

.intake-progress {
  gap: 7px;
}

.intake-progress > span {
  padding-bottom: 7px;
  font-size: 11px;
}

.intake-heading {
  margin-bottom: 13px;
}

.intake-heading h2 {
  font-size: clamp(29px, 3.2vw, 38px);
  line-height: 1.04;
}

.intake-heading p {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.36;
}

.intake-context {
  margin-bottom: 12px;
  padding: 10px 13px;
  border: 1px solid #bcc7d4;
  border-left: 4px solid var(--intake-blue);
  background: rgba(241,245,250,.94);
  box-shadow: var(--intake-shadow-field);
}

.intake-context span {
  font-size: 11px;
}

.intake-context strong {
  font-size: 14px;
}

.intake-choice-grid {
  gap: 7px;
}

.intake-service-grid {
  margin-bottom: 12px;
}

.intake-choice {
  min-height: 47px;
  padding: 8px 12px;
  border: 1px solid var(--intake-line-strong);
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(248,250,252,.98), rgba(238,241,245,.98));
  box-shadow: var(--intake-shadow-field);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
}

.intake-choice:hover {
  border-color: #8fa4be;
  background:
    linear-gradient(180deg, #fbfcfe, #eef3f8);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.88),
    0 7px 18px rgba(30,48,73,.10);
}

.intake-choice.is-selected {
  border-color: #78a0ee;
  background:
    linear-gradient(180deg, rgba(242,247,255,.99), rgba(227,238,255,.97));
  box-shadow:
    inset 0 0 0 1px rgba(22,93,255,.09),
    0 7px 18px rgba(22,93,255,.12);
}

.intake-field {
  gap: 5px;
  margin-bottom: 11px;
}

.intake-field-label,
.intake-group-label {
  margin-bottom: 4px;
  color: #4d5e72;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.18;
}

.intake-field input,
.intake-field textarea {
  width: 100%;
  border: 1px solid var(--intake-line-strong);
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(244,246,249,.99), rgba(235,239,243,.99));
  color: #102033;
  box-shadow: var(--intake-shadow-field);
  font-size: 15px;
  font-weight: 500;
}

.intake-field input {
  height: 49px;
  padding: 0 14px;
}

.intake-field textarea {
  min-height: 70px;
  padding: 10px 14px;
  line-height: 1.36;
}

.intake-field input::placeholder,
.intake-field textarea::placeholder {
  color: #8492a3;
  opacity: 1;
}

.intake-field input:hover,
.intake-field textarea:hover {
  border-color: #97a6b8;
  background:
    linear-gradient(180deg, rgba(249,250,252,.99), rgba(240,243,247,.99));
}

.intake-channel-grid,
.intake-time-grid {
  gap: 7px;
}

.intake-time-grid {
  margin-bottom: 10px;
}

.intake-consent {
  margin: 3px 0 11px;
  color: #5f6e80;
  font-size: 11px;
  line-height: 1.33;
}

.intake-consent input {
  width: 16px;
  height: 16px;
}

.intake-actions {
  gap: 9px;
  margin-top: 12px;
}

.intake-actions .button {
  min-height: 47px;
  box-shadow: 0 8px 20px rgba(30,48,73,.12);
}

.intake-status {
  margin-top: 8px;
  font-size: 12px;
}

.intake-success {
  min-height: 290px;
  padding: 18px 0;
}

.intake-success-mark {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  background: rgba(240,249,246,.90);
  box-shadow: 0 9px 24px rgba(8,122,91,.11);
  font-size: 24px;
}

.intake-success h2 {
  font-size: clamp(31px, 4vw, 42px);
}

.intake-success p {
  margin: 9px 0 18px;
  font-size: 14px;
  line-height: 1.46;
}

@media (max-width: 720px) {
  .intake-overlay {
    background:
      linear-gradient(145deg, #f8fafc 0%, #edf1f5 100%);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .intake-dialog {
    background:
      linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,247,250,.97));
    box-shadow: none;
  }

  .intake-modal-top {
    min-height: 54px;
    height: 54px;
    padding: 5px 14px;
  }

  .intake-modal-logo {
    height: 37px;
  }

  .intake-modal {
    height: calc(100dvh - 54px);
    padding: 11px 14px 12px;
  }

  .intake-modal .intake-progress-host {
    margin-bottom: 9px;
  }

  .intake-heading {
    margin-bottom: 8px;
  }

  .intake-heading h2 {
    font-size: 28px;
  }

  .intake-heading p {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.30;
  }

  .intake-context {
    margin-bottom: 8px;
    padding: 7px 10px;
  }

  .intake-context span {
    font-size: 10px;
  }

  .intake-context strong {
    font-size: 12px;
  }

  .intake-service-grid {
    gap: 5px;
    margin-bottom: 8px;
  }

  .intake-channel-grid,
  .intake-time-grid {
    gap: 5px;
  }

  .intake-choice {
    min-height: 39px;
    padding: 6px 8px;
    font-size: 11.5px;
    line-height: 1.15;
  }

  .intake-field {
    gap: 4px;
    margin-bottom: 8px;
  }

  .intake-field-label,
  .intake-group-label {
    margin-bottom: 3px;
    font-size: 11px;
  }

  .intake-field input {
    height: 43px;
    padding: 0 11px;
    font-size: 14px;
  }

  .intake-field textarea {
    min-height: 54px;
    max-height: 58px;
    padding: 8px 11px;
    font-size: 14px;
    resize: none;
  }

  .intake-time-grid {
    margin-bottom: 6px;
  }

  .intake-consent {
    margin: 4px 0 6px;
    font-size: 10px;
    line-height: 1.25;
  }

  .intake-actions {
    margin-top: auto;
    padding-top: 6px;
  }

  .intake-actions .button {
    min-height: 43px;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .intake-status {
    margin-top: 5px;
    font-size: 10.5px;
  }
}

@media (max-width: 420px) and (max-height: 680px) {
  .intake-modal-top {
    min-height: 50px;
    height: 50px;
  }

  .intake-modal-logo {
    height: 33px;
  }

  .intake-modal {
    height: calc(100dvh - 50px);
    padding: 8px 12px 9px;
  }

  .intake-modal .intake-progress-host {
    margin-bottom: 6px;
  }

  .intake-heading {
    margin-bottom: 6px;
  }

  .intake-heading h2 {
    font-size: 24px;
  }

  .intake-heading p {
    display: none;
  }

  .intake-context {
    margin-bottom: 6px;
    padding: 6px 8px;
  }

  .intake-choice {
    min-height: 35px;
    padding: 5px 7px;
    font-size: 10.5px;
  }

  .intake-field {
    margin-bottom: 6px;
  }

  .intake-field input {
    height: 39px;
    font-size: 13.5px;
  }

  .intake-field textarea {
    min-height: 45px;
    max-height: 45px;
    font-size: 13.5px;
  }

  .intake-consent {
    margin-top: 2px;
    margin-bottom: 3px;
    font-size: 9.5px;
  }

  .intake-actions .button {
    min-height: 39px;
  }
}


/* UKLTD.UK intake icon pills — service and contact choice refinement */
.intake-service-grid,
.intake-channel-grid,
.intake-time-grid {
  gap: 9px;
}

.intake-choice {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 50px;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0;
}

.intake-choice-icon {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(231,237,244,.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    0 4px 10px rgba(30,48,73,.08);
  color: #48627f;
}

.intake-choice-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.intake-choice-icon svg path,
.intake-choice-icon svg circle,
.intake-choice-icon svg rect,
.intake-choice-icon svg line,
.intake-choice-icon svg polyline,
.intake-choice-icon svg polygon,
.intake-choice-icon svg ellipse {
  vector-effect: non-scaling-stroke;
}

.intake-choice-text {
  display: inline-block;
  text-align: left;
}

.intake-choice:hover .intake-choice-icon {
  color: #355b93;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.94),
    0 6px 14px rgba(30,48,73,.11);
}

.intake-choice.is-selected .intake-choice-icon {
  color: #1c5dff;
  background: linear-gradient(180deg, rgba(250,252,255,.99), rgba(227,238,255,.99));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.96),
    0 6px 14px rgba(22,93,255,.15);
}

@media (max-width: 720px) {
  .intake-service-grid,
  .intake-channel-grid,
  .intake-time-grid {
    gap: 6px;
  }

  .intake-choice {
    min-height: 41px;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
  }

  .intake-choice-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .intake-choice-icon svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.75;
  }
}

@media (max-width: 420px) and (max-height: 680px) {
  .intake-choice {
    min-height: 37px;
    gap: 7px;
    padding: 5px 10px;
  }

  .intake-choice-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .intake-choice-icon svg {
    width: 13px;
    height: 13px;
  }
}


/* UKLTD.UK DESKTOP HERO RIGHT COLUMN — STAGE 1 / GOLDEN RATIO */
/*
   Reference vertical: right edge of the header Buy company CTA.
   Main content shell remains unchanged; only the Hero right-side blocks
   and the lower CTA-band action are shifted into the desktop right wing.
*/
@media (min-width: 981px) {
  .catalog-hero-grid > .price-ticket,
  .catalog-hero-grid > .digital-note,
  .interior-grid > .highlight-list,
  .guide-hero-grid > .guide-cover {
    box-sizing: border-box;
    justify-self: end;
    border-radius: 4px !important;
  }

  .catalog-hero-grid > .price-ticket,
  .catalog-hero-grid > .digital-note,
  .interior-grid > .highlight-list {
    width: 360px;
    max-width: 360px;
    aspect-ratio: 1.618 / 1;
  }

  .guide-hero-grid > .guide-cover {
    width: 360px !important;
    max-width: 360px !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1.618 / 1;
    transform: none !important;
  }

  .cta-band > .shell > .button {
    position: relative;
  }
}

/* 981–1228: nav shell has 6px side margin; content shell has 24px. */
@media (min-width: 981px) and (max-width: 1228px) {
  .catalog-hero-grid > .price-ticket,
  .catalog-hero-grid > .digital-note,
  .interior-grid > .highlight-list,
  .guide-hero-grid > .guide-cover,
  .cta-band > .shell > .button {
    position: relative;
    left: 18px;
  }
}

/* 1229–1279: content shell is fixed at 1180px; nav shell remains viewport - 12px. */
@media (min-width: 1229px) and (max-width: 1279px) {
  .catalog-hero-grid > .price-ticket,
  .catalog-hero-grid > .digital-note,
  .interior-grid > .highlight-list,
  .guide-hero-grid > .guide-cover,
  .cta-band > .shell > .button {
    position: relative;
    left: calc(50vw - 596px);
  }
}

/* 1280–1495: header width is viewport - 16px; content remains 1180px. */
@media (min-width: 1280px) and (max-width: 1495px) {
  .catalog-hero-grid > .price-ticket,
  .catalog-hero-grid > .digital-note,
  .interior-grid > .highlight-list,
  .guide-hero-grid > .guide-cover,
  .cta-band > .shell > .button {
    position: relative;
    left: calc(50vw - 598px);
  }
}

/* 1496px+: header/nav shell is capped at 1480px, 150px wider per side than the 1180px content shell. */
@media (min-width: 1496px) {
  .catalog-hero-grid > .price-ticket,
  .catalog-hero-grid > .digital-note,
  .interior-grid > .highlight-list,
  .guide-hero-grid > .guide-cover,
  .cta-band > .shell > .button {
    position: relative;
    left: 150px;
  }

  .catalog-hero-grid > .price-ticket,
  .catalog-hero-grid > .digital-note,
  .interior-grid > .highlight-list,
  .guide-hero-grid > .guide-cover {
    width: 420px !important;
    max-width: 420px !important;
    aspect-ratio: 1.618 / 1;
  }
}

/* From 1280px the intended desktop golden-ratio card is 420 × ~260px. */
@media (min-width: 1280px) and (max-width: 1495px) {
  .catalog-hero-grid > .price-ticket,
  .catalog-hero-grid > .digital-note,
  .interior-grid > .highlight-list,
  .guide-hero-grid > .guide-cover {
    width: 420px !important;
    max-width: 420px !important;
    aspect-ratio: 1.618 / 1;
  }
}


/* UKLTD.UK DESKTOP GLOBAL ALIGNMENT — STAGE 2 */
/*
   Desktop frame:
   left vertical  = left edge of UKLTD.UK logo;
   right vertical = right edge of header Buy company CTA.
   Mobile/tablet <=980px remain on the existing responsive layout.
*/
@media (min-width: 981px) {
  /* Match all main site shells to the actual desktop header frame. */
  .shell {
    width: min(1480px, calc(100% - 16px)) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Stage-1 right-wing offsets are no longer needed because the shell itself is now aligned. */
  .catalog-hero-grid > .price-ticket,
  .catalog-hero-grid > .digital-note,
  .interior-grid > .highlight-list,
  .guide-hero-grid > .guide-cover,
  .cta-band > .shell > .button {
    left: 0 !important;
  }

  /* Hero: expand the left text column; preserve Stage-1 right block size. */
  .catalog-hero-grid,
  .interior-grid,
  .guide-hero-grid {
    width: 100%;
    justify-content: stretch !important;
    grid-template-columns: minmax(0, 1fr) 420px !important;
    gap: 90px !important;
  }

  .home-hero .hero-grid {
    width: min(1480px, calc(100% - 16px)) !important;
    grid-template-columns: minmax(0, 1fr) 420px !important;
    gap: 90px !important;
  }

  .catalog-hero-grid > :first-child,
  .interior-grid > :first-child,
  .guide-hero-grid > :first-child,
  .home-hero .hero-copy {
    min-width: 0;
    max-width: none !important;
  }

  .catalog-hero h1,
  .interior-hero h1,
  .guide-hero h1,
  .home-hero .hero-copy h1,
  .contact-page h1,
  .catalog-hero .hero-intro,
  .interior-hero .hero-intro,
  .guide-hero .hero-intro,
  .home-hero .hero-intro,
  .contact-page .hero-intro {
    max-width: none !important;
  }

  /* Main two-column sales layout: old right column was ~410px at the 1180px shell. */
  .question-grid {
    grid-template-columns: minmax(0, 1fr) 410px !important;
    gap: 90px !important;
    justify-content: stretch !important;
  }

  /* Contact form remains 540px; all extra width goes to the left copy. */
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) 540px !important;
    gap: 90px !important;
    justify-content: stretch !important;
  }

  /* Existing fixed side navigation widths are preserved; reading area expands. */
  .content-columns {
    grid-template-columns: 250px minmax(0, 1fr) !important;
    gap: 80px !important;
    justify-content: stretch !important;
  }

  .guide-layout {
    grid-template-columns: 260px minmax(0, 1fr) !important;
    gap: 80px !important;
    justify-content: stretch !important;
  }

  .info-article {
    grid-template-columns: 230px minmax(0, 1fr) !important;
    gap: 80px !important;
    justify-content: stretch !important;
  }

  /* H2 uses the full newly-expanded reading column instead of old narrow caps. */
  .article-content h2,
  .question-feature h2,
  .longform h2,
  .faq-section h2,
  .related-services h2,
  .cta-band h2,
  .price-group-head h2,
  .domain-check h2 {
    width: 100% !important;
    max-width: none !important;
  }

  /* Desktop reading copy requested as justified text; cards/sidebars/Hero are excluded. */
  .article-content > section > p,
  .question-feature > p:not(.eyebrow),
  .longform > section > p:not(.eyebrow),
  .info-article > article p,
  .legal-page .legal-shell p:not(.eyebrow),
  .prices-page .price-group-head p,
  .source-note p {
    text-align: justify !important;
    text-justify: inter-word;
  }

  /* Footer explicitly consumes the same two desktop verticals. */
  .site-footer .footer-brand-row,
  .site-footer .footer-grid,
  .site-footer .footer-legal-row {
    width: min(1480px, calc(100% - 16px)) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Header uses a slightly wider frame in the existing 981–1279 desktop breakpoint. Match it exactly. */
@media (min-width: 981px) and (max-width: 1279px) {
  .shell,
  .home-hero .hero-grid,
  .site-footer .footer-brand-row,
  .site-footer .footer-grid,
  .site-footer .footer-legal-row {
    width: calc(100% - 12px) !important;
  }

  /* Preserve Stage-1 compact right blocks on narrower desktop. */
  .catalog-hero-grid,
  .interior-grid,
  .guide-hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 60px !important;
  }

  .home-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 60px !important;
  }

  .question-grid {
    grid-template-columns: minmax(0, 1fr) 340px !important;
    gap: 60px !important;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr) 500px !important;
    gap: 60px !important;
  }

  .content-columns,
  .guide-layout,
  .info-article {
    gap: 60px !important;
  }
}


/* UKLTD.UK FOOTER REFINEMENT + MOBILE LANGUAGE POSITION */
@media (min-width: 1280px) {
  .site-footer .footer-brand-row {
    grid-template-columns: 150px minmax(0, 1fr) clamp(124px, calc((100vw - 1180px) / 2), 150px) !important;
    gap: 38px !important;
    align-items: center !important;
  }

  .site-footer .footer-brand-row p {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    text-align: justify !important;
    text-justify: inter-word;
  }

  .site-footer .footer-brand-row .button.primary {
    width: clamp(124px, calc((100vw - 1180px) / 2), 150px) !important;
    min-width: 124px !important;
    min-height: 50px !important;
    justify-self: end !important;
    padding: 11px 8px !important;
    font-size: 15px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }
}

@media (min-width: 981px) and (max-width: 1279px) {
  .site-footer .footer-brand-row {
    grid-template-columns: 150px minmax(0, 1fr) auto !important;
    gap: 28px !important;
    align-items: center !important;
  }

  .site-footer .footer-brand-row p {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-align: justify !important;
    text-justify: inter-word;
  }

  .site-footer .footer-brand-row .button.primary {
    width: auto !important;
    min-width: 120px !important;
    min-height: 50px !important;
    justify-self: end !important;
    padding: 11px 7px !important;
    font-size: 15px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 980px) {
  .site-header .nav-shell {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }

  .site-header .language-menu {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin: 0 8px 0 auto !important;
    padding: 0 !important;
    border-left: 0 !important;
  }

  .site-header .language-menu select {
    min-height: 38px;
    padding: 0 4px !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--navy) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
  }

  .site-header .language-menu .globe {
    display: inline-block !important;
    font-size: 13px !important;
  }

  .site-header .menu-button {
    flex: 0 0 42px !important;
    margin: 0 !important;
  }
}

@media (max-width: 420px) {
  .site-header .language-menu {
    margin-right: 5px !important;
  }

  .site-header .language-menu .globe {
    display: none !important;
  }

  .site-header .language-menu select {
    font-size: 13px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
}


/* UKLTD.UK SITE SEARCH 2026 */
.site-search-trigger {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--blue);
}

.site-search-trigger svg,
.site-search-action svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-search-trigger svg { width: 19px; height: 19px; }
.site-search-trigger:hover { background: #eef4ff; }

.site-search-row {
  width: min(1480px, calc(100% - 16px));
  max-height: 0;
  margin: 0 auto;
  overflow: hidden;
  opacity: 0;
  display: flex;
  justify-content: center;
  transition: max-height 180ms ease, opacity 150ms ease, padding 180ms ease;
}

.site-search-open .site-search-row {
  max-height: 82px;
  padding: 4px 0 16px;
  overflow: visible;
  opacity: 1;
}

.site-search-bar {
  width: 60%;
  max-width: 900px;
  min-width: 620px;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 5px 6px 5px 7px;
  border: 1px solid #b9c5d3;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,248,251,.97));
  box-shadow: 0 13px 32px rgba(28,48,76,.12), inset 0 1px 0 rgba(255,255,255,.95);
}

.site-search-plus {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #c3ccd8;
  border-radius: 50%;
  background: linear-gradient(180deg,#fbfcfd,#e7ebef);
  color: #52657d;
  box-shadow: inset 0 1px 0 white, 0 3px 9px rgba(28,48,76,.08);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: 140ms ease;
}

.site-search-plus.is-active {
  border-color: #75a0fa;
  color: var(--blue);
  background: #eef4ff;
}

.site-search-input {
  min-width: 0;
  height: 42px;
  flex: 1 1 auto;
  padding: 0 4px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #102033;
  font-size: 15px;
  font-weight: 500;
}
.site-search-input::-webkit-search-cancel-button { display: none; }
.site-search-input::placeholder { color: #8794a5; opacity: 1; }

.site-search-action {
  width: 154px;
  height: 42px;
  flex: 0 0 154px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid #aeb9c6;
  border-radius: 999px;
  background: linear-gradient(180deg,#fafbfc 0%,#d8dee5 48%,#f2f4f6 100%);
  color: #243a58;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 5px 12px rgba(28,48,76,.10);
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: width 160ms ease, flex-basis 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, transform 130ms ease;
}
.site-search-action:hover { transform: translateY(-1px); }
.site-search-action svg { width: 16px; height: 16px; flex: 0 0 16px; }
.site-search-bar.has-query .site-search-action {
  width: 42px;
  flex-basis: 42px;
  padding: 0;
  border-color: var(--blue);
  background: var(--blue);
  color: white;
  box-shadow: 0 7px 18px rgba(22,93,255,.24);
}
.site-search-bar.has-query .site-search-action span {
  width: 0;
  overflow: hidden;
  opacity: 0;
}

.site-search-popover {
  position: absolute;
  z-index: 120;
  top: 100%;
  left: 50%;
  width: 60%;
  max-width: 900px;
  min-width: 620px;
  transform: translate(-50%, 6px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  padding: 0;
  border: 1px solid #c5cfdb;
  border-radius: 18px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px) saturate(120%);
  box-shadow: 0 24px 65px rgba(13,33,62,.18), inset 0 1px 0 white;
  transition: opacity 130ms ease, transform 130ms ease, visibility 130ms ease;
}
.site-search-open .site-search-popover.has-content {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 10px);
}

.site-search-chips {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  padding: 9px 11px 0;
}
.site-search-chips.is-visible { display: flex; }
.site-search-chip {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border: 1px solid #cad3df;
  border-radius: 999px;
  background: #f4f6f9;
  color: #536276;
  font-size: 11px;
  font-weight: 600;
}
.site-search-chip b { color: #8190a2; font-size: 13px; font-weight: 500; }

.site-search-filter-menu {
  display: none;
  padding: 11px;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 6px;
  border-bottom: 1px solid #e3e8ef;
}
.site-search-filter-menu.is-open { display: grid; }
.site-search-filter-title {
  grid-column: 1 / -1;
  padding: 1px 5px 5px;
  color: #778899;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.site-search-filter-option {
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid #d4dce6;
  border-radius: 999px;
  background: #f7f9fb;
  color: #34475f;
  font-size: 11.5px;
  font-weight: 600;
  text-align: left;
}
.site-search-filter-option.is-selected {
  border-color: #78a0ee;
  background: #edf4ff;
  color: #165dff;
}

.site-search-results { padding: 7px; }
.site-search-result {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 12px;
  border-radius: 11px;
  transition: background 80ms ease, transform 80ms ease;
}
.site-search-result:hover { background: #f1f5fa; transform: translateX(2px); }
.site-search-result + .site-search-result { border-top: 1px solid #edf1f5; }
.site-search-result.is-promoted {
  background: linear-gradient(90deg,#f5f8fc,#eef4ff);
  border: 1px solid #d7e2f2;
}
.site-search-result-copy { min-width: 0; display: grid; gap: 3px; }
.site-search-result strong {
  color: #233850;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}
.site-search-result span {
  display: -webkit-box;
  overflow: hidden;
  color: #718095;
  font-size: 11.5px;
  line-height: 1.35;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.site-search-result > b { color: var(--blue); font-size: 17px; font-weight: 500; }
.site-search-promo-label {
  color: #165dff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-search-empty { padding: 17px 14px; color: #778899; font-size: 12px; }

@media (max-width: 980px) {
  .site-header .language-menu.is-search-hidden { display: none !important; }

  .site-search-row { display: none !important; }

  .site-header.site-search-open .nav-shell {
    gap: 7px !important;
  }

  .site-header.site-search-open .brand { flex: 0 0 auto !important; }
  .site-header.site-search-open .menu-button { flex: 0 0 42px !important; }

  .site-search-bar {
    width: auto;
    max-width: none;
    min-width: 0;
    min-height: 44px;
    flex: 1 1 auto;
    gap: 4px;
    padding: 3px 4px;
    border-radius: 999px;
  }

  .site-search-plus {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    font-size: 19px;
  }

  .site-search-input {
    width: 0;
    min-width: 20px;
    height: 36px;
    padding: 0 2px;
    font-size: 14px;
  }

  .site-search-input::placeholder { color: transparent; }

  .site-search-action {
    width: 98px;
    height: 34px;
    flex-basis: 98px;
    gap: 5px;
    padding: 0 8px;
    font-size: 10.5px;
  }
  .site-search-action svg { width: 14px; height: 14px; flex-basis: 14px; }
  .site-search-bar.has-query .site-search-action {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .site-search-popover,
  .site-search-open .site-search-popover.has-content {
    top: 100%;
    left: 14px;
    right: 14px;
    width: auto;
    max-width: none;
    min-width: 0;
    transform: translateY(6px);
  }
  .site-search-open .site-search-popover.has-content { transform: translateY(8px); }

  .site-search-filter-menu { grid-template-columns: 1fr; max-height: 300px; overflow: auto; }
  .site-search-filter-option { font-size: 11px; }
  .site-search-result { min-height: 58px; padding: 8px 10px; }
  .site-search-result strong { font-size: 12px; }
  .site-search-result span { font-size: 10.5px; -webkit-line-clamp: 2; }
}

@media (max-width: 420px) {
  .site-header.site-search-open .brand img { width: 112px !important; }
  .site-header.site-search-open .nav-shell { gap: 5px !important; }
  .site-search-bar { padding-left: 3px; padding-right: 3px; }
  .site-search-plus { width: 30px; height: 30px; flex-basis: 30px; }
  .site-search-action { width: 88px; flex-basis: 88px; padding-inline: 6px; font-size: 10px; }
  .site-search-bar.has-query .site-search-action { width: 32px; height: 32px; flex-basis: 32px; }
}


/* UKLTD.UK SEARCH FIX + MOBILE HEADER COMPACT 2026 */
.site-search-bar {
  position: relative;
  isolation: isolate;
  background-color: rgba(247,249,251,.98);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='64' viewBox='0 0 640 64'%3E%3Cdefs%3E%3ClinearGradient id='m' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%23ffffff' stop-opacity='.60'/%3E%3Cstop offset='.30' stop-color='%23cbd3dc' stop-opacity='.16'/%3E%3Cstop offset='.52' stop-color='%23ffffff' stop-opacity='.76'/%3E%3Cstop offset='.72' stop-color='%23b8c2cd' stop-opacity='.12'/%3E%3Cstop offset='1' stop-color='%23ffffff' stop-opacity='.55'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='640' height='64' rx='32' fill='url(%23m)'/%3E%3Cpath d='M32 47 C145 17 238 52 359 22 S531 44 608 17' fill='none' stroke='%23ffffff' stroke-opacity='.48' stroke-width='1'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(239,243,247,.98));
  background-size: 100% 100%, 100% 100%;
  background-repeat: no-repeat;
}

.site-search-action {
  position: relative;
  overflow: hidden;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='48' viewBox='0 0 220 48'%3E%3Cdefs%3E%3ClinearGradient id='s' x1='0' x2='1'%3E%3Cstop offset='0' stop-color='%23fdfefe'/%3E%3Cstop offset='.30' stop-color='%23cdd4dc'/%3E%3Cstop offset='.52' stop-color='%23f9fafb'/%3E%3Cstop offset='.76' stop-color='%23c6ced7'/%3E%3Cstop offset='1' stop-color='%23f7f8fa'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='220' height='48' rx='24' fill='url(%23s)'/%3E%3Cpath d='M-25 40 L60 -5 M38 54 L123 -4 M110 54 L195 -4 M178 54 L245 5' stroke='%23ffffff' stroke-opacity='.23' stroke-width='12'/%3E%3C/svg%3E"),
    linear-gradient(180deg,#fafbfc 0%,#d8dee5 48%,#f2f4f6 100%);
  background-size: 150% 100%, 100% 100%;
  background-position: 50% 0, 0 0;
  background-repeat: no-repeat;
}

.site-search-action.is-lustre:not(:disabled) {
  animation: ukltd-search-lustre 1.55s cubic-bezier(.22,.65,.24,1) 1;
}

@keyframes ukltd-search-lustre {
  0%   { background-position: 145% 0, 0 0; box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 5px 12px rgba(28,48,76,.10); }
  48%  { box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 7px 18px rgba(92,109,130,.17); }
  100% { background-position: -45% 0, 0 0; box-shadow: inset 0 1px 0 rgba(255,255,255,.96), 0 5px 12px rgba(28,48,76,.10); }
}

.site-search-bar.has-query .site-search-action {
  background-image: none;
}

@media (max-width: 980px) {
  .site-header .nav-shell {
    width: 100% !important;
    max-width: none !important;
    min-height: 64px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding-left: 3px !important;
    padding-right: 3px !important;
    gap: 3px !important;
  }

  .site-header .brand {
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
  }

  .site-header .brand img {
    display: block !important;
    width: 122px !important;
    height: auto !important;
  }

  .site-header .language-menu {
    display: flex !important;
    align-items: center !important;
    gap: 1px !important;
    margin: 0 1px 0 auto !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .site-header .language-menu.is-search-hidden {
    display: none !important;
  }

  .site-header .language-menu select {
    width: 34px !important;
    min-width: 34px !important;
    height: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background: transparent !important;
    background-image: none !important;
    color: var(--navy) !important;
    font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 38px !important;
    text-align: center !important;
    text-align-last: center !important;
  }

  .site-search-trigger {
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .site-search-trigger svg {
    width: 19px !important;
    height: 19px !important;
  }

  .site-header .menu-button {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    margin: 0 1px 0 0 !important;
  }

  /* Search remains completely hidden until the magnifier is clicked. */
  .site-search-row {
    display: none !important;
  }

  .site-header.site-search-open .nav-shell {
    gap: 3px !important;
  }

  .site-header.site-search-open .brand {
    flex: 0 0 auto !important;
  }

  .site-header.site-search-open .menu-button {
    flex: 0 0 42px !important;
  }

  .site-search-bar {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    min-height: 44px !important;
    flex: 1 1 0 !important;
    gap: 3px !important;
    margin: 0 1px !important;
    padding: 3px 4px !important;
  }

  .site-search-plus {
    width: 31px !important;
    height: 31px !important;
    flex: 0 0 31px !important;
  }

  .site-search-input {
    width: 0 !important;
    min-width: 18px !important;
    height: 36px !important;
    padding: 0 2px !important;
    font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
  }

  .site-search-input::placeholder {
    color: #8b97a6 !important;
    opacity: 1 !important;
  }

  .site-search-action {
    width: 94px !important;
    height: 34px !important;
    flex: 0 0 94px !important;
    gap: 4px !important;
    padding: 0 7px !important;
    font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
  }

  .site-search-bar.has-query .site-search-action {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
    padding: 0 !important;
  }
}

@media (max-width: 420px) {
  .site-header .nav-shell {
    padding-left: 2px !important;
    padding-right: 2px !important;
    gap: 2px !important;
  }

  .site-header .language-menu {
    margin-right: 0 !important;
  }

  .site-header .brand img {
    width: 116px !important;
  }

  .site-header.site-search-open .brand img {
    width: 108px !important;
  }

  .site-search-bar {
    margin: 0 !important;
    padding-left: 3px !important;
    padding-right: 3px !important;
  }

  .site-search-action {
    width: 86px !important;
    flex-basis: 86px !important;
    padding-inline: 5px !important;
    font-size: 10.5px !important;
    font-weight: 400 !important;
  }
}

@media (max-width: 360px) {
  .site-header .brand img {
    width: 108px !important;
  }

  .site-header.site-search-open .brand img {
    width: 100px !important;
  }

  .site-header .language-menu select {
    width: 30px !important;
    min-width: 30px !important;
    font-size: 12px !important;
  }

  .site-search-trigger {
    width: 34px !important;
    flex-basis: 34px !important;
  }

  .site-search-action {
    width: 80px !important;
    flex-basis: 80px !important;
    font-size: 10px !important;
  }
}


/* UKLTD.UK FINAL CTA / MOBILE HEADER FIX */
/* Lower CTA copy is white on every language and viewport; CTA button keeps its own button colors. */
.cta-band > .shell > div,
.cta-band > .shell > div p,
.cta-band > .shell > div h2,
.cta-band > .shell > div .eyebrow,
.cta-band > .shell > div span {
  color: #ffffff !important;
}

/* Smartphone/tablet header only: left logo inset matches its visual top inset. */
@media (max-width: 980px) {
  .site-header .nav-shell {
    padding-left: 10px !important;
  }
}

@media (max-width: 420px) {
  .site-header .nav-shell {
    padding-left: 11px !important;
  }
}

@media (max-width: 360px) {
  .site-header .nav-shell {
    padding-left: 12px !important;
  }
}


/* UKLTD.UK PRICE-CARD SERVER DATE */
.price-ticket > span:first-child .price-date-divider {
  color: var(--blue) !important;
  font-weight: 700;
}

.price-ticket > span:first-child .price-server-date {
  color: inherit !important;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.js-server-date-short {
  color: inherit;
  font: inherit;
}

/* UKLTD.UK FOOTER BRAND ROW — CTA TEXT FIT + CENTERED COPY */
@media (min-width: 1280px) {
  .site-footer .footer-brand-row {
    grid-template-columns: 150px minmax(0, 1fr) max-content !important;
    column-gap: 46px !important;
  }

  .site-footer .footer-brand-row p {
    justify-self: center !important;
    align-self: center !important;
    width: 100% !important;
    max-width: none !important;
    padding-inline: 10px !important;
    box-sizing: border-box;
  }

  .site-footer .footer-brand-row .button.primary {
    width: max-content !important;
    min-width: 174px !important;
    max-width: none !important;
    padding: 11px 20px !important;
    justify-content: center !important;
    gap: 10px !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
}

@media (min-width: 981px) and (max-width: 1279px) {
  .site-footer .footer-brand-row {
    grid-template-columns: 150px minmax(0, 1fr) max-content !important;
    column-gap: 32px !important;
  }

  .site-footer .footer-brand-row p {
    justify-self: center !important;
    width: 100% !important;
    max-width: none !important;
    padding-inline: 8px !important;
    box-sizing: border-box;
  }

  .site-footer .footer-brand-row .button.primary {
    width: max-content !important;
    min-width: 168px !important;
    max-width: none !important;
    padding: 11px 18px !important;
    justify-content: center !important;
    gap: 9px !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
}


/* Price-card product labels: concise one-line desktop heading with dynamic date */
@media (min-width: 981px) {
  .price-ticket > span:first-child {
    white-space: nowrap;
    letter-spacing: .07em;
  }
}


/* UKLTD.UK TYPOGRAPHY NORMALIZATION — DESKTOP / SMARTPHONE */
/* Desktop: ordinary text line-height -15%; heading line-height raised 5% from the previous compact setting. */
@media (min-width: 981px) {
  main p:not(.eyebrow):not(.mini-label):not(.intake-status),
  .site-footer p,
  main li {
    line-height: 1.43 !important;
  }

  .article-content > section > p,
  .legal-page p:not(.eyebrow) {
    line-height: 1.55 !important;
  }

  .longform > section > p:not(.eyebrow),
  .question-feature > p:not(.eyebrow) {
    line-height: 1.62 !important;
  }

  .taxc-editorial-card p {
    line-height: 1.51 !important;
  }

  main h1,
  main h2,
  main h3,
  main h4,
  main h5,
  main h6 {
    line-height: .82 !important;
  }

  .hero-copy h1,
  .interior-hero h1,
  .guide-hero h1,
  .contact-page h1,
  .catalog-hero h1 {
    line-height: .78 !important;
  }

  .catalog-card h3,
  .service-link-card h3,
  .related-grid h3,
  .service-promo-card h3 {
    line-height: .88 !important;
  }
}

/* Smartphone/tablet: ordinary text stays at -10%; heading line-height raised 5% from the previous compact setting. */
@media (max-width: 980px) {
  main p:not(.eyebrow):not(.mini-label):not(.intake-status),
  .site-footer p,
  main li {
    line-height: 1.51 !important;
  }

  .article-content > section > p,
  .legal-page p:not(.eyebrow) {
    line-height: 1.64 !important;
  }

  .longform > section > p:not(.eyebrow),
  .question-feature > p:not(.eyebrow) {
    line-height: 1.71 !important;
  }

  .taxc-editorial-card p {
    line-height: 1.55 !important;
  }

  main h1,
  main h2,
  main h3,
  main h4,
  main h5,
  main h6 {
    line-height: .86 !important;
  }

  .hero-copy h1,
  .interior-hero h1,
  .guide-hero h1,
  .contact-page h1,
  .catalog-hero h1 {
    line-height: .83 !important;
  }
}

@media (max-width: 640px) {
  /* Prevent oversized mobile headings from the old 13vw clamp. */
  .hero-copy h1,
  .interior-hero h1,
  .guide-hero h1,
  .contact-page h1,
  .catalog-hero h1 {
    font-size: clamp(32px, 9.4vw, 44px) !important;
    letter-spacing: -.045em !important;
  }

  .screen-section h2,
  .service-body h2,
  .faq-section h2,
  .legal-page h1,
  .longform h2,
  .related-services h2,
  .cta-band h2 {
    font-size: clamp(28px, 8.4vw, 36px) !important;
    letter-spacing: -.035em !important;
  }

  .hero-intro,
  .split-heading > p,
  .portal-subtitle {
    font-size: 15px !important;
  }

  .article-content > section > p,
  .legal-page p:not(.eyebrow),
  .longform > section > p:not(.eyebrow),
  .question-feature > p:not(.eyebrow),
  .taxc-editorial-card p {
    font-size: 15px !important;
  }

  .catalog-card h3,
  .service-link-card h3,
  .related-grid h3,
  .service-promo-card h3,
  .solution-card h3,
  .sector-card h3 {
    font-size: 18px !important;
  }
}


/* Typography coefficient corrections for components with their own baseline. */
@media (min-width: 981px) {
  .site-footer p { line-height: 1.32 !important; }
  .catalog-card p,
  .stat-card p { line-height: 1.32 !important; }
  .service-promo-card p { line-height: 1.45 !important; }
  .portal-subtitle { line-height: 1.36 !important; }

  .intake-component h2 { line-height: 1.04 !important; }
  .intake-component .intake-heading p { line-height: 1.36 !important; }
  .intake-component .intake-success p { line-height: 1.46 !important; }
}

@media (max-width: 980px) {
  .catalog-card p,
  .stat-card p { line-height: 1.40 !important; }
  .service-promo-card p { line-height: 1.53 !important; }
  .portal-subtitle { line-height: 1.44 !important; }

  .intake-component h2 { line-height: 1.04 !important; }
  .intake-component .intake-heading p { line-height: 1.30 !important; }
  .intake-component .intake-success p { line-height: 1.46 !important; }
}
