:root {
  --ink: #10243e;
  --ink-soft: #42536a;
  --paper: #f5f1e9;
  --paper-deep: #ece5d9;
  --white: #fffdf9;
  --blue: #2f6df6;
  --blue-dark: #1d56d5;
  --whatsapp: #1f9d68;
  --whatsapp-dark: #147a4e;
  --coral: #ee785e;
  --line: rgba(16, 36, 62, 0.14);
  --shadow: 0 24px 70px rgba(16, 36, 62, 0.13);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --font-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  --font-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
::selection { color: var(--white); background: var(--blue); }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled {
  background: rgba(245, 241, 233, 0.92);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(16, 36, 62, 0.06);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 48px;
  height: 48px;
  display: block;
  flex: 0 0 auto;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-name { font-weight: 750; line-height: 1.1; letter-spacing: -0.025em; }
.brand-name em { display: block; color: var(--blue); font-size: 11px; font-style: normal; letter-spacing: 0.15em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a { position: relative; font-size: 14px; font-weight: 700; text-decoration: none; }
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--blue);
  transition: right 180ms var(--ease);
}
.site-nav > a:hover::after { right: 0; }
.site-nav .nav-cta { padding: 12px 19px; color: var(--white); background: var(--ink); border-radius: 999px; transition: transform 180ms var(--ease), background 180ms ease; }
.site-nav .nav-cta:hover { background: var(--blue); transform: translateY(-2px); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 6px auto; background: var(--ink); transition: transform 180ms ease; }

.hero { position: relative; overflow: hidden; padding: 132px 0 82px; min-height: 720px; display: grid; align-items: center; }
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -250px;
  left: 46%;
  background: rgba(47, 109, 246, 0.12);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr); gap: 72px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; color: var(--blue); font-size: 14px; font-weight: 750; letter-spacing: 0.025em; }
.eyebrow > span { width: 24px; height: 2px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--font-display); line-height: 1.04; letter-spacing: -0.047em; }
h3 { line-height: 1.12; letter-spacing: -0.03em; }
h1 { max-width: 730px; margin-bottom: 24px; font-size: clamp(3rem, 4.8vw, 4.35rem); font-weight: 700; }
h1 span, h2 span { color: var(--blue); font-style: normal; font-weight: 720; }
.hero-lead { margin-bottom: 12px; color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 750; letter-spacing: -0.025em; }
.hero-text { max-width: 620px; margin-bottom: 24px; color: var(--ink-soft); font-size: 17px; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-bottom: 25px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 54px; padding: 14px 22px; border-radius: 999px; font-weight: 800; line-height: 1.2; text-decoration: none; transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease; }
.button svg, .email-link svg, .whatsapp-link svg, .whatsapp-float svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 25px rgba(47, 109, 246, 0.24); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 16px 30px rgba(47, 109, 246, 0.3); transform: translateY(-2px); }
.button-whatsapp { color: var(--white); background: var(--whatsapp); box-shadow: 0 12px 25px rgba(31, 157, 104, 0.24); }
.button-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 16px 30px rgba(31, 157, 104, 0.3); transform: translateY(-2px); }
.text-link { font-size: 14px; font-weight: 800; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.text-link span { margin-left: 6px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 0; padding: 0; list-style: none; color: var(--ink-soft); font-size: 13px; font-weight: 650; }
.hero-trust span { display: inline-grid; width: 20px; height: 20px; margin-right: 5px; color: var(--blue); background: rgba(47, 109, 246, 0.1); border-radius: 50%; place-items: center; font-size: 11px; }
.hero-visual { position: relative; }
.visual-frame { position: relative; overflow: hidden; border: 8px solid rgba(255, 253, 249, 0.72); border-radius: var(--radius-lg); box-shadow: var(--shadow); transform: rotate(1.4deg); }
.visual-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, 0.8); border-radius: calc(var(--radius-lg) - 8px); pointer-events: none; }
.visual-frame img { width: 100%; aspect-ratio: 1.12 / 1; object-fit: cover; object-position: center; }
.visual-note { position: absolute; display: flex; align-items: center; gap: 12px; min-width: 190px; padding: 14px 17px; background: rgba(255, 253, 249, 0.94); border: 1px solid rgba(16, 36, 62, 0.1); border-radius: 16px; box-shadow: 0 18px 40px rgba(16, 36, 62, 0.14); backdrop-filter: blur(12px); }
.visual-note-top { top: 12%; left: -42px; }
.visual-note-bottom { right: -28px; bottom: 11%; }
.visual-note small, .visual-note strong { display: block; line-height: 1.25; }
.visual-note small { color: var(--ink-soft); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.visual-note strong { margin-top: 2px; font-size: 13px; }
.visual-note svg { width: 34px; height: 34px; padding: 7px; color: var(--white); background: var(--blue); border-radius: 9px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.status-dot { width: 13px; height: 13px; background: #28a96b; border: 4px solid rgba(40, 169, 107, 0.16); border-radius: 50%; box-sizing: content-box; }

.audience-strip { color: var(--white); background: var(--ink); overflow: hidden; }
.audience-list { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; white-space: nowrap; font-size: 14px; }
.audience-list > span:first-child { color: #9ebcfb; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.audience-list > span:not(:first-child) { color: rgba(255,255,255,.34); }

.section-heading { margin-bottom: 54px; }
.section-heading h2 { max-width: 780px; margin-bottom: 0; font-size: clamp(2.4rem, 4.4vw, 4.2rem); }
.split-heading { display: grid; grid-template-columns: 1.1fr 0.65fr; gap: 90px; align-items: end; }
.split-heading p:last-child { margin: 0 0 7px; color: var(--ink-soft); font-size: 17px; }
.problem-section { background: var(--white); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.problem-card { position: relative; min-width: 0; min-height: 430px; padding: 22px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); }
.problem-card.featured { background: #eaf0ff; border-color: rgba(47, 109, 246, 0.25); }
.problem-media { position: relative; overflow: hidden; margin-bottom: 25px; background: var(--paper-deep); border: 1px solid rgba(16, 36, 62, .1); border-radius: 17px; box-shadow: 0 12px 26px rgba(16, 36, 62, .08); }
.problem-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.card-number { position: absolute; top: 12px; right: 12px; padding: 5px 8px; color: var(--ink); background: rgba(255, 253, 249, .88); border-radius: 999px; backdrop-filter: blur(6px); font-size: 10px; font-weight: 850; letter-spacing: 0.1em; line-height: 1; }
.service-icon svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.problem-card h3 { margin-bottom: 13px; font-size: 24px; }
.problem-card p { margin-bottom: 0; color: var(--ink-soft); }

.services-section { background: var(--paper); }
.centered { max-width: 790px; margin-inline: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered p:last-child { max-width: 620px; margin: 20px auto 0; color: var(--ink-soft); font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.service-card { position: relative; padding: 36px 32px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.service-card-dark { color: var(--white); background: var(--ink); border-color: var(--ink); transform: translateY(-14px); box-shadow: 0 22px 45px rgba(16, 36, 62, 0.17); }
.card-kicker { position: absolute; top: 22px; right: 22px; margin: 0; color: #9ebcfb; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-icon { width: 58px; height: 58px; display: grid; margin-bottom: 46px; color: var(--blue); background: rgba(47, 109, 246, 0.1); border-radius: 16px; place-items: center; }
.service-card-dark .service-icon { color: var(--white); background: var(--blue); }
.service-card h3 { margin-bottom: 15px; font-size: 27px; }
.service-card > p:not(.card-kicker) { min-height: 105px; color: var(--ink-soft); }
.service-card-dark > p:not(.card-kicker) { color: rgba(255,255,255,.7); }
.service-card ul { display: grid; gap: 9px; margin: 25px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; font-size: 14px; font-weight: 700; }
.service-card-dark ul { border-color: rgba(255,255,255,.14); }
.service-card li::before { content: "\2713"; display: inline-block; margin-right: 9px; color: var(--blue); }
.service-card-dark li::before { color: #8caef8; }
.service-note { display: flex; align-items: center; gap: 14px; max-width: 890px; margin: 40px auto 0; padding: 17px 21px; color: var(--ink-soft); background: rgba(255,255,255,.62); border: 1px solid var(--line); border-radius: 14px; font-size: 13px; }
.service-note p { margin: 0; }
.note-icon { color: var(--coral); font-size: 22px; }

.process-section { color: var(--white); background: var(--ink); }
.process-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 100px; align-items: start; }
.process-intro { position: sticky; top: 130px; }
.eyebrow-light { color: #86aafb; }
.process-intro h2 { margin-bottom: 25px; font-size: clamp(2.6rem, 4.5vw, 4.3rem); }
.process-intro > p:not(.eyebrow) { max-width: 430px; margin-bottom: 32px; color: rgba(255,255,255,.68); font-size: 17px; }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--blue); transform: translateY(-2px); }
.process-list { margin: 0; padding: 0; list-style: none; counter-reset: process; }
.process-list li { display: grid; grid-template-columns: 64px 1fr; gap: 25px; padding: 31px 0; border-top: 1px solid rgba(255,255,255,.15); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.process-list li > span { width: 48px; height: 48px; display: grid; color: #9ebcfb; border: 1px solid rgba(158,188,251,.36); border-radius: 50%; place-items: center; font-size: 11px; font-weight: 800; }
.process-list h3 { margin: 0 0 9px; font-size: 25px; }
.process-list p { margin: 0; color: rgba(255,255,255,.64); }

.audience-section { background: var(--white); }
.audience-panel { display: grid; grid-template-columns: 1.02fr .98fr; gap: 55px; align-items: center; padding: 42px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.audience-visual { margin: 0; overflow: hidden; background: var(--paper-deep); border: 1px solid var(--line); border-radius: 27px; box-shadow: 0 20px 44px rgba(16,36,62,.12); }
.audience-visual img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.audience-content { min-width: 0; }
.audience-copy h2 { margin-bottom: 24px; font-size: clamp(2.35rem, 4vw, 3.8rem); }
.audience-copy > p:last-child { max-width: 630px; margin-bottom: 0; color: var(--ink-soft); font-size: 17px; }
.audience-tags { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-content: center; margin-top: 30px; }
.audience-tags span { display: flex; align-items: center; gap: 11px; min-height: 62px; padding: 14px 16px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; font-size: 13px; font-weight: 750; }
.audience-tags b { width: 30px; height: 30px; display: grid; color: var(--blue); background: rgba(47, 109, 246, .1); border-radius: 9px; place-items: center; }

.about-section { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 90px; align-items: center; }
.about-card { position: relative; overflow: hidden; min-height: 610px; padding: 38px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); background: var(--ink); border-radius: var(--radius-lg); box-shadow: 0 25px 55px rgba(16,36,62,.22); }
.about-card::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(7,19,34,.04) 22%, rgba(7,19,34,.22) 48%, rgba(7,19,34,.96) 100%); pointer-events: none; }
.about-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.about-brand-lockup { position: absolute; z-index: 2; top: 28px; left: 28px; width: 205px; padding: 8px 11px; background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.72); border-radius: 16px; box-shadow: 0 14px 30px rgba(7,19,34,.2); }
.about-brand-lockup img { width: 100%; height: auto; }
.portrait-disclosure { position: absolute; z-index: 2; top: 28px; right: 28px; padding: 7px 10px; color: rgba(255,255,255,.88); background: rgba(7,19,34,.68); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; backdrop-filter: blur(8px); font-size: 8px; font-weight: 800; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.about-card-copy { position: relative; z-index: 2; }
.about-label { margin-bottom: 19px; color: #d9e5ff; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.about-card blockquote { max-width: 450px; margin: 0 0 25px; font-size: clamp(1.35rem, 2vw, 1.85rem); font-weight: 700; line-height: 1.28; letter-spacing: -.03em; }
.signature strong, .signature span { display: block; }
.signature span { color: #d9e5ff; font-size: 13px; }
.about-copy h2 { margin-bottom: 28px; font-size: clamp(2.5rem, 4vw, 4rem); }
.about-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 16.5px; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 31px; }
.about-facts span { padding: 15px; background: rgba(255,255,255,.58); border: 1px solid var(--line); border-radius: 13px; color: var(--ink-soft); font-size: 12px; line-height: 1.4; }
.about-facts strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 14px; }

.testimonial-section { color: var(--white); background: var(--ink); }
.testimonial-grid { display: grid; grid-template-columns: minmax(260px, 320px) 1fr; gap: 72px; align-items: center; }
.testimonial-portrait { position: relative; overflow: hidden; width: 100%; margin: 0; background: #203753; border: 1px solid rgba(255,255,255,.14); border-radius: 20px 20px 64px 20px; box-shadow: 0 24px 55px rgba(5,16,30,.28); }
.testimonial-portrait::after { content: "Echte Zusammenarbeit"; position: absolute; left: 16px; bottom: 16px; padding: 7px 10px; color: var(--ink); background: rgba(255,253,249,.9); border-radius: 6px; font-size: 10px; font-weight: 800; letter-spacing: .04em; }
.testimonial-portrait img { width: 100%; aspect-ratio: 4 / 4.5; object-fit: cover; object-position: center 28%; }
.testimonial-copy h2 { max-width: 820px; margin-bottom: 30px; font-size: clamp(2.65rem, 4.4vw, 4.4rem); }
.testimonial-copy blockquote { max-width: 880px; margin: 0 0 34px; padding-left: 27px; border-left: 3px solid var(--coral); color: rgba(255,255,255,.86); font-family: var(--font-body); font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 520; line-height: 1.55; }
.testimonial-meta { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.testimonial-meta strong, .testimonial-meta span { display: block; }
.testimonial-meta strong { font-size: 17px; }
.testimonial-meta div > span { margin-top: 3px; color: rgba(255,255,255,.6); font-size: 13px; }
.testimonial-meta > a { color: #b9cdfd; font-size: 14px; font-weight: 750; text-underline-offset: 5px; }
.testimonial-meta > a span { display: inline; margin-left: 4px; }

.pricing-section { background: var(--white); }
.package-included { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px 48px; margin-bottom: 38px; padding: 38px 40px 30px; color: var(--white); background: var(--ink); border-radius: var(--radius-lg); box-shadow: 0 20px 48px rgba(16,36,62,.14); }
.package-included .price-kicker { color: #a9c1fa; }
.package-included-intro h3 { max-width: 470px; margin-bottom: 14px; font-size: clamp(1.75rem, 2.6vw, 2.45rem); }
.package-included-intro > p:last-child { margin-bottom: 0; color: rgba(255,255,255,.68); font-size: 14px; }
.package-included-list { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 24px; align-content: start; margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.84); font-size: 13px; font-weight: 650; }
.package-included-list li { position: relative; padding-left: 25px; }
.package-included-list li::before { content: "\2713"; position: absolute; left: 0; color: #9db9fa; font-weight: 900; }
.package-included-note { grid-column: 1 / -1; margin: 0; padding-top: 23px; color: rgba(255,255,255,.62); border-top: 1px solid rgba(255,255,255,.14); font-size: 11.5px; line-height: 1.6; }
.package-included-note strong { color: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 36px 31px 31px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); }
.price-card-featured { background: #eaf0ff; border-color: rgba(47,109,246,.38); box-shadow: 0 22px 50px rgba(47,109,246,.14); transform: translateY(-12px); }
.price-card-featured { padding-top: 68px; }
.price-badge { position: absolute; top: 20px; left: 31px; right: auto; max-width: calc(100% - 62px); margin: 0; padding: 7px 10px; color: var(--white); background: var(--blue); border-radius: 999px; font-size: 9px; font-weight: 850; letter-spacing: .08em; line-height: 1; text-transform: uppercase; }
.price-kicker { margin-bottom: 10px; color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .085em; text-transform: uppercase; }
.price-card h3 { margin-bottom: 15px; font-size: 31px; }
.price { display: flex; align-items: baseline; gap: 9px; margin-bottom: 22px; }
.price span { color: var(--ink); font-size: clamp(2.25rem, 3.4vw, 3.15rem); font-weight: 820; line-height: 1; letter-spacing: -.055em; }
.price small { color: var(--ink-soft); font-size: 11px; font-weight: 750; }
.price-description { min-height: 122px; margin-bottom: 22px; color: var(--ink-soft); font-size: 14px; }
.price-description strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: 12px; letter-spacing: .01em; }
.price-card ul, .care-card ul { display: grid; gap: 11px; margin: 0; padding: 22px 0 27px; border-top: 1px solid var(--line); list-style: none; color: var(--ink-soft); font-size: 13px; font-weight: 650; }
.price-card li, .care-card li { position: relative; padding-left: 24px; }
.price-card li::before, .care-card li::before { content: "\2713"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }
.price-button { width: 100%; margin-top: auto; color: var(--white); background: var(--ink); }
.price-button:hover { background: var(--blue); transform: translateY(-2px); }
.price-card-featured .price-button { background: var(--blue); }
.price-card-featured .price-button:hover { background: var(--blue-dark); }
.custom-offer { display: grid; grid-template-columns: 1.05fr 1fr auto; gap: 34px; align-items: center; margin-top: 30px; padding: 34px 38px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.custom-offer-copy h3 { margin-bottom: 10px; font-size: clamp(1.65rem, 2.5vw, 2.25rem); }
.custom-offer-copy > p:last-child { margin-bottom: 0; color: var(--ink-soft); font-size: 13px; }
.custom-offer-services { display: flex; flex-wrap: wrap; gap: 8px; }
.custom-offer-services span { padding: 8px 10px; color: var(--ink-soft); background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 700; }
.custom-offer-button { min-width: 220px; color: var(--white); background: var(--ink); text-align: center; }
.custom-offer-button:hover { background: var(--blue); transform: translateY(-2px); }
.care-card { display: grid; grid-template-columns: 1.1fr .42fr 1fr auto; gap: 35px; align-items: center; margin-top: 22px; padding: 40px 42px; color: var(--white); background: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.care-heading h3 { margin-bottom: 12px; font-size: clamp(2rem, 3.2vw, 3rem); }
.care-heading > p:last-child { max-width: 470px; margin-bottom: 0; color: rgba(255,255,255,.68); font-size: 14px; }
.care-card .price-kicker { color: #9ebcfb; }
.care-price strong, .care-price span { display: block; }
.care-price strong { font-size: clamp(2.5rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -.055em; }
.care-price span { margin-top: 7px; color: rgba(255,255,255,.6); font-size: 12px; font-weight: 700; }
.care-card ul { margin: 0; padding: 0; border: 0; color: rgba(255,255,255,.74); }
.care-card li::before { color: #8fb0fb; }
.care-card .button { white-space: nowrap; }
.pricing-note { max-width: 980px; margin: 26px auto 0; color: var(--ink-soft); font-size: 11.5px; line-height: 1.6; text-align: center; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .68fr 1.12fr; gap: 100px; }
.faq-grid .section-heading { margin-bottom: 0; }
.faq-grid h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 54px 25px 0; cursor: pointer; font-size: 18px; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; top: 23px; right: 5px; width: 30px; height: 30px; display: grid; color: var(--blue); background: rgba(47,109,246,.09); border-radius: 50%; place-items: center; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; margin: -5px 54px 26px 0; color: var(--ink-soft); }

.contact-section { padding: 0 0 38px; background: var(--paper); }
.contact-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.1fr .72fr; gap: 80px; align-items: center; padding: 72px; color: var(--white); background: var(--ink); border-radius: var(--radius-lg); }
.contact-panel::before { content: ""; position: absolute; width: 460px; height: 460px; right: -230px; bottom: -250px; background: var(--blue); border-radius: 50%; opacity: .45; filter: blur(8px); }
.contact-copy, .contact-card { position: relative; z-index: 1; }
.contact-copy h2 { margin-bottom: 24px; font-size: clamp(2.7rem, 4.6vw, 4.5rem); }
.contact-copy > p:last-child { max-width: 630px; margin-bottom: 0; color: rgba(255,255,255,.68); font-size: 17px; }
.contact-card { padding: 32px; color: var(--ink); background: var(--white); border-radius: var(--radius-md); box-shadow: 0 24px 55px rgba(0,0,0,.18); }
.contact-card > p:first-child { margin-bottom: 13px; color: var(--ink-soft); font-size: 13px; }
.whatsapp-link { display: grid; grid-template-columns: 44px 1fr 22px; gap: 13px; align-items: center; min-height: 72px; padding: 12px 14px; color: var(--white); background: var(--whatsapp); border-radius: 15px; text-decoration: none; transition: background 180ms ease, transform 180ms var(--ease); }
.whatsapp-link:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.whatsapp-link.is-placeholder { color: var(--ink-soft); background: var(--paper); cursor: not-allowed; transform: none; }
.whatsapp-link-icon { width: 42px; height: 42px; display: grid; background: rgba(255,255,255,.16); border-radius: 12px; place-items: center; }
.whatsapp-link.is-placeholder .whatsapp-link-icon { color: var(--whatsapp); background: rgba(31,157,104,.1); }
.whatsapp-link small, .whatsapp-link strong { display: block; line-height: 1.3; }
.whatsapp-link small { margin-bottom: 2px; color: rgba(255,255,255,.75); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.whatsapp-link.is-placeholder small { color: var(--ink-soft); }
.whatsapp-link strong { font-size: 14px; }
.whatsapp-arrow { width: 19px; }
.email-link { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 58px; color: var(--blue); border-bottom: 2px solid var(--blue); font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 800; line-height: 1.3; text-decoration: none; word-break: break-word; }
.contact-status { margin: 9px 0 0; color: var(--coral); font-size: 11px; font-weight: 700; }
.contact-divider { display: flex; align-items: center; gap: 12px; margin: 23px 0 5px; color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-divider::before, .contact-divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.contact-reassurance { display: flex; gap: 11px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.contact-reassurance > span { width: 23px; height: 23px; flex: 0 0 auto; display: grid; color: var(--white); background: #28a96b; border-radius: 50%; place-items: center; font-size: 12px; }
.contact-reassurance p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.5; }
.contact-reassurance strong { color: var(--ink); font-size: 13px; }
.whatsapp-float { position: fixed; z-index: 90; right: 20px; bottom: 20px; display: none; align-items: center; gap: 9px; min-height: 50px; padding: 12px 17px; color: var(--white); background: var(--whatsapp); border-radius: 999px; box-shadow: 0 14px 35px rgba(16,36,62,.24); font-size: 13px; font-weight: 800; text-decoration: none; }
.whatsapp-float[hidden] { display: none !important; }

.site-footer { padding: 56px 0 25px; color: rgba(255,255,255,.65); background: #09182b; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; padding-bottom: 50px; }
.brand-footer { color: var(--white); }
.brand-footer .brand-mark { padding: 4px; background: var(--white); border-radius: 13px; }
.footer-main > div:first-child > p { max-width: 370px; margin: 22px 0 0; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; }
.footer-links div { display: grid; align-content: start; gap: 8px; }
.footer-links strong { margin-bottom: 8px; color: var(--white); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { width: fit-content; font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 11px; }

.legal-main { min-height: 75vh; padding: 150px 0 100px; background: var(--white); }
.legal-shell { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.legal-back { display: inline-flex; gap: 8px; margin-bottom: 35px; color: var(--blue); font-size: 14px; font-weight: 750; text-decoration: none; }
.legal-main h1 { margin-bottom: 18px; font-size: clamp(2.8rem, 6vw, 4.8rem); }
.legal-intro { margin-bottom: 50px; color: var(--ink-soft); font-size: 17px; }
.legal-main section { padding: 27px 0; border-top: 1px solid var(--line); }
.legal-main h2 { margin-bottom: 14px; font-size: 25px; letter-spacing: -.025em; }
.legal-main h3 { margin: 20px 0 8px; font-size: 18px; letter-spacing: -.02em; }
.legal-main p, .legal-main li { color: var(--ink-soft); }
.legal-main address { color: var(--ink-soft); font-style: normal; }
.legal-note { padding: 15px 18px; color: #7b3e2f !important; background: #fff0eb; border-radius: 12px; font-size: 13px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 650ms var(--ease) var(--delay, 0ms), transform 650ms var(--ease) var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr 0.85fr; gap: 40px; }
  .hero-visual { margin-right: 12px; }
  .audience-list { justify-content: flex-start; overflow: hidden; }
  .audience-list > *:nth-last-child(-n+4) { display: none; }
  .service-card { padding-inline: 25px; }
  .process-layout, .about-grid, .faq-grid { gap: 55px; }
  .audience-panel, .contact-panel { gap: 42px; padding: 40px; }
  .custom-offer { grid-template-columns: 1fr 1fr; }
  .custom-offer-button { grid-column: 1 / -1; width: fit-content; }
  .care-card { grid-template-columns: 1fr .42fr 1.1fr; }
  .care-card .button { grid-column: 1 / -1; width: fit-content; }
}

@media (max-width: 820px) {
  .section { padding: 85px 0; }
  .menu-toggle { position: relative; z-index: 102; display: block; }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: 101; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 28px; padding: 100px 28px; color: var(--ink); background: var(--paper); opacity: 0; visibility: hidden; transform: translateY(-14px); transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { font-size: 24px; }
  .site-nav .nav-cta { margin-top: 10px; color: var(--white); font-size: 17px; }
  .hero { min-height: auto; padding: 135px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-visual { width: min(90%, 620px); margin: 16px auto 0; }
  .visual-note-top { left: -30px; }
  .split-heading, .process-layout, .audience-panel, .about-grid, .testimonial-grid, .faq-grid, .contact-panel, .footer-main { grid-template-columns: 1fr; }
  .split-heading { gap: 25px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .problem-card:last-child { grid-column: 1 / -1; min-height: auto; }
  .problem-card:last-child .problem-media img { aspect-ratio: 2 / 1; }
  .service-grid { grid-template-columns: 1fr; max-width: 630px; margin-inline: auto; }
  .service-card-dark { transform: none; }
  .service-card > p:not(.card-kicker) { min-height: auto; }
  .process-intro { position: static; }
  .audience-panel { max-width: 690px; margin-inline: auto; padding: 30px; }
  .audience-content { padding: 8px 12px 12px; }
  .about-card { min-height: 620px; }
  .testimonial-grid { max-width: 690px; margin-inline: auto; gap: 46px; }
  .testimonial-portrait { width: min(52%, 320px); }
  .package-included { grid-template-columns: 1fr; max-width: 690px; margin-inline: auto; }
  .package-included-note { grid-column: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .price-card-featured { transform: none; }
  .price-description { min-height: auto; }
  .custom-offer { grid-template-columns: 1fr; max-width: 690px; margin-inline: auto; }
  .custom-offer-button { grid-column: auto; }
  .care-card { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
  .care-card .button { grid-column: auto; }
  .faq-grid { gap: 35px; }
  .contact-panel { gap: 40px; }
}

@media (max-width: 560px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 70px 0; }
  .legal-main h1 { font-size: clamp(2.1rem, 11vw, 3.1rem); overflow-wrap: anywhere; }
  .legal-main a { overflow-wrap: anywhere; }
  .nav-wrap { height: 76px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { padding: 116px 0 66px; }
  h1 { font-size: clamp(2.72rem, 13vw, 4rem); }
  .hero-lead { font-size: 1.18rem; }
  .hero-text { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .button { width: 100%; }
  .hero-trust { display: grid; }
  .hero-visual { width: 100%; }
  .visual-frame { border-width: 5px; border-radius: 24px; }
  .visual-note { min-width: 0; padding: 11px 13px; }
  .visual-note-top { top: 8%; left: -4px; }
  .visual-note-bottom { right: -4px; bottom: 7%; }
  .visual-note small { display: none; }
  .audience-list { min-height: 70px; }
  .audience-list > *:nth-child(n+6) { display: none; }
  .section-heading { margin-bottom: 38px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card, .problem-card:last-child { grid-column: auto; min-height: auto; padding: 18px; }
  .problem-card:last-child .problem-media img { aspect-ratio: 3 / 2; }
  .problem-media { margin-bottom: 22px; }
  .service-card { padding: 29px 25px; }
  .service-icon { margin-bottom: 37px; }
  .service-note { align-items: flex-start; }
  .process-list li { grid-template-columns: 48px 1fr; gap: 15px; }
  .process-list li > span { width: 40px; height: 40px; }
  .audience-panel, .contact-panel { padding: 24px; border-radius: 24px; }
  .audience-content { padding: 5px 0 0; }
  .audience-tags { grid-template-columns: 1fr; }
  .about-card { min-height: 590px; padding: 28px; border-radius: 24px; }
  .about-brand-lockup { top: 22px; left: 22px; width: 175px; }
  .portrait-disclosure { top: 22px; right: 22px; max-width: 112px; text-align: center; }
  .about-facts { grid-template-columns: 1fr; }
  .testimonial-copy blockquote { padding-left: 19px; }
  .testimonial-grid { gap: 34px; }
  .testimonial-portrait { width: min(84%, 300px); border-radius: 18px 18px 52px 18px; }
  .testimonial-meta { align-items: flex-start; flex-direction: column; gap: 18px; }
  .package-included { gap: 26px; padding: 30px 24px 25px; border-radius: 24px; }
  .package-included-list { grid-template-columns: 1fr; }
  .price-card { padding: 31px 24px 25px; }
  .price-card-featured { padding-top: 31px; }
  .price-badge { position: static; width: fit-content; max-width: 100%; margin: 0 0 20px; }
  .custom-offer { gap: 25px; padding: 29px 24px; border-radius: 24px; }
  .custom-offer-button { min-width: 0; width: 100%; }
  .care-card { padding: 33px 24px; border-radius: 24px; }
  .care-card .button { width: 100%; }
  .contact-card { padding: 24px; }
  .whatsapp-float { display: flex; }
  .footer-main { gap: 45px; }
  .footer-links { gap: 25px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
