:root {
  --navy: #272c34;
  --navy-deep: #20242b;
  --ink: #424242;
  --petrol: #3f6f95;
  --petrol-dark: #315875;
  --copper: #3f6f95;
  --brass: #3f6f95;
  --paper: #f0f1f3;
  --paper-deep: #e7e9ec;
  --white: #fff;
  --muted: #6b7280;
  --line: #dcd7d1;
  --blue-soft: #edf2f6;
  --terracotta-soft: #edf2f6;
  --terracotta-light: #86a8c0;
  --line-dark: rgba(255, 255, 255, 0.14);
  --sans: "Helvetica Neue", "Arial Nova", Arial, sans-serif;
  --serif: "Iowan Old Style", Baskerville, Georgia, serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --wrap: min(1480px, calc(100% - 40px));
  --page-width: min(1600px, calc(100% - 144px));
  --transition: 180ms ease;
  --type-page-title: clamp(48px, 3.9vw, 60px);
  --type-page-subtitle: 23px;
  --type-section-label: 16px;
  --type-section-title: clamp(32px, 3vw, 40px);
  --type-card-title: clamp(27px, 2.2vw, 31px);
  --type-copy: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 18px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { color: inherit; font: inherit; }
button, summary, input[type="range"] { cursor: pointer; }
::selection { color: var(--white); background: var(--petrol); }
:focus-visible { outline: 3px solid rgba(63, 111, 149, 0.42); outline-offset: 3px; }
.wrap { width: var(--wrap); margin-inline: auto; }
.page-home .wrap { width: var(--page-width); }
.page-services .wrap { width: var(--page-width); }
.page-prices .wrap { width: var(--page-width); }
.page-external .wrap { width: var(--page-width); }
.page-about .wrap { width: var(--page-width); }
.page-contact .wrap { width: var(--page-width); }
.page-legal .wrap { width: var(--page-width); }
.page-workflow .wrap { width: var(--page-width); }
.page-home .hero-grid, .page-home .hero-copy { max-width: none; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; padding: 0 !important; border: 0 !important; margin: -1px !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 10px 16px; color: var(--white); background: var(--navy); font-family: var(--sans); font-size: 13px; text-decoration: none; transform: translateY(-160%); transition: transform var(--transition); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(240, 241, 243, 0.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(8px); transition: box-shadow var(--transition); }
.page-home .site-header { background: rgba(240, 241, 243, 0.97); }
.page-home .site-header .nav { min-height: 90px; }
.page-home .site-header .logo { width: clamp(180px, 56vw, 280px); }
.page-services .site-header .nav { min-height: 90px; }
.page-services .site-header .logo { width: clamp(180px, 56vw, 280px); }
.page-prices .site-header .nav { min-height: 90px; }
.page-prices .site-header .logo { width: clamp(180px, 56vw, 280px); }
.page-external .site-header .nav { min-height: 90px; }
.page-external .site-header .logo { width: clamp(180px, 56vw, 280px); }
.page-about .site-header .nav { min-height: 90px; }
.page-about .site-header .logo { width: clamp(180px, 56vw, 280px); }
.page-contact .site-header .nav { min-height: 90px; }
.page-contact .site-header .logo { width: clamp(180px, 56vw, 280px); }
.page-legal .site-header .nav { min-height: 90px; }
.page-legal .site-header .logo { width: clamp(180px, 56vw, 280px); }
.page-workflow .site-header .nav { min-height: 90px; }
.page-workflow .site-header .logo { width: clamp(180px, 56vw, 280px); }
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(27, 36, 47, 0.06); }
.nav { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { position: relative; width: 320px; aspect-ratio: 3.75 / 1; display: block; flex: 0 0 auto; overflow: hidden; text-decoration: none; }
.logo__image { position: absolute; top: 0; left: 0; width: 100%; max-width: 100%; height: auto; transform: translateY(-41%); }
.nav-links { display: flex; align-items: center; gap: clamp(15px, 1.55vw, 28px); margin-left: auto; font-family: var(--sans); font-size: 14px; font-weight: 600; }
.nav-links a { color: var(--ink); text-decoration: none; opacity: 0.76; transition: opacity var(--transition), color var(--transition); }
.nav-links a:hover { color: var(--petrol); opacity: 1; }
.nav-links a[aria-current="page"] { color: var(--petrol); opacity: 1; }
.nav-contact-link { display: none; }

.nav-cta, .btn { display: inline-flex; align-items: center; justify-content: center; color: var(--white); background: var(--navy); border: 1px solid var(--navy); border-radius: 2px; font-family: var(--sans); font-size: 15px; font-weight: 700; line-height: 1.3; text-align: center; text-decoration: none; transition: color var(--transition), background var(--transition), border-color var(--transition); }
.btn--primary { background: var(--copper); border-color: var(--copper); }
.nav-cta { flex: 0 0 auto; padding: 12px 21px; }
.nav-cta:hover { background: var(--petrol); border-color: var(--petrol); }
.btn--primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn { min-height: 56px; padding: 16px 29px; }
.btn--outline { color: var(--navy); background: transparent; }
.btn--outline:hover { color: var(--white); background: var(--navy); }
.btn--light { color: var(--navy); background: var(--white); border-color: var(--white); }
.btn--light:hover { color: var(--white); background: var(--petrol); border-color: var(--petrol); }
.btn--full { width: 100%; }
.btn-secondary { padding-bottom: 2px; color: var(--navy); border-bottom: 2px solid var(--navy); font-family: var(--sans); font-size: 15px; font-weight: 700; line-height: 1.5; text-decoration: none; transition: color var(--transition), border-color var(--transition); }
.btn-secondary:hover { color: var(--petrol); border-color: var(--petrol); }

.menu-toggle { width: 42px; height: 42px; display: none; padding: 10px; background: transparent; border: 1px solid var(--line); border-radius: 2px; }
.menu-toggle span { width: 100%; height: 1px; display: block; margin: 5px 0; background: var(--navy); transition: transform var(--transition), opacity var(--transition); }

.hero { padding: 104px 0 120px; }
.page-home .hero { background: var(--white); }
.page-home .hero-grid { display: grid; grid-template-columns: minmax(0, 760px) minmax(380px, 1fr); align-items: center; gap: clamp(48px, 6vw, 100px); }
.page-home .hero-copy { max-width: 760px; }
.hero-grid { max-width: 1320px; }
.hero-copy { max-width: 1260px; }
.eyebrow, .section-label, .mono-label, .card-index, .process-number { display: block; color: var(--petrol); font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; line-height: 1.5; text-transform: uppercase; }
.eyebrow { margin-bottom: 18px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); font-family: var(--sans); letter-spacing: -0.02em; }
h1 { max-width: 1100px; margin-bottom: 28px; font-size: clamp(52px, 5.1vw, 80px); font-weight: 700; line-height: 1.08; }
h1 em { color: var(--petrol); font-style: normal; }
.hero-title { max-width: 1260px; font-size: clamp(54px, 5.25vw, 82px); font-weight: 800; letter-spacing: -0.055em; line-height: 0.98; }
.hero-title__line { display: block; }
.hero-title__mobile { display: none; }
.hero-title__outline { color: var(--paper); -webkit-text-stroke: 1.5px var(--navy); text-stroke: 1.5px var(--navy); }
.page-home .hero-title { max-width: 760px; font-size: clamp(54px, 5.2vw, 76px); line-height: 1.04; }
.page-home .hero-title__outline { color: var(--navy); -webkit-text-stroke: 0; text-stroke: 0; }
.mobile-break { display: none; }
.internal-title__mobile { display: none; }
.page-home .lead { max-width: 56ch; }
.lead { max-width: 62ch; margin-bottom: 38px; color: #626a77; font-size: 21px; }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.hero .cta-row { margin-bottom: 58px; }
.page-home .hero .btn { min-height: 62px; padding: 18px 34px; font-size: 17px; }
.page-home .hero .btn-secondary { padding-bottom: 4px; font-size: 17px; }
.trustbar { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 30px; padding-top: 34px; border-top: 1px solid var(--line); }
.trust-item { display: flex; flex-direction: column; }
.trust-value { color: var(--navy); font-family: var(--sans); font-size: 29px; font-weight: 700; line-height: 1.2; }
.trust-label { margin-top: 7px; color: var(--muted); font-size: 17px; line-height: 1.45; }

.hero-visual { position: relative; min-height: 500px; color: var(--petrol); }
.hero-visual__circle { position: absolute; top: 24px; right: 5%; width: min(88%, 470px); aspect-ratio: 1; background: #f3f5f7; border-radius: 50%; }
.visual-card { position: absolute; background: var(--white); border: 1px solid #d9dde1; border-radius: 8px; box-shadow: 0 8px 24px rgba(39, 44, 52, 0.06); }
.visual-card--document { top: 58px; left: 4%; width: 190px; height: 124px; padding: 30px 24px; }
.visual-card--document span { width: 100%; height: 5px; display: block; margin-bottom: 12px; background: #dfe1e4; }
.visual-card--document span:nth-child(2) { width: 80%; }
.visual-card--document span:nth-child(3) { width: 90%; }
.visual-card--document i { position: absolute; right: 17px; bottom: 14px; width: 21px; height: 21px; background: var(--petrol); border-radius: 50%; }
.visual-card--bars { top: 178px; right: 0; width: 215px; height: 145px; padding: 29px 28px 20px; }
.visual-line { width: 100%; height: 5px; display: block; margin-bottom: 12px; background: #dfe1e4; }
.visual-line--short { width: 70%; }
.visual-bars { height: 64px; display: flex; align-items: flex-end; gap: 12px; margin-top: 6px; }
.visual-bars i { width: 21px; background: #8da6b8; }
.visual-bars i:nth-child(1) { height: 35%; }
.visual-bars i:nth-child(2) { height: 68%; background: #59616b; }
.visual-bars i:nth-child(3) { height: 28%; background: #a9bcc9; }
.visual-bars i:nth-child(4) { height: 88%; background: var(--navy); }
.visual-card--trend { bottom: 54px; left: 11%; width: 180px; height: 118px; display: grid; padding: 18px; place-items: center; }
.visual-card--trend svg { width: 100%; height: 100%; }
.visual-dot { position: absolute; width: 10px; height: 10px; background: #b8bec4; border-radius: 50%; }
.visual-dot--one { top: 210px; left: 0; }
.visual-dot--two { top: 126px; right: 2%; background: #9fb5c6; }
.visual-dot--three { right: 4%; bottom: 52px; }

.reviews { overflow: hidden; padding: 82px 0 90px; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.page-home .reviews { background: var(--paper); }
.page-home .reviews .section-label { color: var(--copper); }
.reviews-intro { margin-bottom: 38px; }
.reviews-marquee { overflow-x: auto; outline-offset: -4px; cursor: grab; scrollbar-width: none; overscroll-behavior-x: contain; touch-action: pan-y; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.reviews-marquee::-webkit-scrollbar { display: none; }
.reviews-marquee.is-dragging { cursor: grabbing; user-select: none; }
.reviews-track { width: max-content; display: flex; }
.reviews-track.is-ready { animation: reviews-scroll 72s linear infinite; }
.reviews-marquee:hover .reviews-track, .reviews-marquee:focus .reviews-track, .reviews-marquee:focus-within .reviews-track, .reviews-marquee.is-dragging .reviews-track { animation-play-state: paused; }
.reviews-group { display: flex; gap: 18px; padding-right: 18px; }
.review-card { width: 405px; min-height: 240px; display: flex; flex: 0 0 auto; flex-direction: column; margin: 0; padding: 32px; background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--petrol); transition: background var(--transition), border-color var(--transition), box-shadow var(--transition); }
.page-home .review-card { background: var(--white); }
.page-home .review-card:hover { background: var(--blue-soft); border-color: #c7d5df; box-shadow: 0 14px 34px rgba(39, 44, 52, 0.1); }
.review-card:nth-child(even) { border-top-color: var(--copper); }
.review-index { margin-bottom: 25px; color: var(--brass); font-family: var(--sans); font-size: 10px; letter-spacing: 0.08em; }
.review-card h3 { margin-bottom: 12px; font-size: 21px; }
.review-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; }
@keyframes reviews-scroll {
  to { transform: translateX(-50%); }
}

.services, .person, .contact-panel { background: var(--white); }
.services, .person { padding: 108px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-intro { margin-bottom: 50px; }
.section-label { margin-bottom: 12px; }
.section-title { max-width: 25ch; margin-bottom: 18px; font-size: var(--type-section-title); font-weight: 700; line-height: 1.14; }
.page-title { font-size: clamp(46px, 4.6vw, 68px); }
.section-sub { max-width: 64ch; margin-bottom: 0; color: var(--muted); font-size: 18px; }
.page-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 38px; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); background: var(--line); border: 1px solid var(--line); gap: 1px; }
.service-card { min-height: 410px; padding: 44px 42px; background: var(--white); transition: background var(--transition); }
.service-card:hover { background: #fcf7f4; }
.service-card--accent { background: var(--blue-soft); }
.card-index { margin-bottom: 28px; color: var(--brass); }
.service-card h2 { margin-bottom: 14px; font-size: 25px; line-height: 1.25; }
.service-card > p { max-width: 52ch; color: var(--muted); font-size: 17px; }
.service-card ul { display: grid; gap: 8px; margin: 26px 0 0; padding: 23px 0 0; border-top: 1px solid var(--line); list-style: none; font-family: var(--sans); font-size: 14px; }
.service-card li { position: relative; padding-left: 15px; }
.service-card li::before { position: absolute; top: 0.7em; left: 0; width: 4px; height: 4px; content: ""; background: var(--brass); }
.compliance-note { margin-top: 22px; color: var(--muted); font-family: var(--sans); font-size: 9px; line-height: 1.6; }

.person-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; align-items: center; gap: clamp(56px, 9vw, 110px); }
.person-image { position: relative; width: min(100%, 480px); overflow: hidden; justify-self: center; aspect-ratio: 3 / 4; padding: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 24px 60px rgba(38, 43, 49, 0.14); }
.person-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% center; }
.image-rule { position: absolute; right: 0; bottom: 0; left: 0; height: 5px; background: var(--brass); }
.person-copy { max-width: 820px; }
.person-lead { color: #565c65; font-size: 22px; line-height: 1.6; }
.person-copy > p:not(.person-lead) { color: var(--muted); font-size: 20px; line-height: 1.72; }
.person-facts { margin: 36px 0 0; border-top: 1px solid var(--line); }
.person-facts > div { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.person-facts dt { color: var(--petrol); font-family: var(--sans); font-size: 13px; letter-spacing: 0.07em; text-transform: uppercase; }
.person-facts dd { margin: 0; color: var(--navy); font-family: var(--sans); font-size: 17px; font-weight: 600; }
.page-about .person { padding: 74px 0 96px; background: var(--white); }
.page-about .person-grid { grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.3fr); align-items: start; gap: clamp(58px, 6vw, 90px); }
.person-visual { position: relative; width: min(100%, 560px); justify-self: center; padding: 0 0 30px 30px; }
.person-visual::before { position: absolute; top: 30px; right: 30px; bottom: 0; left: 0; content: ""; background: var(--paper); border-radius: 12px; }
.page-about .person-image { position: relative; z-index: 1; width: 100%; max-width: none; aspect-ratio: 579 / 758; overflow: hidden; padding: 0; background: transparent; border: 0; border-radius: 12px; box-shadow: none; }
.page-about .person-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.page-about .person-copy { max-width: none; }
.page-about .person-copy .section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; color: var(--petrol); font-size: 16px; }
.page-about .person-copy .section-label::before { width: 38px; height: 2px; content: ""; background: var(--petrol); }
.page-about .person-copy h1 { max-width: none; margin-bottom: 30px; font-size: clamp(50px, 4.4vw, 66px); line-height: 1.08; }
.page-about .person-copy h1 span { display: block; }
.page-about .person-lead { color: #565c65; font-size: 24px; line-height: 1.65; }
.page-about .person-copy > p:not(.person-lead) { color: var(--muted); font-size: 21px; line-height: 1.75; }
.page-about .person-facts { margin-top: 42px; }
.page-about .person-facts > div { grid-template-columns: 190px 1fr; gap: 30px; padding: 17px 0; }
.page-about .person-facts dt { font-size: 15px; font-weight: 600; }
.page-about .person-facts dd { font-size: 20px; text-align: right; }
.page-about .page-actions { margin-top: 42px; }
.page-about .page-actions .btn, .page-about .page-actions .btn-secondary { font-size: 18px; }

.process, .faq { padding: 100px 0; }
.process-list, .faq-list { border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: 80px 1fr 1.8fr; align-items: baseline; gap: 26px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.process-number { color: var(--petrol); }
.process-item h2 { margin: 0; font-size: 22px; font-weight: 700; }
.process-item p { margin: 0; color: var(--muted); font-size: 17px; }
.project-strip { display: flex; align-items: center; justify-content: space-between; gap: 42px; margin-top: 68px; padding: 34px 38px; background: var(--blue-soft); border-left: 4px solid var(--petrol); }
.project-strip .section-label { margin-bottom: 8px; }
.project-strip h2 { margin-bottom: 8px; font-size: 24px; }
.project-strip p { margin: 0; color: var(--muted); font-size: 17px; }
.project-strip .btn { flex: 0 0 auto; }

.workflow-page { padding-bottom: 128px; background: var(--white); }
.workflow-hero, .workflow-content { width: min(1280px, calc(100% - clamp(32px, 9.6vw, 96px))); max-width: none; }
.workflow-hero { padding: 88px 0 92px; text-align: left; }
.workflow-hero .section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; color: var(--copper); text-align: left; }
.workflow-hero .section-label::before { width: 38px; height: 2px; content: ""; background: var(--copper); }
.workflow-hero h1 { max-width: none; margin-bottom: 15px; font-size: clamp(52px, 5.4vw, 74px); }
.workflow-hero p { margin: 0; color: var(--muted); font-size: 22px; }
.workflow-steps { display: grid; gap: 24px; }
.workflow-step { display: grid; grid-template-columns: 70px minmax(0, 1fr); align-items: start; gap: 30px; padding: clamp(34px, 4vw, 48px); background: var(--white); border: 1px solid var(--line); border-radius: 7px; transition: background var(--transition), border-color var(--transition), box-shadow var(--transition); }
.workflow-step:hover { background: var(--blue-soft); border-color: #c7d5df; box-shadow: 0 18px 45px rgba(39, 44, 52, 0.1); }
.workflow-number { color: var(--copper); font-family: var(--serif); font-size: 48px; font-weight: 400; letter-spacing: -0.04em; line-height: 1; }
.workflow-step h2 { margin-bottom: 17px; font-size: 30px; }
.workflow-step p { max-width: 70ch; margin-bottom: 0; color: #4e5969; font-size: 20px; line-height: 1.7; }
.workflow-checks { display: grid; gap: 13px; margin: 26px 0 0; padding: 0; list-style: none; }
.workflow-checks li { position: relative; padding-left: 24px; color: var(--muted); font-size: 18px; }
.workflow-checks li::before { position: absolute; top: 0; left: 0; color: var(--copper); content: "✓"; font-weight: 800; }
.workflow-checks strong { color: var(--ink); }
.workflow-expectations { margin-top: 100px; padding: clamp(50px, 6vw, 72px) clamp(36px, 8vw, 100px); background: var(--blue-soft); border: 1px solid var(--line); border-radius: 14px; }
.workflow-expectations h2 { margin-bottom: 34px; font-size: clamp(30px, 3vw, 40px); text-align: center; }
.workflow-expectations .workflow-checks { gap: 15px; max-width: 650px; margin: 0 auto; }
.workflow-expectations .workflow-checks li { font-size: 19px; }
.workflow-cta { margin-top: 86px; padding: 68px clamp(32px, 6vw, 84px); background: var(--terracotta-soft); border: 1px solid var(--line); border-radius: 14px; text-align: center; }
.workflow-cta h2 { margin-bottom: 12px; font-size: clamp(34px, 3.5vw, 46px); }
.workflow-cta p { margin-bottom: 30px; color: var(--muted); font-size: 20px; }
.workflow-cta .cta-row { justify-content: center; }

.services-page { padding-bottom: 84px; background: var(--white); }
.services-hero, .services-content { max-width: none; }
.services-hero { padding: 72px 0 48px; text-align: left; }
.services-hero .section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; color: var(--copper); text-align: left; }
.services-hero .section-label::before { width: 38px; height: 2px; content: ""; background: var(--copper); }
.services-hero h1 { max-width: none; margin: 0 0 14px; font-size: clamp(50px, 4.5vw, 68px); }
.services-hero__nowrap { white-space: nowrap; }
.services-hero p { margin: 0; color: var(--muted); font-size: 23px; }
.service-offers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.offer-card { min-height: 560px; padding: clamp(38px, 3.4vw, 52px); background: var(--white); border: 1px solid var(--line); border-radius: 7px; transition: background var(--transition), border-color var(--transition), box-shadow var(--transition); }
.offer-card:hover { background: var(--blue-soft); border-color: #c7d5df; box-shadow: 0 18px 45px rgba(39, 44, 52, 0.1); }
.offer-card-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.offer-icon { width: 38px; height: 38px; display: block; margin-bottom: 24px; fill: none; stroke: var(--petrol); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.offer-card-meta .offer-icon, .offer-card .offer-card-meta .card-index { margin: 0; }
.offer-card .card-index { margin-bottom: 8px; color: var(--brass); }
.offer-card h2 { margin-bottom: 11px; font-size: clamp(31px, 2.5vw, 38px); }
.offer-card > p { min-height: 72px; margin-bottom: 26px; color: var(--muted); font-size: 21px; line-height: 1.55; }
.offer-list { display: grid; gap: 8px; margin: 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.offer-list li { position: relative; padding-left: 24px; color: var(--muted); font-size: 20px; line-height: 1.55; }
.offer-list li::before { position: absolute; top: 0; left: 0; color: var(--brass); content: "✓"; font-weight: 800; }
.services-compliance { max-width: 1240px; margin: 40px auto 0; color: var(--muted); font-size: 17px; line-height: 1.6; text-align: center; }
.services-cta { margin-top: 50px; padding: 54px clamp(32px, 7vw, 100px); background: var(--blue-soft); border: 1px solid var(--line); border-radius: 7px; text-align: center; }
.services-cta h2 { margin-bottom: 10px; font-size: clamp(28px, 3.3vw, 38px); }
.services-cta p { margin-bottom: 29px; color: var(--navy); font-size: clamp(27px, 2.5vw, 35px); font-weight: 700; line-height: 1.4; }
.services-cta .cta-row { justify-content: center; }
.services-page .section-label, .offer-card .card-index { font-size: 16px; }
.services-page .btn { font-size: 18px; }

.external-page { padding-bottom: 108px; background: var(--white); }
.external-hero { max-width: none; padding: 64px 0 48px; text-align: left; }
.external-hero .section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; color: var(--petrol); text-align: left; }
.external-hero .section-label::before { width: 38px; height: 2px; content: ""; background: var(--petrol); }
.external-page .section-label { font-size: 16px; }
.external-hero h1 { max-width: none; margin: 0 0 12px; font-size: clamp(46px, 3.25vw, 53px); }
.external-hero .external-lead { max-width: 72ch; margin: 0; color: var(--muted); font-size: 23px; line-height: 1.55; }
.external-hero .external-intro { max-width: 96ch; margin: 32px 0 0; color: var(--muted); font-size: 21px; line-height: 1.65; }
.external-content { max-width: none; }
.external-cost-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.external-cost-card { display: flex; flex-direction: column; min-height: 880px; padding: clamp(32px, 3.4vw, 46px); background: var(--white); border: 1px solid var(--line); border-radius: 7px; transition: background var(--transition), border-color var(--transition), box-shadow var(--transition); }
.external-cost-card:hover, .external-benefit-card:hover, .external-why:hover, .external-decision:hover { background: var(--blue-soft); border-color: #c7d5df; box-shadow: 0 16px 38px rgba(39, 44, 52, 0.1); }
.external-cost-card h2 { margin-bottom: 24px; font-size: 29px; }
.compare-card-heading { display: flex; align-items: center; gap: 20px; margin-bottom: 34px; }
.compare-card-heading .compare-icon { width: 76px; height: 76px; display: grid; flex: 0 0 auto; color: var(--petrol); background: var(--paper); border-radius: 50%; place-items: center; }
.compare-card-heading svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.compare-card-heading h2 { margin: 0; font-size: 29px; line-height: 1.22; }
.compare-card-heading p { margin: 2px 0 0; color: var(--muted); font-size: 19px; line-height: 1.3; }
.comparison-cost-box, .comparison-service-box { background: var(--paper); border-radius: 7px; }
.comparison-cost-box { padding: 27px 32px; }
.comparison-cost-box span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 15px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.comparison-cost-box strong { display: block; color: var(--navy); font-size: clamp(31px, 2.8vw, 39px); line-height: 1.2; }
.comparison-service-box { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 14px; padding: 28px 32px; }
.comparison-service-box .service-box-icon { color: var(--petrol); font-size: 35px; line-height: 1; }
.comparison-service-box strong { color: var(--navy); font-size: 22px; line-height: 1.35; }
.comparison-check-list { display: grid; gap: 15px; margin: 34px 0 0; padding: 0; list-style: none; }
.comparison-check-list li { position: relative; padding-left: 36px; color: var(--muted); font-size: 20px; line-height: 1.4; }
.comparison-check-list li::before { position: absolute; top: 0.2em; left: 0; width: 20px; height: 20px; display: grid; color: var(--white); background: var(--petrol); border-radius: 50%; content: "✓"; font-size: 12px; font-weight: 800; place-items: center; }
.time-loss-block { margin-top: 34px; padding-top: 25px; border-top: 1px solid var(--line); }
.time-loss-block h3 { margin-bottom: 16px; color: var(--muted); font-size: 15px; letter-spacing: 0.06em; line-height: 1.4; text-transform: uppercase; }
.time-loss-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.time-loss-list li { display: flex; align-items: center; gap: 15px; padding: 12px 17px; color: var(--muted); background: rgba(240, 241, 243, 0.52); border-radius: 6px; font-size: 18px; line-height: 1.4; }
.time-loss-list li span { width: 26px; flex: 0 0 auto; color: var(--petrol); font-size: 22px; text-align: center; }
.comparison-closing { margin: 28px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.comparison-closing--external { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.internal-salary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 18px; }
.internal-salary strong { color: var(--navy); font-size: 20px; }
.internal-cost-list { display: grid; gap: 7px; margin: 14px 0 24px; padding: 0; color: var(--muted); list-style: none; }
.internal-cost-list li { position: relative; padding-left: 17px; font-size: 17px; line-height: 1.5; }
.internal-cost-list li::before { position: absolute; left: 0; content: "+"; }
.external-total { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.external-total span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.external-total strong { display: block; color: var(--navy); font-size: clamp(32px, 3vw, 40px); line-height: 1.2; }
.external-total sup { color: var(--muted); font-size: 12px; }
.external-total p { margin: 15px 0 0; color: var(--muted); font-size: 16px; }
.external-hourly { display: flex; align-items: baseline; gap: 8px; margin: 0 0 5px; }
.external-hourly strong { color: var(--petrol); font-size: 38px; line-height: 1; }
.external-hourly span, .external-hourly-note { color: var(--muted); font-size: 17px; }
.external-hourly-note { margin: 0 0 24px; }
.external-examples { overflow-x: auto; margin-top: auto; padding-top: 19px; border-top: 1px solid var(--line); }
.external-examples > span { display: block; margin-bottom: 9px; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.external-examples table { width: 100%; min-width: 430px; border-collapse: collapse; }
.external-examples th, .external-examples td { padding: 7px 0; border-bottom: 1px solid rgba(220, 215, 209, 0.7); font-size: 16px; line-height: 1.3; text-align: right; }
.external-examples th { color: var(--muted); font-size: 12px; }
.external-examples th:first-child, .external-examples td:first-child { text-align: left; }
.external-examples td:last-child { color: var(--petrol); font-weight: 700; }
.external-disclaimer { margin: 14px 0 0; color: #87909d; font-size: 14px; line-height: 1.4; }
.external-why { display: grid; grid-template-columns: 36px 1fr; gap: 18px; margin-top: 40px; padding: 29px 36px; background: var(--paper); border: 1px solid var(--line); border-radius: 7px; transition: background var(--transition), border-color var(--transition), box-shadow var(--transition); }
.external-why svg { width: 32px; height: 32px; fill: none; stroke: var(--petrol); stroke-width: 1.5; }
.external-why h2 { margin-bottom: 9px; font-size: 25px; }
.external-why p { margin-bottom: 10px; color: var(--muted); font-size: 19px; line-height: 1.6; }
.external-why strong { color: var(--petrol); font-size: 18px; }
.external-benefits { margin-top: 52px; }
.external-benefits > h2 { margin-bottom: 30px; font-size: clamp(31px, 3.2vw, 39px); text-align: center; }
.external-benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.external-benefit-card { min-height: 175px; padding: 27px 25px; background: var(--white); border: 1px solid var(--line); border-radius: 7px; transition: background var(--transition), border-color var(--transition), box-shadow var(--transition); }
.external-benefit-card h3 { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 12px; font-size: 20px; line-height: 1.28; }
.external-benefit-card h3 span { width: 15px; height: 15px; display: inline-grid; flex: 0 0 auto; margin-top: 2px; color: var(--white); background: var(--petrol); border-radius: 50%; font-size: 10px; place-items: center; }
.external-benefit-card p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.55; }
.external-highlight { margin-top: 55px; padding: 42px 46px; color: var(--white); background: var(--petrol); border-radius: 7px; }
.external-highlight h2 { margin-bottom: 22px; color: var(--white); font-size: clamp(28px, 3vw, 36px); text-align: left; }
.external-interest-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 38px; margin: 0; padding: 0; list-style: none; }
.external-highlight li { position: relative; padding-left: 26px; color: rgba(255, 255, 255, 0.96); font-size: 19px; line-height: 1.5; }
.external-highlight li::before { position: absolute; top: 0; left: 0; content: "✓"; font-weight: 800; }
.external-decision { margin-top: 55px; padding: 58px clamp(30px, 7vw, 90px); background: var(--paper); border: 1px solid var(--line); border-radius: 10px; text-align: center; transition: background var(--transition), border-color var(--transition), box-shadow var(--transition); }
.external-decision svg { width: 48px; height: 48px; margin-bottom: 19px; fill: none; stroke: var(--petrol); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.external-decision h2 { margin-bottom: 14px; font-size: clamp(30px, 3vw, 38px); }
.external-decision p { max-width: 780px; margin: 0 auto; color: var(--muted); font-size: 22px; line-height: 1.65; }
.external-decision .btn { margin-top: 31px; font-size: 18px; }

.editorial-page { padding: 110px 0 120px; }
.editorial-intro { max-width: 1100px; margin-bottom: 68px; }
.editorial-intro .section-sub { max-width: 72ch; font-size: 18px; }
.editorial-stack { display: grid; gap: 30px; }
.editorial-block { padding: clamp(28px, 4vw, 46px); background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--petrol); }
.editorial-block--soft { background: var(--blue-soft); }
.editorial-block .card-index { margin-bottom: 15px; }
.editorial-block h2 { margin-bottom: 12px; font-size: clamp(23px, 2.3vw, 31px); line-height: 1.2; }
.editorial-block h3 { margin: 34px 0 12px; font-size: 23px; }
.editorial-kicker { margin-bottom: 21px; color: var(--navy); font-size: 21px; font-weight: 700; line-height: 1.5; }
.editorial-block p { max-width: 82ch; color: var(--muted); font-size: 18px; }
.check-list, .detail-list, .plain-list { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.detail-list li, .plain-list li { position: relative; padding-left: 18px; }
.detail-list li::before, .plain-list li::before { position: absolute; top: 0.7em; left: 0; width: 5px; height: 5px; content: ""; background: var(--brass); }
.check-list li { position: relative; padding-left: 29px; }
.check-list li::before { position: absolute; top: 0; left: 0; color: var(--petrol); content: "✓"; font-weight: 800; }
.benefits-block h2 { margin-bottom: 24px; }
.closing-copy { max-width: 780px; margin: 46px 0 0; padding-top: 35px; border-top: 1px solid var(--line); }
.closing-copy p { margin-bottom: 0; color: var(--muted); font-size: 19px; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.price-card { display: flex; flex-direction: column; }
.price-card .price-highlight { margin: auto 0 0; padding-top: 24px; color: var(--navy); border-top: 1px solid var(--line); font-size: 18px; }
.price-card .price-highlight strong { display: block; margin-top: 3px; color: var(--petrol); font-size: 27px; }
.price-note { margin: 12px 0 0; font-size: 13px; }
.price-page { padding-bottom: 88px; background: var(--white); }
.price-hero, .price-page-content { max-width: none; }
.price-hero { padding: 72px 0 50px; text-align: left; }
.price-hero .section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; color: var(--copper); text-align: left; }
.price-hero .section-label::before { width: 38px; height: 2px; content: ""; background: var(--copper); }
.price-page .section-label { font-size: 16px; }
.price-hero h1 { max-width: none; margin-bottom: 25px; font-size: clamp(50px, 4.5vw, 68px); }
.price-hero p { max-width: 1040px; margin: 0; color: var(--muted); font-size: 25px; line-height: 1.6; }
.price-summary { padding: 32px 48px; background: var(--white); border: 1px solid var(--line); border-radius: 7px; transition: background var(--transition), border-color var(--transition), box-shadow var(--transition); }
.price-summary:hover { background: var(--blue-soft); border-color: #c7d5df; box-shadow: 0 18px 45px rgba(39, 44, 52, 0.1); }
.price-summary ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.price-summary li { position: relative; padding-left: 31px; color: var(--muted); font-size: 23px; line-height: 1.55; }
.price-summary li::before { position: absolute; top: 0; left: 0; color: var(--petrol); content: "✓"; font-weight: 800; }
.price-summary strong { color: var(--ink); }
.calculator-intro { margin: 66px 0 29px; color: var(--muted); font-size: 24px; line-height: 1.45; }
.calculators-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.billing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
.billing-card { min-height: 300px; padding: 40px 38px 36px; background: var(--white); border: 1px solid var(--line); border-top: 3px solid var(--copper); border-radius: 4px; transition: background var(--transition), border-color var(--transition), box-shadow var(--transition); }
.billing-card:hover { background: var(--blue-soft); border-color: #c7d5df; border-top-color: var(--copper); box-shadow: 0 18px 45px rgba(39, 44, 52, 0.1); }
.billing-card h2 { margin-bottom: 30px; font-size: 25px; line-height: 1.3; }
.billing-phase + .billing-phase { margin-top: 26px; padding-top: 25px; border-top: 1px solid var(--line); }
.billing-phase h3 { margin-bottom: 7px; font-size: 20px; line-height: 1.35; }
.billing-card p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.55; }
.calculator { max-width: none; margin: 0; padding: 48px 46px 44px; background: var(--paper); border: 1px solid var(--line); border-radius: 7px; }
.calculator h2 { margin-bottom: 4px; color: var(--navy); font-size: clamp(27px, 2.3vw, 33px); text-align: center; }
.calculator-subtitle { margin: 0 0 35px; color: var(--muted); font-size: 20px; line-height: 1.4; text-align: center; }
.calculator-control { max-width: 390px; margin: 0 auto 39px; }
.calculator input[type="range"] { width: 100%; height: 9px; margin: 0; appearance: none; background: var(--line); border-radius: 20px; accent-color: var(--brass); }
.calculator input[type="range"] { background: linear-gradient(to right, var(--petrol) 0 var(--range-progress, 10%), var(--line) var(--range-progress, 10%) 100%); }
.calculator input[type="range"]::-webkit-slider-thumb { width: 31px; height: 31px; appearance: none; background: var(--brass); border: 4px solid var(--white); border-radius: 50%; box-shadow: 0 4px 9px rgba(38, 43, 49, 0.2); }
.calculator input[type="range"]::-moz-range-thumb { width: 23px; height: 23px; background: var(--brass); border: 4px solid var(--white); border-radius: 50%; box-shadow: 0 4px 9px rgba(38, 43, 49, 0.2); }
.calculator-results { max-width: 390px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-inline: auto; text-align: center; }
.calculator-result strong { display: block; color: var(--brass); font-size: clamp(48px, 4.2vw, 58px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.calculator-result span { display: block; margin-top: 13px; color: var(--muted); font-size: 15px; font-weight: 700; letter-spacing: 0.03em; line-height: 1.2; text-transform: uppercase; }
.calculator-note { max-width: 500px; margin: 30px auto 0; color: var(--muted); font-size: 16px; line-height: 1.55; text-align: center; }
.price-services-link { margin: 60px auto 0; color: var(--muted); font-size: 23px; text-align: center; }
.price-services-link a { color: var(--navy); border-bottom: 2px solid currentColor; font-weight: 700; text-decoration: none; transition: color var(--transition); }
.price-services-link a:hover { color: var(--navy-deep); }
.price-included { max-width: 980px; margin-inline: auto; padding-top: 98px; text-align: center; }
.price-included h2 { margin-bottom: 39px; font-size: clamp(30px, 3.2vw, 42px); text-align: center; }
.price-included .check-list { width: fit-content; gap: 18px; margin: 0 auto; text-align: left; }
.price-included .check-list li { color: var(--muted); font-size: 18px; }
.price-included .check-list li::before { color: var(--brass); }
.price-included .cta-row { justify-content: center; margin-top: 42px; }
.included-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 30px; }

.comparison-table-wrap { overflow-x: auto; margin-top: 24px; }
.comparison-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 16px 18px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison-table th { color: var(--navy); background: var(--paper-deep); font-size: 16px; }
.comparison-table td { color: var(--muted); font-size: 17px; }
.comparison-table td:first-child { color: var(--navy); font-weight: 700; }
.advantage-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.advantage-card { padding: 28px; background: var(--white); }
.advantage-card h3 { margin: 0 0 8px; }
.advantage-card p { margin: 0; color: var(--muted); font-size: 17px; }
.fit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.fit-grid .editorial-block { height: 100%; }

.faq-grid { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: clamp(60px, 10vw, 140px); }
.faq-intro { position: sticky; top: 120px; align-self: start; margin-bottom: 0; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 48px 24px 0; color: var(--navy); font-family: var(--sans); font-size: 15px; font-weight: 700; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 8px; color: var(--petrol); content: "+"; font-family: var(--sans); font-size: 20px; font-weight: 400; line-height: 1; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 700px; margin: -2px 48px 25px 0; color: var(--muted); font-size: 14px; }

.contact { padding: 64px 0 96px; background: var(--white); border-top: 0; }
.contact-intro { margin-bottom: 58px; text-align: left; }
.contact-intro .section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; color: var(--petrol); font-size: 16px; text-align: left; }
.contact-intro .section-label::before { width: 38px; height: 2px; content: ""; background: var(--petrol); }
.contact-intro h1 { max-width: none; margin: 0 0 14px; font-size: clamp(46px, 3.7vw, 60px); line-height: 1.12; }
.contact-intro p { max-width: 76ch; margin: 0; color: var(--muted); font-size: 22px; line-height: 1.55; }
.contact-panel { display: grid; grid-template-columns: minmax(330px, 0.42fr) minmax(0, 1fr); overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 9px; }
.contact-details { padding: 49px 42px; color: var(--white); background: var(--navy-deep); }
.mono-label { display: flex; align-items: center; gap: 14px; margin-bottom: 31px; color: var(--terracotta-light); font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.mono-label::before { width: 24px; height: 2px; content: ""; background: currentColor; }
.contact-details > a { display: grid; grid-template-columns: 1fr auto; gap: 3px 20px; padding: 19px 0; color: var(--white); border-top: 1px solid var(--line-dark); text-decoration: none; transition: color var(--transition), background var(--transition); }
.contact-details > a:last-of-type { border-bottom: 1px solid var(--line-dark); }
.contact-details small, .contact-response small { grid-column: 1 / -1; color: #9aa3ae; font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-details strong { font-family: var(--sans); font-size: 19px; line-height: 1.4; }
.contact-details > a > span { color: var(--terracotta-light); transition: transform var(--transition); }
.contact-details > a:hover { color: var(--terracotta-light); }
.contact-details > a:hover > span { transform: translate(3px, -3px); }
.contact-response { margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line-dark); }
.contact-response p { max-width: 22ch; margin: 7px 0 0; color: #c3c9d0; font-size: 17px; line-height: 1.55; }
.contact-form { padding: 48px 56px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form > label, .form-row label { display: block; margin-bottom: 20px; }
.contact-form label > span { display: block; margin-bottom: 8px; color: var(--navy); font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 13px 15px; background: #fbfbfc; border: 1px solid #cfd3d8; border-radius: 6px; outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.contact-form input, .contact-form select { height: 52px; }
.contact-form textarea { min-height: 112px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--petrol); box-shadow: 0 0 0 3px rgba(63, 111, 149, 0.1); }
.privacy-check { display: grid !important; grid-template-columns: auto 1fr; gap: 12px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.privacy-check input { width: 17px; height: 17px; margin: 3px 0 0; accent-color: var(--petrol); }
.privacy-check > span { margin: 0 !important; color: var(--muted) !important; font-family: var(--sans) !important; font-size: 15px !important; letter-spacing: 0 !important; text-transform: none !important; }
.privacy-check a { color: var(--petrol); }
.contact-form .btn { min-height: 52px; padding: 14px 30px; font-size: 17px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-family: var(--sans); font-size: 13px; text-align: left; }

.legal-page { padding: 64px 0 100px; background: var(--white); }
.legal-content { max-width: 1040px; }
.legal-content > .section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; color: var(--petrol); font-size: 16px; text-align: left; }
.legal-content > .section-label::before { width: 38px; height: 2px; content: ""; background: var(--petrol); }
.legal-content h1 { margin-bottom: 50px; font-size: clamp(46px, 3.7vw, 60px); line-height: 1.12; }
.legal-content section { margin-top: 40px; }
.legal-content h2 { margin-bottom: 12px; font-size: 22px; line-height: 1.35; }
.legal-content p, .legal-content address { margin: 0; color: var(--muted); font-size: 19px; font-style: normal; line-height: 1.65; }
.legal-content a { color: var(--petrol); text-underline-offset: 3px; }
.legal-copyright { margin-top: 52px !important; padding-top: 24px; border-top: 1px solid var(--line); font-size: 15px !important; }
.privacy-content { max-width: 1120px; }
.privacy-intro { max-width: 88ch; margin: -27px 0 0; color: var(--muted); font-size: 20px !important; line-height: 1.65; }
.privacy-date { margin: 13px 0 48px !important; color: var(--petrol) !important; font-size: 14px !important; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.privacy-content section { margin-top: 0; padding: 36px 0; border-top: 1px solid var(--line); }
.privacy-content section:first-of-type { border-top: 0; }
.privacy-content h2 { margin-bottom: 14px; font-size: clamp(24px, 2.2vw, 30px); }
.privacy-content h3 { margin: 25px 0 8px; font-size: 21px; }
.privacy-content p + p { margin-top: 14px; }
.privacy-content address + p { margin-top: 14px; }
.privacy-content ul { display: grid; gap: 8px; margin: 15px 0 0; padding-left: 25px; color: var(--muted); }
.privacy-content li { padding-left: 4px; font-size: 18px; line-height: 1.6; }

/* Einheitliche Typografie auf allen Inhaltsseiten */
.workflow-hero .section-label,
.services-hero .section-label,
.external-hero .section-label,
.price-hero .section-label,
.page-home .eyebrow,
.page-home .section-label,
.page-about .person-copy .section-label,
.contact-intro .section-label,
.legal-content > .section-label { font-size: var(--type-section-label); }

.workflow-hero h1,
.services-hero h1,
.external-hero h1,
.price-hero h1,
.page-about .person-copy h1,
.contact-intro h1,
.legal-content h1 { font-size: var(--type-page-title); }

.workflow-hero > p,
.services-hero > p,
.external-hero .external-lead,
.price-hero > p,
.page-home .lead,
.page-about .person-lead,
.contact-intro > p,
.privacy-intro { font-size: var(--type-page-subtitle) !important; }

.workflow-step p,
.offer-card > p,
.offer-list li,
.external-hero .external-intro,
.page-about .person-copy > p:not(.person-lead) { font-size: var(--type-copy); }

.workflow-step h2,
.offer-card h2,
.compare-card-heading h2,
.billing-card h2,
.calculator h2 { font-size: var(--type-card-title); }

.workflow-expectations h2,
.services-cta h2,
.external-benefits > h2,
.external-highlight h2,
.external-decision h2,
.price-included h2 { font-size: var(--type-section-title); }

.site-footer { padding: 38px 0 20px; background: var(--paper); border-top: 1px solid var(--line); }
.site-footer .wrap { width: var(--page-width); }
.footer-grid { display: grid; grid-template-columns: minmax(300px, 1.5fr) minmax(320px, 1.2fr) minmax(130px, 0.6fr); gap: 32px; padding-bottom: 24px; }
.logo--footer { width: clamp(210px, 20vw, 250px); }
.footer-grid > div:first-child > p { margin: 10px 0 0; color: var(--muted); font-size: 15px; }
.footer-links { display: flex; flex-direction: column; gap: 7px; }
.footer-grid > .footer-links:nth-child(2) { display: grid; grid-template-columns: repeat(2, max-content); grid-template-rows: repeat(4, auto); grid-auto-flow: column; align-content: start; column-gap: 42px; }
.footer-links a { width: fit-content; color: var(--muted); font-family: var(--sans); font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: var(--petrol); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 18px; color: var(--muted); border-top: 1px solid var(--line); font-family: var(--sans); font-size: 10px; letter-spacing: 0.03em; text-transform: uppercase; }

.whatsapp-link { position: fixed; right: 20px; bottom: 20px; z-index: 30; width: 48px; height: 48px; display: grid; color: var(--white); background: var(--petrol); border: 4px solid rgba(255, 255, 255, 0.82); border-radius: 50%; box-shadow: 0 8px 22px rgba(38, 43, 49, 0.2); font-family: var(--sans); font-size: 9px; text-decoration: none; place-items: center; transition: background var(--transition), transform var(--transition); }
.whatsapp-link:hover { background: var(--petrol-dark); transform: translateY(-3px); }

.js [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 600ms ease, transform 600ms ease; }
.js [data-reveal][data-delay="1"] { transition-delay: 90ms; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  :root { --wrap: min(1000px, calc(100% - 32px)); }
  .logo { width: 260px; }
  .nav-links { gap: 12px; font-size: 13px; }
  .nav-cta { padding-inline: 13px; }
  .trustbar { grid-template-columns: repeat(2, 1fr); }
  .external-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1300px) {
  .page-home .hero-grid { grid-template-columns: 1fr; }
  .page-home .hero-copy { max-width: 900px; }
  .hero-visual { width: min(100%, 580px); min-height: 430px; margin-inline: auto; }
}

@media (max-width: 1160px) {
  html { scroll-padding-top: 94px; }
  .nav { min-height: 90px; }
  .nav-cta { margin-left: auto; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-links { position: fixed; top: 90px; right: 0; left: 0; height: calc(100dvh - 90px); display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 24px max(16px, calc((100% - 1000px) / 2)); background: var(--paper); border-top: 1px solid var(--line); visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity var(--transition), transform var(--transition), visibility var(--transition); }
  .nav-links.is-open { visibility: visible; opacity: 1; transform: none; }
  .nav-links a { width: 100%; display: block; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
}

@media (max-width: 900px) {
  :root { --wrap: min(820px, calc(100% - 28px)); }
  html { scroll-padding-top: 94px; }
  .nav { min-height: 90px; }
  .nav-cta { margin-left: auto; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-links { position: fixed; top: 90px; right: 0; left: 0; height: calc(100dvh - 90px); display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 24px max(14px, calc((100% - 820px) / 2)); background: var(--paper); border-top: 1px solid var(--line); visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity var(--transition), transform var(--transition), visibility var(--transition); }
  .nav-links.is-open { visibility: visible; opacity: 1; transform: none; }
  .nav-links a { width: 100%; display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 20px; }
  .hero, .services, .person, .process, .faq, .contact, .editorial-page { padding: 76px 0; }
  .reviews { padding: 72px 0 78px; }
  .person-grid, .faq-grid, .contact-panel { grid-template-columns: 1fr; }
  .person-grid { gap: 58px; }
  .person-image { width: min(78%, 440px); }
  .page-about .person-grid { grid-template-columns: 1fr; gap: 64px; }
  .page-about .person-visual { width: min(100%, 720px); margin-inline: auto; }
  .faq-intro { position: static; margin-bottom: 40px; }
  .contact-panel { width: 100%; }
  .footer-grid { grid-template-columns: minmax(260px, 1.3fr) minmax(300px, 1fr) minmax(130px, 0.6fr); gap: 24px; }
  .price-hero { padding: 68px 0 50px; }
  .billing-grid { grid-template-columns: 1fr; }
  .billing-card { min-height: 0; }
  .workflow-hero { padding: 68px 0 76px; }
  .services-hero { padding: 68px 0 76px; }
  .services-hero h1 { font-size: clamp(42px, 8vw, 62px); }
  .external-hero { padding: 60px 0 42px; }
  .external-cost-grid { grid-template-columns: 1fr; }
  .external-cost-card { min-height: 0; }
}

@media (max-width: 760px) {
  .service-offers, .calculators-grid, .external-cost-grid, .external-benefit-grid { grid-template-columns: 1fr; }
  .offer-card, .external-cost-card, .external-benefit-card { min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  :root { --wrap: calc(100% - 40px); }
  .page-home .wrap { width: calc(100% - 40px); }
  .page-services .wrap { width: calc(100% - 40px); }
  .page-prices .wrap { width: calc(100% - 40px); }
  .page-external .wrap { width: calc(100% - 40px); }
  .page-about .wrap { width: calc(100% - 40px); }
  .page-contact .wrap { width: calc(100% - 40px); }
  .page-legal .wrap { width: calc(100% - 40px); }
  .page-workflow .wrap { width: calc(100% - 40px); }
  .site-footer .wrap { width: calc(100% - 40px); }
  .nav-cta { display: none; }
  .nav { gap: 12px; }
  .logo { width: 210px; }
  .logo--footer { width: min(250px, 100%); }
  h1 { font-size: clamp(38px, 11.5vw, 52px); }
  .hero-title { font-size: clamp(42px, 13.3vw, 58px); }
  .hero-title__outline { -webkit-text-stroke-width: 1px; }
  .lead { font-size: 18px; }
  .cta-row { align-items: flex-start; flex-direction: column; }
  .hero .btn { width: 100%; }
  .page-home .hero .cta-row { align-items: center; width: 100%; }
  .page-home .hero .btn-secondary { align-self: center; text-align: center; }
  .trustbar { gap: 24px 18px; }
  .page-home .trust-item { align-items: center; text-align: center; }
  .reviews-marquee { -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
  .review-card { width: 315px; min-height: 225px; padding: 26px; }
  .hero-visual { display: none; }
  .footer-grid > .footer-links:nth-child(2) { grid-column: 1 / -1; }
  .footer-grid > .footer-links:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 31px 26px; }
  .person-facts > div { grid-template-columns: 1fr; gap: 3px; }
  .person-image { width: min(88%, 390px); }
  .page-about .person-visual { padding: 0 0 20px 20px; }
  .page-about .person-visual::before { top: 20px; right: 20px; }
  .page-about .person-copy h1 { font-size: clamp(29px, 8.3vw, 40px); }
  .page-about .person-lead { font-size: 21px; }
  .page-about .person-copy > p:not(.person-lead) { font-size: 19px; }
  .page-about .person-facts > div { grid-template-columns: 1fr; gap: 5px; }
  .page-about .person-facts dd { font-size: 18px; text-align: left; }
  .page-about .page-actions { align-items: stretch; flex-direction: column; }
  .page-about .page-actions .btn, .page-about .page-actions .btn-secondary { width: 100%; text-align: center; }
  .process-item { grid-template-columns: 44px 1fr; gap: 7px 13px; }
  .process-item p { grid-column: 2; }
  .project-strip { align-items: flex-start; flex-direction: column; padding: 28px 24px; }
  .contact-details, .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .whatsapp-link { right: 14px; bottom: 14px; }
  .pricing-grid, .included-grid, .advantage-grid, .fit-grid { grid-template-columns: 1fr; }
  .price-hero p { font-size: 21px; }
  .price-summary { padding: 25px 22px; }
  .price-summary li { padding-left: 25px; font-size: 20px; }
  .calculator-intro { margin-top: 46px; font-size: 21px; }
  .calculator { margin-top: 0; padding: 42px 22px; }
  .calculator h2 { margin-bottom: 3px; }
  .calculator-subtitle { margin-bottom: 32px; font-size: 18px; }
  .calculator-control { margin: 0 4px 42px; }
  .calculator-results { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .calculator-result strong { font-size: clamp(38px, 12vw, 48px); }
  .calculator-note { margin-top: 30px; font-size: 16px; }
  .price-services-link { margin-top: 44px; font-size: 20px; }
  .price-included { padding-top: 64px; }
  .price-included .cta-row { align-items: stretch; width: 100%; }
  .price-included .btn { width: 100%; }
  .workflow-step { grid-template-columns: 24px minmax(0, 1fr); align-items: baseline; gap: 10px; }
  .workflow-number { font-family: var(--sans); font-size: 28px; font-weight: 800; }
  .workflow-step h2 { font-size: 24px; }
  .workflow-step p { font-size: 18px; }
  .workflow-expectations { margin-top: 65px; padding: 36px 24px; }
  .workflow-cta { margin-top: 55px; padding: 42px 22px; }
  .workflow-cta .cta-row { align-items: stretch; width: 100%; }
  .workflow-cta .btn { width: 100%; }
  .service-offers { grid-template-columns: 1fr; }
  .services-hero h1 { font-size: clamp(42px, 11.5vw, 56px); }
  .services-hero__nowrap { font-size: clamp(24px, 7.4vw, 38px); }
  .offer-card { min-height: 0; padding: 30px 24px; }
  .offer-card > p { min-height: 0; }
  .services-cta { margin-top: 58px; padding: 42px 22px; }
  .services-cta .cta-row { align-items: stretch; width: 100%; }
  .services-cta .btn { width: 100%; }
  .external-cost-grid, .external-benefit-grid { grid-template-columns: 1fr; }
  .external-cost-card { min-height: 0; padding: 26px 22px; }
  .compare-card-heading { align-items: flex-start; gap: 14px; margin-bottom: 28px; }
  .compare-card-heading .compare-icon { width: 60px; height: 60px; }
  .compare-card-heading svg { width: 30px; height: 30px; }
  .compare-card-heading h2 { font-size: 24px; }
  .compare-card-heading p { font-size: 17px; }
  .comparison-cost-box { padding: 23px 20px; }
  .comparison-cost-box strong { font-size: 30px; }
  .comparison-service-box { grid-template-columns: 34px 1fr; padding: 23px 20px; }
  .comparison-service-box strong { font-size: 19px; }
  .comparison-check-list li { padding-left: 32px; font-size: 18px; }
  .time-loss-list li { padding: 11px 13px; font-size: 17px; }
  .comparison-closing { font-size: 17px; }
  .external-benefits { margin-top: 64px; }
  .external-benefit-card { min-height: 0; padding: 25px 22px; }
  .external-why { grid-template-columns: 1fr; padding: 25px 22px; }
  .external-highlight, .external-truth { margin-top: 58px; padding: 34px 24px; }
  .external-interest-grid { grid-template-columns: 1fr; }
  .external-decision { padding: 42px 22px; }
  .external-decision h2 { font-size: 28px; }
  .external-decision p { font-size: 19px; }
  .external-cta { margin-top: 55px; padding: 42px 22px; }
  .external-cta .cta-row { align-items: stretch; width: 100%; }
  .external-cta .btn { width: 100%; }

  /* Kompakte, einheitliche Handy-Typografie mit deutscher Silbentrennung */
  body { font-size: 17px; line-height: 1.65; }
  h1, h2, h3, p, li, dt, dd, summary, strong {
    overflow-wrap: break-word;
    word-break: normal;
    -webkit-hyphens: auto;
    hyphens: auto;
    hyphenate-limit-chars: 8 4 3;
  }
  .legal-content a, .contact-details strong { overflow-wrap: anywhere; }

  .page-home .hero-title,
  .workflow-hero h1,
  .services-hero h1,
  .external-hero h1,
  .price-hero h1,
  .page-about .person-copy h1,
  .contact-intro h1,
  .legal-content h1 {
    max-width: 100%;
    font-size: clamp(35px, 9.5vw, 39px);
    letter-spacing: -0.035em;
    line-height: 1.08;
  }
  .page-home .hero-title__desktop { display: none; }
  .page-home .hero-title__mobile { display: block; }
  .workflow-title__first, .workflow-title__second { display: block; }

  .page-home .eyebrow,
  .page-home .section-label,
  .workflow-hero .section-label,
  .services-page .section-label,
  .external-page .section-label,
  .price-page .section-label,
  .page-about .person-copy .section-label,
  .contact-intro .section-label,
  .legal-content > .section-label,
  .offer-card .card-index { font-size: 13px !important; }

  .page-home .lead,
  .workflow-hero > p,
  .services-hero > p,
  .external-hero .external-lead,
  .price-hero > p,
  .page-about .person-lead,
  .contact-intro > p,
  .privacy-intro { font-size: 18px !important; line-height: 1.6; }

  .section-title,
  .workflow-expectations h2,
  .external-benefits > h2,
  .external-highlight h2,
  .external-decision h2,
  .price-included h2 { font-size: clamp(25px, 7vw, 29px); }

  .workflow-step h2,
  .offer-card h2,
  .compare-card-heading h2,
  .billing-card h2,
  .calculator h2 { font-size: clamp(22px, 6.4vw, 25px); }

  .workflow-step p,
  .workflow-checks li,
  .offer-card > p,
  .offer-list li,
  .external-hero .external-intro,
  .comparison-check-list li,
  .comparison-closing,
  .external-why p,
  .external-benefit-card p,
  .external-highlight li,
  .external-decision p,
  .page-about .person-copy > p:not(.person-lead),
  .legal-content p,
  .legal-content address,
  .privacy-content li { font-size: 17px; }

  .hero { padding: 56px 0 64px; }
  .workflow-hero, .services-hero, .external-hero, .price-hero { padding: 52px 0 38px; }
  .contact, .legal-page { padding: 52px 0 72px; }
  .nav-links a { font-size: 17px; }
  .services-hero__nowrap { white-space: normal; }
  .services-title__first, .services-title__second { display: block; }
  .services-title__second { font-size: 0.82em; letter-spacing: -0.04em; white-space: nowrap; }
  .services-page .offer-card-meta { display: none; }
  .services-page .btn { font-size: 16px; }
  .services-cta p { font-size: clamp(21px, 6vw, 24px); }
  .services-compliance { font-size: 15px; }
  .price-summary li { font-size: 17px; }
  .calculator-intro, .price-services-link { font-size: 18px; }
  .price-services-link a, .price-services-link a:hover { color: var(--navy); }
  .calculator-result strong { font-size: clamp(34px, 10vw, 41px); }
  .compare-card-heading p { font-size: 16px; }
  .comparison-cost-box strong { font-size: clamp(23px, 6.5vw, 27px); }
  .comparison-service-box strong { font-size: 17px; }
  .time-loss-list li { font-size: 16px; }
  .external-examples table { min-width: 0; table-layout: fixed; }
  .external-examples th, .external-examples td { padding: 8px 4px; font-size: 13px; }
  .external-examples th:first-child, .external-examples td:first-child { width: 44%; }
  .external-hourly strong { font-size: 32px; }
  .external-title__first, .external-title__second, .external-title__third { display: block; }
  .external-title__third { font-size: 0.72em; letter-spacing: -0.04em; white-space: nowrap; }
  .external-cost-card .compare-card-heading .compare-icon { display: none; }
  .internal-title__desktop { display: none; }
  .internal-title__mobile { display: inline; }
  .comparison-service-box { grid-template-columns: 1fr; }
  .comparison-service-box .service-box-icon { display: none; }
  .mobile-break { display: inline; }
  .external-benefit-card h3 { font-size: 18px; }
  .page-about .person-facts dd { font-size: 16px; }
  .contact-details strong { font-size: 17px; }
  .footer-grid > div:first-child > p { font-size: 14px; }
  .footer-links a { font-size: 13px; }
  .trust-value { font-size: 25px; }
  .trust-label { font-size: 15px; }
  .whatsapp-link { right: 10px; bottom: 10px; width: 42px; height: 42px; }
}

@media (max-width: 360px) {
  .logo { width: 180px; }
  .logo--footer { width: 240px; }
}

@media (min-width: 581px) {
  .hero-title__line { white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .reviews-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .reviews-track.is-ready { animation: none; }
  .reviews-group[aria-hidden="true"] { display: none; }
}
