@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --navy: oklch(28% .08 262);
  --navy-deep: oklch(20% .07 260);
  --blue: oklch(60% .2 255);
  --blue-soft: oklch(72% .14 250);
  --emerald: oklch(68% .15 165);
  --orange: oklch(70% .19 45);
  --orange-hover: oklch(64% .2 42);
  --ink: oklch(22% .04 260);
  --muted: oklch(48% .03 260);
  --border: oklch(92% .01 250);
  --surface-soft: oklch(98.5% .005 250);
  --shadow-soft: 0 1px 2px oklch(20% .05 260 / .04), 0 8px 24px oklch(20% .05 260 / .06);
  --shadow-lift: 0 8px 16px oklch(20% .05 260 / .06), 0 24px 48px oklch(20% .05 260 / .10);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: white; font-family: "Plus Jakarta Sans", system-ui, sans-serif; font-size: 16px; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--navy); letter-spacing: -.03em; line-height: 1.13; }
p { color: var(--muted); }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.sr-only, .sr-only:focus:not(:focus-visible) { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 40; padding: 18px 0; }
.header-inner { min-height: 48px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.header-inner > .brand { grid-column: 1; justify-self: start; }
.header-inner > .header-cta, .header-inner > .mobile-menu { grid-column: 3; justify-self: end; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); font-weight: 800; letter-spacing: -.03em; }
.brand-light { color: white; }
.brand-mark { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: white; font-size: 13px; background: linear-gradient(135deg, var(--blue), #0a78ff); box-shadow: 0 8px 28px oklch(60% .2 255 / .35); }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 30px; grid-column: 2; justify-self: center; }
.desktop-nav > a, .nav-group > a { font-size: 14px; font-weight: 600; color: var(--navy); transition: color .2s ease; }
.on-dark .desktop-nav > a, .on-dark .nav-group > a { color: rgba(255,255,255,.84); }
.desktop-nav a:hover { color: var(--blue); }
.nav-group { position: relative; padding: 12px 0; }
.nav-dropdown { position: absolute; top: 46px; left: 50%; transform: translate(-50%, 8px); width: 240px; padding: 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; background: rgba(19,38,76,.97); box-shadow: var(--shadow-lift); visibility: hidden; opacity: 0; transition: .2s ease; }
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.nav-dropdown a { display: block; padding: 10px 12px; border-radius: 9px; color: white; font-size: 13px; }
.nav-dropdown a:hover { background: rgba(255,255,255,.08); color: white; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 13px 22px; border: 0; border-radius: 12px; font-weight: 700; font-size: 14px; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, #ff7a19, #ff5b09); box-shadow: 0 8px 24px oklch(68% .19 45 / .35); }
.btn-primary:hover { background: linear-gradient(135deg, #ff6a0a, #ed4500); box-shadow: 0 12px 30px oklch(68% .19 45 / .45); }
.btn-ghost-light { color: white; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.25); }
.header-cta { min-height: 42px; padding: 11px 17px; }
.mobile-menu { display: none; }
.mobile-menu summary { position: relative; width: 44px; height: 44px; border: 1px solid #d7e0ec; border-radius: 50%; display: grid; place-items: center; list-style: none; cursor: pointer; background: #fff; transition: border-color .2s ease; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { position: absolute; left: 50%; top: 50%; width: 18px; height: 2px; margin: -1px 0 0 -9px; border-radius: 4px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.mobile-menu summary span:nth-child(1) { transform: translateY(-6px); }
.mobile-menu summary span:nth-child(3) { transform: translateY(6px); }
.mobile-menu[open] summary { border-color: var(--orange); }
.mobile-menu[open] summary span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu[open] summary span:nth-child(2) { opacity: 0; }
.mobile-menu[open] summary span:nth-child(3) { transform: rotate(-45deg); }
.mobile-menu nav { position: fixed; top: 88px; left: 20px; right: 20px; max-height: calc(100vh - 108px); max-height: calc(100dvh - 108px); overflow-y: auto; display: flex; flex-direction: column; padding: 10px; background: #fff; color: var(--navy); border: 1px solid rgba(15,31,60,.06); border-radius: 24px; box-shadow: var(--shadow-lift); }
.mobile-menu nav a { display: block; padding: 9px 14px; border-radius: 12px; color: var(--navy); font-weight: 700; font-size: 16px; line-height: 1.2; }
.mobile-menu nav a:hover { background: rgba(15,31,60,.05); }
.mobile-menu nav .sub-link { padding-top: 6px; padding-bottom: 6px; padding-left: 30px; font-size: 13px; font-weight: 600; color: var(--muted); }
.mobile-menu nav a.mobile-menu-cta { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 46px; margin-top: 6px; padding: 10px 22px; border-radius: 14px; }
body > main, body > footer { transition: filter .2s ease; }
body:has(.mobile-menu[open]) > main, body:has(.mobile-menu[open]) > footer { filter: blur(6px); pointer-events: none; }

.home-hero, .page-hero { position: relative; overflow: hidden; color: white; background: radial-gradient(1200px 600px at 85% -10%, oklch(60% .2 255 / .25), transparent 60%), radial-gradient(900px 500px at -10% 30%, oklch(68% .15 165 / .18), transparent 60%), linear-gradient(var(--navy-deep), oklch(24% .08 262)); }
.home-hero { min-height: 780px; padding: 150px 0 118px; display: flex; align-items: center; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-orb-one { width: 400px; height: 400px; background: oklch(60% .2 255 / .16); top: -180px; right: 4%; }
.hero-orb-two { width: 430px; height: 430px; background: oklch(68% .15 165 / .12); left: -230px; top: 32%; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; }
.hero-copy h1 { color: white; font-size: clamp(48px, 5.3vw, 68px); font-weight: 800; line-height: 1.04; margin: 20px 0 22px; max-width: 700px; }
.gradient-text { display: inline; color: transparent; background: linear-gradient(100deg, var(--blue-soft), var(--blue)); -webkit-background-clip: text; background-clip: text; }
.hero-copy > p { max-width: 650px; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.62; }
.eyebrow { display: inline-block; color: var(--blue); text-transform: uppercase; letter-spacing: .13em; font-weight: 800; font-size: 12px; }
.eyebrow-light { color: var(--blue-soft); }
.dot-eyebrow::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 9px; vertical-align: 2px; background: var(--emerald); box-shadow: 0 0 14px var(--emerald); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 38px; color: rgba(255,255,255,.76); font-size: 12px; font-weight: 600; }
.trust-row span::first-letter { color: var(--emerald); }
.dashboard-wrap { position: relative; }
.dashboard-frame { position: relative; padding: 18px; border-radius: 22px; border: 1px solid oklch(60% .2 255 / .35); background: oklch(16% .08 270 / .65); box-shadow: 0 20px 80px oklch(60% .2 255 / .22); overflow: hidden; }
.dashboard-frame::after { content: ""; position: absolute; inset: auto 10% -36% 10%; height: 48%; background: var(--emerald); filter: blur(70px); opacity: .3; }
.dashboard-frame img { border-radius: 12px; width: 100%; aspect-ratio: 7 / 5; object-fit: cover; }
.floating-stat { position: absolute; z-index: 3; display: grid; grid-template-columns: 36px auto; column-gap: 10px; align-items: center; min-width: 138px; padding: 14px 16px; color: var(--navy); background: rgba(246,247,251,.88); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.65); border-radius: 14px; box-shadow: var(--shadow-lift); }
.floating-stat .stat-icon { grid-row: 1 / 3; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; color: var(--emerald); background: oklch(94% .05 180); font-weight: 800; }
.floating-stat small { font-size: 10px; color: var(--muted); }
.floating-stat strong { font-size: 18px; line-height: 1.1; }
.stat-one { left: -36px; top: 28px; }
.stat-two { right: -20px; bottom: 34px; }
.scroll-cue { position: absolute; z-index: 2; bottom: 24px; left: 50%; transform: translateX(-50%); display: grid; justify-items: center; gap: 3px; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 800; }
.logo-strip { padding: 48px 0; background: var(--surface-soft); border-block: 1px solid var(--border); overflow: hidden; }
.logo-strip p { text-align: center; margin-bottom: 24px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 38px; color: oklch(48% .025 260); font-size: 14px; font-weight: 800; }
.section { padding: 116px 0; }
.soft-section { background: var(--surface-soft); }
.section-heading { margin-bottom: 54px; }
.section-heading h2 { max-width: 720px; margin: 12px 0 16px; font-size: clamp(36px, 4vw, 48px); font-weight: 800; }
.section-heading p { max-width: 660px; font-size: 16px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.split-heading > p, .split-heading > .text-link { margin-bottom: 18px; max-width: 430px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { padding: 26px; min-height: 275px; display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: oklch(60% .2 255 / .3); }
.service-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 24px; border-radius: 12px; color: var(--blue); background: linear-gradient(135deg, oklch(96% .03 245), oklch(93% .045 250)); font-weight: 800; font-size: 12px; }
.service-card h3 { font-size: 18px; margin-bottom: 12px; }
.service-card p { font-size: 13px; line-height: 1.65; }
.service-card a { margin-top: auto; color: var(--blue); font-size: 13px; font-weight: 800; }
.why-section { position: relative; overflow: hidden; color: white; background: var(--navy); }
.why-orb { right: -120px; top: -160px; width: 560px; height: 560px; background: oklch(60% .2 255 / .22); }
.why-grid { position: relative; z-index: 2; }
.section-heading.light h2 { color: white; }
.section-heading.light p { color: rgba(255,255,255,.68); }
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reasons-grid article { padding: 26px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: rgba(255,255,255,.05); }
.reasons-grid article > span { color: var(--emerald); font-size: 12px; font-weight: 800; }
.reasons-grid h3 { margin: 24px 0 10px; color: white; font-size: 18px; }
.reasons-grid p { color: rgba(255,255,255,.62); font-size: 13px; margin-bottom: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; padding-top: 66px; margin-top: 66px; border-top: 1px solid rgba(255,255,255,.12); }
.stats-grid div { text-align: center; }
.stats-grid strong { display: block; color: white; font-size: 32px; }
.count-up-value { min-width: 4ch; font-variant-numeric: tabular-nums; will-change: contents; }
.stats-grid span { color: rgba(255,255,255,.58); font-size: 11px; }
.industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.industry-grid > div { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; padding: 20px; border-radius: 13px; border: 1px solid var(--border); background: white; box-shadow: var(--shadow-soft); }
.industry-grid span { color: var(--blue); font-size: 10px; font-weight: 800; }
.industry-grid strong { font-size: 13px; }
.industry-grid b { color: var(--muted); font-size: 13px; }
.process-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.process-grid article { position: relative; padding: 0 20px; border-left: 1px solid var(--border); }
.process-grid article:last-child { border-right: 1px solid var(--border); }
.process-grid article > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.process-grid h3 { margin: 40px 0 11px; font-size: 17px; }
.process-grid p { font-size: 12px; line-height: 1.65; }
.solutions-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.solution-tabs { display: grid; gap: 8px; }
.solution-tabs button { display: grid; grid-template-columns: 38px 1fr; gap: 14px; width: 100%; padding: 18px; text-align: left; border: 1px solid transparent; border-radius: 13px; color: var(--ink); background: transparent; }
.solution-tabs button > span:first-child { color: var(--blue); font-size: 11px; font-weight: 800; }
.solution-tabs button > span:last-child { display: grid; gap: 5px; }
.solution-tabs strong { font-size: 14px; }
.solution-tabs small { color: var(--muted); font-size: 12px; line-height: 1.5; }
.solution-tabs button.active { background: white; border-color: var(--border); box-shadow: var(--shadow-soft); }
.solution-spotlight { position: relative; overflow: hidden; min-height: 480px; padding: 58px; border-radius: 20px; color: white; background: radial-gradient(circle at 100% 0, oklch(60% .2 255 / .35), transparent 55%), linear-gradient(145deg, var(--navy-deep), var(--navy)); box-shadow: var(--shadow-lift); }
.solution-spotlight h3 { color: white; font-size: 34px; margin: 72px 0 16px; }
.solution-spotlight p { color: rgba(255,255,255,.68); }
.solution-spotlight ul { margin: 28px 0; padding: 0; list-style: none; display: grid; gap: 10px; color: rgba(255,255,255,.8); font-size: 13px; }
.solution-spotlight li::before { content: "✓"; color: var(--emerald); margin-right: 10px; }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.story-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); }
.story-image { position: relative; height: 210px; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-image span { position: absolute; left: 18px; top: 18px; padding: 7px 10px; border-radius: 999px; color: white; background: rgba(19,38,76,.8); backdrop-filter: blur(8px); font-size: 10px; font-weight: 800; }
.story-body { padding: 24px; }
.story-body p { font-size: 12px; }
.story-body > strong { display: block; padding: 13px 0; color: var(--emerald); font-size: 13px; }
.story-body blockquote { margin: 18px 0 0; padding-top: 18px; border-top: 1px solid var(--border); color: var(--navy); font-size: 13px; font-weight: 700; }
.story-body cite { display: block; margin-top: 10px; color: var(--muted); font-size: 10px; font-style: normal; font-weight: 500; }
.text-link { color: var(--blue); font-size: 13px; font-weight: 800; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.resource-card { min-height: 210px; padding: 25px; display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); transition: .2s ease; }
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.resource-card > span { color: var(--blue); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 800; }
.resource-card h3 { margin: 30px 0 20px; font-size: 18px; }
.resource-card div { margin-top: auto; display: flex; justify-content: space-between; color: var(--muted); }
.cta-section { position: relative; overflow: hidden; padding: 110px 0; color: white; background: var(--navy-deep); }
.cta-image { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,30,62,.96), rgba(14,30,62,.74)), url("../images/cta-bg.jpg") center / cover; }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 460px; gap: 90px; align-items: center; }
.cta-copy h2 { margin: 18px 0; color: white; font-size: clamp(42px, 5vw, 60px); }
.cta-copy > p { color: rgba(255,255,255,.7); font-size: 17px; }
.cta-trust { display: flex; gap: 24px; margin-top: 30px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 700; }
.contact-form { padding: 34px; border-radius: 20px; background: white; box-shadow: var(--shadow-lift); }
.form-heading { margin-bottom: 24px; }
.form-heading h3 { margin: 8px 0; font-size: 25px; }
.form-heading p { margin: 0; font-size: 13px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 15px; color: var(--navy); font-size: 12px; font-weight: 700; }
.contact-form input, .contact-form textarea, .contact-form select, .field-input { width: 100%; padding: 13px 14px; color: var(--ink); border: 1px solid var(--border); border-radius: 10px; outline: 0; background: var(--surface-soft); transition: border .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus, .field-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px oklch(60% .2 255 / .12); }
.contact-form textarea { resize: vertical; }
.full-width { width: 100%; }
.contact-form.compact { position: sticky; top: 24px; padding: 27px; border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.contact-form.compact .form-heading h3 { font-size: 21px; }

.page-hero { padding: 150px 0 82px; min-height: 390px; display: grid; align-items: end; }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { max-width: 800px; margin: 18px 0 14px; color: white; font-size: clamp(45px, 6vw, 68px); font-weight: 800; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.7); font-size: 17px; }
.page-hero.page-hero-photo { background-size: cover; background-position: right center; background-repeat: no-repeat; }
.page-hero-contact { background-image: linear-gradient(90deg, rgba(6,16,35,.92) 0%, rgba(6,16,35,.6) 45%, rgba(6,16,35,.15) 72%, transparent 100%), url("../images/contactt.png"); }
.page-hero-about { background-image: linear-gradient(90deg, rgba(6,16,35,.92) 0%, rgba(6,16,35,.6) 45%, rgba(6,16,35,.15) 72%, transparent 100%), url("../images/abouttt.png"); }
.page-hero-services { background-image: linear-gradient(90deg, rgba(6,16,35,.92) 0%, rgba(6,16,35,.6) 45%, rgba(6,16,35,.15) 72%, transparent 100%), url("../images/recruitment.png"); }
.page-hero-perm { background-image: linear-gradient(90deg, rgba(6,16,35,.92) 0%, rgba(6,16,35,.6) 45%, rgba(6,16,35,.15) 72%, transparent 100%), url("../images/perm.png"); }
.page-hero-blog { background-image: linear-gradient(90deg, rgba(6,16,35,.92) 0%, rgba(6,16,35,.6) 45%, rgba(6,16,35,.15) 72%, transparent 100%), url("../images/blogs.png"); }
.page-hero-vendor { background-image: linear-gradient(90deg, rgba(6,16,35,.92) 0%, rgba(6,16,35,.6) 45%, rgba(6,16,35,.15) 72%, transparent 100%), url("../images/vendor.png"); }
.page-hero-design { background-image: linear-gradient(90deg, rgba(6,16,35,.92) 0%, rgba(6,16,35,.6) 45%, rgba(6,16,35,.15) 72%, transparent 100%), url("../images/design.png"); }
.content-section { padding: 92px 0 110px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 74px; align-items: start; }
.content-grid.single { grid-template-columns: minmax(0, 1fr); }
.rich-content { min-width: 0; }
.rich-content > p:first-child { font-size: 20px; line-height: 1.65; color: var(--ink); }
.rich-content p { line-height: 1.78; }
.rich-content h2 { margin: 46px 0 18px; font-size: 34px; }
.rich-content h3 { margin: 36px 0 13px; font-size: 23px; }
.rich-content h4 { margin: 30px 0 10px; font-size: 18px; text-transform: none; }
.rich-content ul { display: grid; gap: 9px; margin: 22px 0; padding-left: 0; list-style: none; }
.rich-content li { position: relative; padding-left: 27px; color: var(--muted); }
.rich-content li::before { content: "✓"; position: absolute; left: 0; color: var(--emerald); font-weight: 800; }
.rich-content a { color: var(--blue); font-weight: 700; }
.rich-content .feature-block { margin: 20px 0; padding: 24px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface-soft); }
.rich-content .feature-block h3, .rich-content .feature-block h4 { margin-top: 0; }
.rich-content .callout { margin: 34px 0; padding: 25px; color: white; border-radius: 14px; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); }
.rich-content .callout p { color: rgba(255,255,255,.72); margin-bottom: 0; }
.rich-content .service-intro-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 30px; }
.rich-content .service-intro-grid a { display: block; padding: 25px; border: 1px solid var(--border); border-radius: 14px; background: white; box-shadow: var(--shadow-soft); }
.rich-content .service-intro-grid h3 { margin: 14px 0 8px; font-size: 19px; }
.rich-content .service-intro-grid p { margin: 0; font-size: 13px; }
.contact-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin: 30px 0; }
.contact-details div { padding: 20px; border: 1px solid var(--border); border-radius: 13px; background: var(--surface-soft); }
.contact-details span { display: block; margin-bottom: 7px; color: var(--blue); text-transform: uppercase; font-size: 10px; letter-spacing: .1em; font-weight: 800; }

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.blog-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); }
.blog-card .category { color: var(--blue); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; font-weight: 800; }
.blog-card h2 { margin: 25px 0 14px; font-size: 23px; }
.blog-card p { font-size: 13px; line-height: 1.7; }
.blog-card a { display: inline-block; margin-top: 10px; color: var(--blue); font-size: 13px; font-weight: 800; }
.pagination { display: flex; gap: 8px; margin-top: 34px; }
.pagination span, .pagination a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 9px; font-size: 12px; font-weight: 700; }
.pagination .current { color: white; background: var(--navy); }

.perm-form { margin-top: 42px; padding: 34px; border: 1px solid var(--border); border-radius: 18px; background: var(--surface-soft); }
.perm-form h2 { padding-top: 24px; border-top: 1px solid var(--border); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.perm-form label { display: grid; gap: 7px; color: var(--navy); font-size: 12px; font-weight: 700; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 14px 0 26px; }
.checkbox-grid label { display: flex; align-items: start; gap: 10px; padding: 12px; border: 1px solid var(--border); border-radius: 10px; background: white; }
.checkbox-grid input { margin-top: 3px; accent-color: var(--blue); }

.site-footer { padding: 82px 0 28px; color: rgba(255,255,255,.7); background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .8fr .7fr 1fr; gap: 60px; }
.footer-brand p { max-width: 410px; margin: 22px 0; color: rgba(255,255,255,.56); font-size: 13px; }
.newsletter { display: flex; max-width: 390px; }
.newsletter input { min-width: 0; flex: 1; padding: 12px 14px; color: white; border: 1px solid rgba(255,255,255,.14); border-radius: 10px 0 0 10px; background: rgba(255,255,255,.06); outline: 0; }
.newsletter button { padding: 12px 15px; color: white; border: 0; border-radius: 0 10px 10px 0; background: var(--orange); font-size: 12px; font-weight: 700; }
.site-footer h4 { color: white; font-size: 14px; }
.site-footer ul { display: grid; gap: 10px; padding: 0; list-style: none; font-size: 12px; }
.site-footer a:hover { color: white; }
.footer-contact { display: flex; flex-direction: column; align-items: start; gap: 8px; font-size: 12px; }
.footer-contact p { margin: 0; color: rgba(255,255,255,.56); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; margin-top: 55px; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }
.footer-bottom div { display: flex; gap: 20px; }

@media (max-width: 1080px) {
  .hero-grid { gap: 34px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 34px 0; }
  .process-grid article:nth-child(3) { border-right: 1px solid var(--border); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .cta-grid { grid-template-columns: 1fr 420px; gap: 45px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; }
  .home-hero { min-height: auto; padding: 130px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; }
  .dashboard-wrap { width: min(92%, 620px); margin: 30px auto 0; }
  .scroll-cue { display: none; }
  .section { padding: 86px 0; }
  .split-heading { display: block; }
  .reasons-grid, .stories-grid, .resource-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-layout, .cta-grid { grid-template-columns: 1fr; }
  .cta-grid { gap: 44px; }
  .content-grid { grid-template-columns: 1fr; gap: 46px; }
  .contact-form.compact { position: static; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { padding-top: 13px; }
  .hero-copy h1 { font-size: 43px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .trust-row { display: grid; grid-template-columns: 1fr 1fr; }
  .dashboard-wrap { width: 100%; }
  .floating-stat { transform: scale(.82); }
  .stat-one { left: -14px; top: 10px; transform-origin: left top; }
  .stat-two { right: -12px; bottom: 8px; transform-origin: right bottom; }
  .logo-strip { padding: 38px 0; }
  .logos { gap: 16px 22px; }
  .section { padding: 70px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2 { font-size: 34px; }
  .service-grid, .reasons-grid, .industry-grid, .stories-grid, .resource-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 235px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-grid article, .process-grid article:nth-child(3), .process-grid article:last-child { padding: 22px; border: 0; border-top: 1px solid var(--border); }
  .process-grid h3 { margin-top: 18px; }
  .solution-spotlight { min-height: auto; padding: 34px 26px; }
  .solution-spotlight h3 { margin-top: 50px; font-size: 28px; }
  .solution-tabs button small { display: none; }
  .story-image { height: 190px; }
  .cta-section { padding: 80px 0; }
  .cta-copy h2 { font-size: 42px; }
  .cta-trust { display: grid; gap: 8px; }
  .contact-form { padding: 24px; }
  .page-hero { padding: 130px 0 66px; min-height: 330px; }
  .page-hero h1 { font-size: 43px; }
  .content-section { padding: 66px 0 80px; }
  .rich-content > p:first-child { font-size: 17px; }
  .rich-content .service-intro-grid, .contact-details, .form-grid, .checkbox-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .perm-form { padding: 22px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-contact { align-items: start; }
  .footer-bottom { display: grid; }
}

.legacy-main {
  min-height: 55vh;
  padding: 132px 0 92px;
  color: white;
  background: radial-gradient(1200px 600px at 85% -10%, oklch(60% .2 255 / .25), transparent 60%), radial-gradient(900px 500px at -10% 30%, oklch(68% .15 165 / .18), transparent 60%), linear-gradient(var(--navy-deep), oklch(24% .08 262));
}
.legacy-main:has(.page-hero) { padding-top: 0; }
.legacy-main .page-hero { margin-bottom: 24px; }
.legacy-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 34px; align-items: start; }
.legacy-layout.no-sidebar { grid-template-columns: minmax(0, 1fr); }
.legacy-article, .legacy-sidebar { background: none; border: 0; box-shadow: none; }
.legacy-article { padding: clamp(30px, 5vw, 64px); }
.legacy-layout.no-sidebar .legacy-article { max-width: 930px; width: 100%; margin: 0 auto; }
.legacy-article h1 { margin: 0 0 30px; color: white; font-size: clamp(38px, 5vw, 67px); letter-spacing: -.055em; line-height: 1.04; }
.legacy-article h2 { margin: 42px 0 18px; color: white; font-size: clamp(23px, 2.6vw, 34px); letter-spacing: -.035em; }
.legacy-article h4, .legacy-article h5 { margin: 34px 0 14px; color: white; font-size: 19px; }
.legacy-article p, .legacy-article li { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.85; }
.legacy-article p { margin: 0 0 24px; }
.legacy-article strong { color: white; }
.legacy-article a { color: var(--blue-soft); text-decoration: underline; text-underline-offset: 3px; }
.legacy-article ul, .legacy-article ol { margin: 0 0 28px; padding-left: 24px; }
.legacy-article li::marker { color: #14b884; }
.legacy-article hr { margin: 34px 0; border: 0; border-top: 1px solid rgba(255,255,255,.15); }
.legacy-article table { width: 100%; margin: 0 0 28px; border-collapse: collapse; font-size: 15px; }
.legacy-article th, .legacy-article td { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,.15); text-align: left; color: rgba(255,255,255,.75); }
.legacy-article th { color: white; font-weight: 700; }
.legacy-article img { display: block; width: 100%; max-width: 100%; margin: 0 0 28px; border-radius: 16px; box-shadow: 0 18px 45px rgba(9,32,71,.14); }
.legacy-article video, .legacy-feature-image { display: block; width: 100%; max-width: 100%; border-radius: 16px; box-shadow: 0 18px 45px rgba(9,32,71,.14); }
.legacy-article video { margin-bottom: 28px; background: #071c3f; }
.article-share { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 8px 0 32px; }
.article-share-label { margin-right: 4px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.75); }
.legacy-article .share-btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border: 0; border-radius: 10px; color: white; font-family: inherit; font-size: 13px; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .15s ease, opacity .15s ease; }
.legacy-article .share-btn:hover { transform: translateY(-2px); opacity: .92; color: white; }
.share-icon { width: 15px; height: 15px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.share-fb { background: #1877f2; }
.share-tw { background: #14171a; }
.share-follow { background: var(--navy); }

.legacy-sidebar { position: sticky; top: 24px; padding: 28px; }
.legacy-sidebar h4 { margin: 0 0 16px; color: white; font-size: 19px; }
.required-note { margin: 0 0 20px; color: rgba(255,255,255,.6); font-size: 12px; }
.required-note span, .legacy-perm-form label > span { color: #ee6e27; }
.legacy-perm-form { display: grid; gap: 18px; }
.legacy-perm-form label { display: grid; gap: 8px; color: white; font-size: 13px; font-weight: 700; }
.legacy-perm-form input, .legacy-perm-form textarea, .legacy-perm-form select {
  width: 100%; min-height: 48px; padding: 12px 14px; color: #14284d; font: inherit; font-weight: 500; background: #fbfcff; border: 1px solid #ccd8e9; border-radius: 10px;
}
.legacy-perm-form textarea { min-height: 130px; resize: vertical; }
.legacy-perm-form input:focus, .legacy-perm-form textarea:focus, .legacy-perm-form select:focus { outline: 3px solid rgba(29,113,244,.14); border-color: #1d71f4; }

.legacy-contact-form { display: grid; gap: 18px; padding: clamp(22px, 4vw, 30px); background: white; border: 1px solid #404040; border-radius: 16px; }
.legacy-contact-form label > span { color: #ee6e27; }
.legacy-contact-form label { display: grid; gap: 8px; color: black; font-size: 13px; font-weight: 700; }
.legacy-contact-form input, .legacy-contact-form textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; color: black; font: inherit; font-weight: 500; background: white; border: 1px solid #404040; border-radius: 10px;
}
.legacy-contact-form textarea { min-height: 130px; resize: vertical; }
.legacy-contact-form input:focus, .legacy-contact-form textarea:focus { outline: 3px solid rgba(0,0,0,.12); border-color: #404040; }
.legacy-sidebar .legacy-contact-form { gap: 10px; padding: 16px; }
.legacy-sidebar .legacy-contact-form label { gap: 4px; font-size: 12px; }
.legacy-sidebar .legacy-contact-form input, .legacy-sidebar .legacy-contact-form textarea { min-height: 36px; padding: 8px 10px; font-size: 14px; }
.legacy-sidebar .legacy-contact-form textarea { min-height: 70px; }
/* Homepage polish matched to the approved Lovable reference. */
.home-header .site-header {
  position: fixed;
  top: 16px;
  padding: 0;
  pointer-events: none;
}
.home-header .header-inner {
  min-height: 64px;
  padding: 8px 18px;
  color: var(--navy);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(8,31,71,.12);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}
.home-header .brand-light,
.home-header .on-dark .desktop-nav > a,
.home-header .on-dark .nav-group > a { color: var(--navy); }

.logo-strip {
  padding: 58px 0 56px;
  background: #f7f9fd;
  border-color: #dfe5ee;
}
.logo-strip .container { width: 100%; max-width: none; }
.logo-strip p {
  margin-bottom: 28px;
  color: #586476;
  font-size: 13px;
  letter-spacing: .12em;
}
.logo-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.logos {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0;
  animation: partner-marquee-left 25s linear infinite;
}
.logo-sequence {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}
.logos span {
  color: #9ca5b2;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  white-space: nowrap;
}
.logo-marquee:hover .logos { animation-play-state: paused; }
@keyframes partner-marquee-left {
  to { transform: translateX(-50%); }
}

.industry-grid { gap: 16px; }
.industry-grid > div {
  min-height: 134px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  text-align: center;
  border-color: #d9e1ec;
  border-radius: 22px;
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.industry-grid > div:hover {
  transform: translateY(-4px);
  border-color: rgba(18,127,255,.25);
  box-shadow: 0 16px 38px rgba(13,43,85,.08);
}
.industry-grid span {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #0782fb;
  border-radius: 20px;
  background: linear-gradient(135deg, #e5f2ff, #e3f8f2);
}
.industry-grid span svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.industry-grid strong { color: #132d59; font-size: 16px; }
.industry-grid b { display: none; }

.process-heading { text-align: left; }
.process-heading h2 { max-width: 820px; }
.process-grid {
  position: relative;
  gap: 0;
}
.process-grid::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 32px;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(90deg, #dbe4ef, #89c1ff, #dbe4ef);
}
.process-grid article,
.process-grid article:last-child {
  position: relative;
  z-index: 1;
  padding: 0 20px 0 0;
  border: 0;
}
.process-grid article > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #17315f;
  font-size: 18px;
  border: 1px solid #d8e1ec;
  border-radius: 21px;
  background: white;
  box-shadow: 0 10px 25px rgba(12,42,82,.08);
}
.process-grid h3 {
  margin: 18px 0 6px;
  color: #132d59;
  font-size: 15px;
}
.process-grid p { font-size: 13px; line-height: 1.55; }

.solutions-layout {
  grid-template-columns: 1.08fr .92fr;
  gap: 32px;
}
.solution-tabs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.solution-tabs button {
  min-height: 165px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-color: #d9e1ec;
  border-radius: 21px;
  background: white;
}
.solution-tabs button > span:first-child {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #087df2;
  font-size: 0;
  border-radius: 50%;
  background: #e8f4ff;
}
.solution-tabs button > span:first-child::before { font-size: 20px; line-height: 1; }
.solution-tabs button:nth-child(1) > span:first-child::before { content: "↗"; }
.solution-tabs button:nth-child(2) > span:first-child::before { content: "✧"; }
.solution-tabs button:nth-child(3) > span:first-child::before { content: "♧"; }
.solution-tabs button:nth-child(4) > span:first-child::before { content: "♙"; }
.solution-tabs button:nth-child(5) > span:first-child::before { content: "◰"; }
.solution-tabs button:nth-child(6) > span:first-child::before { content: "▥"; }
.solution-tabs button > span:last-child { gap: 7px; }
.solution-tabs strong { color: #14294d; font-size: 15px; }
.solution-tabs small { font-size: 13px; }
.solution-tabs button.active {
  color: white;
  background: #17315f;
  border-color: #17315f;
  box-shadow: 0 18px 38px rgba(10,35,77,.16);
}
.solution-tabs button.active > span:first-child {
  color: #10c8a2;
  background: rgba(255,255,255,.11);
}
.solution-tabs button.active strong { color: white; }
.solution-tabs button.active small { color: rgba(255,255,255,.76); }
.solution-spotlight {
  min-height: 515px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  background:
    linear-gradient(180deg, rgba(7,25,68,.34), rgba(7,25,68,.94)),
    url("../images/dashboard.jpg") center / cover;
}
.solution-spotlight h3 { margin: 14px 0 10px; font-size: 30px; }
.solution-spotlight ul { margin: 14px 0 22px; }
.solution-spotlight .btn { align-self: flex-start; }

.resource-card {
  position: relative;
  min-height: 382px;
  padding: 0 24px 24px;
  overflow: hidden;
  border-color: #d9e1ec;
  border-radius: 22px;
  box-shadow: none;
}
.resource-card::before {
  content: "";
  display: block;
  height: 218px;
  margin: 0 -24px 28px;
  background: linear-gradient(135deg, #ddecff, #e3f8f0);
}
.resource-art { position: absolute; top: 0; left: 0; right: 0; height: 218px; }
.resource-card > span { font-size: 11px; }
.resource-card h3 { margin: 14px 0 18px; font-size: 17px; }
.resource-card div { margin-top: auto; }

@media (max-width: 1080px) {
  .process-grid::before { display: none; }
  .process-grid article { padding-right: 28px; }
}
@media (max-width: 820px) {
  .home-header .site-header { top: 10px; }
  .home-header .header-inner { border-radius: 18px; }
  .solutions-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .logo-strip { padding: 42px 0; }
  .logo-sequence { gap: 30px; padding-right: 30px; }
  .logos span { font-size: 18px; }
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-grid > div { min-height: 120px; padding: 14px 8px; border-radius: 18px; }
  .industry-grid span { width: 48px; height: 48px; border-radius: 16px; }
  .industry-grid span svg { width: 22px; height: 22px; }
  .industry-grid strong { font-size: 13px; }
  .process-grid article,
  .process-grid article:nth-child(3),
  .process-grid article:last-child { padding: 22px 0; }
  .solution-tabs { grid-template-columns: 1fr; }
  .solution-tabs button { min-height: 138px; }
  .solution-tabs button small { display: block; }
  .resource-card { min-height: 350px; }
  .resource-card::before { height: 190px; }
  .resource-art { height: 190px; }
}
@media (prefers-reduced-motion: reduce) {
  .logos { animation: none; }
}

.legacy-blog-post { padding: 0 0 32px; margin: 0 0 34px; border-bottom: 1px solid rgba(255,255,255,.15); }
.legacy-blog-post:last-of-type { border-bottom: 0; }
.legacy-blog-post h2 { margin-top: 0; }
.legacy-blog-post h2 a { color: white; text-decoration: none; }
.legacy-entry-meta { color: rgba(255,255,255,.6) !important; font-size: 13px !important; }
.legacy-pagination { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; }
.legacy-pagination a, .legacy-pagination > span { display: inline-flex; min-width: 38px; min-height: 38px; padding: 7px 11px; align-items: center; justify-content: center; color: #355173; text-decoration: none; background: #f1f5fb; border-radius: 9px; }
.legacy-pagination a span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.legacy-pagination .current { color: #fff; background: #1d71f4; }

.perm-articles { display: grid; gap: 10px; margin: 0 0 32px; padding: 0 0 28px 18px; border-bottom: 1px solid rgba(255,255,255,.15); }
.perm-articles a { color: rgba(255,255,255,.75); font-size: 12px; line-height: 1.45; }
.legacy-perm-form { margin-top: 44px; padding: clamp(24px, 4vw, 38px); background: none; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; }
.legacy-perm-form fieldset { display: grid; gap: 18px; min-width: 0; margin: 0; padding: 0; border: 0; }
.legacy-perm-form legend { margin-bottom: 14px; color: white; font-size: 14px; font-weight: 800; }
.legacy-perm-form small, .field-help { color: rgba(255,255,255,.6); font-size: 11px; font-weight: 500; line-height: 1.5; }
.legacy-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.legacy-address-grid { display: grid; grid-template-columns: 1fr 1fr .7fr; gap: 12px; }
.label-spacer { padding-top: 23px; }
.legacy-checkboxes { display: grid; gap: 10px; }
.legacy-checkboxes label { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; }
.legacy-checkboxes input { flex: 0 0 auto; width: 18px; min-height: 18px; margin-top: 2px; }

.faq-section { margin-top: 56px; }
.faq-section h2 { margin: 0 0 24px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid rgba(255,255,255,.15); border-radius: 14px; padding: 0 22px; background: rgba(255,255,255,.03); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; color: white; font-weight: 700; font-size: 16px; line-height: 1.4; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { flex: none; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); font-size: 16px; font-weight: 400; color: white; transition: transform .2s ease; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p { padding: 0 0 20px; margin: 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.7; }

@media (max-width: 900px) {
  .legacy-layout { grid-template-columns: 1fr; }
  .legacy-sidebar { position: static; }
}

@media (max-width: 560px) {
  .legacy-main { padding: 100px 0 58px; }
  .legacy-article, .legacy-sidebar { padding: 24px; }
  .legacy-form-grid, .legacy-address-grid { grid-template-columns: 1fr; }
  .label-spacer { padding-top: 0; }
}
