/* Happy Ads Studio – static website styles */

:root {
  --color-bg: #fff7ed;
  --color-bg-soft: #f8e9d3;
  --color-bg-warm: #fff1d6;
  --color-text: #111111;
  --color-muted: #6e6258;
  --color-accent: #f5a400;
  --color-accent-strong: #ffb000;
  --color-card: #ffffff;
  --color-border: rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 18px 50px rgba(17, 17, 17, 0.08);
  --shadow-card: 0 16px 40px rgba(17, 17, 17, 0.07);
  --radius-card: 28px;
  --radius-button: 999px;
  --container: 1160px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 17px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

p {
  margin: 0 0 1.1rem;
  color: var(--color-muted);
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--color-text);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(2.55rem, 5.6vw, 4.65rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 760px;
}

h3 {
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

h4 {
  margin-top: 0.8rem;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

ul {
  color: var(--color-muted);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.section {
  padding: 104px 0;
  position: relative;
}

.soft-section {
  background:
    radial-gradient(circle at top right, rgba(245, 164, 0, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.36), rgba(255,255,255,0.02));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-accent);
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: #3b332d;
  max-width: 720px;
}

.section-heading {
  margin-bottom: 36px;
  max-width: 800px;
}

.section-heading p {
  max-width: 740px;
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.centered h2,
.centered p {
  margin-left: auto;
  margin-right: auto;
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--color-text);
  color: #fff;
  border-radius: 10px;
}

.skip-link:focus {
  left: 12px;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 237, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  width: 174px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.main-nav a {
  text-decoration: none;
  font-weight: 750;
  font-size: 0.95rem;
  color: #28221d;
  transition: color var(--transition);
}

.main-nav a:hover {
  color: var(--color-accent);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  border-radius: 99px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: var(--radius-button);
  text-decoration: none;
  font-weight: 850;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-strong));
  color: var(--color-text);
  box-shadow: 0 12px 28px rgba(245, 164, 0, 0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.65);
  border-color: rgba(17, 17, 17, 0.12);
  color: var(--color-text);
}

.btn-secondary:hover {
  background: #fff;
  box-shadow: var(--shadow-card);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

/* Hero */
.hero {
  padding-top: 74px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: rgba(245, 164, 0, 0.18);
  left: -210px;
  bottom: -170px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 56px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 700px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 22px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(245, 164, 0, 0.13);
  z-index: -1;
}

.phone-mockup {
  position: absolute;
  right: 80px;
  top: 35px;
  width: 278px;
  height: 540px;
  background: #111;
  border-radius: 42px;
  padding: 13px;
  box-shadow: 0 32px 70px rgba(17, 17, 17, 0.22);
  transform: rotate(4deg);
}

.phone-top {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 86px;
  height: 22px;
  transform: translateX(-50%);
  background: #111;
  border-radius: 999px;
  z-index: 3;
}

.phone-screen {
  height: 100%;
  border-radius: 31px;
  background:
    radial-gradient(circle at top left, rgba(245,164,0,0.35), transparent 38%),
    linear-gradient(180deg, #fff7ed, #f6dfbf);
  overflow: hidden;
  padding: 38px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.screen-label {
  position: absolute;
  top: 58px;
  left: 38px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 12px rgba(17,17,17,0.35);
}

.mock-image {
  margin-bottom: auto;
  height: 250px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.25)),
    linear-gradient(145deg, #e9d4ba, #f8eddf);
  position: relative;
  overflow: hidden;
}

.mock-circle {
  position: absolute;
  width: 96px;
  height: 96px;
  background: rgba(245, 164, 0, 0.38);
  border-radius: 50%;
  right: -18px;
  top: 25px;
}

.mock-lines {
  position: absolute;
  left: 24px;
  bottom: 32px;
  width: 142px;
}

.mock-lines span {
  display: block;
  height: 10px;
  margin: 10px 0;
  border-radius: 999px;
  background: rgba(17,17,17,0.18);
}

.mock-lines span:nth-child(2) { width: 78%; }
.mock-lines span:nth-child(3) { width: 55%; background: var(--color-accent); }

.mock-copy {
  margin-top: 18px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(17,17,17,0.25);
}

.mock-copy strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.mock-copy span {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
}

.mock-button {
  margin-top: 16px;
  background: rgba(255,255,255,0.88);
  color: #111;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 850;
  text-align: center;
  font-size: 0.9rem;
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(17,17,17,0.07);
  box-shadow: var(--shadow-card);
  border-radius: 24px;
  padding: 18px 20px;
  min-width: 210px;
  backdrop-filter: blur(10px);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card small {
  color: var(--color-muted);
  margin-top: 4px;
}

.mini-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 164, 0, 0.16);
  color: var(--color-accent);
  font-weight: 900;
  margin-bottom: 12px;
}

.card-hook {
  left: 10px;
  top: 108px;
}

.card-creative {
  left: 40px;
  bottom: 72px;
}

.card-message {
  right: 0;
  bottom: 145px;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 26px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.service-card,
.step-card,
.method-card,
.principles > div {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.info-card,
.service-card {
  padding: 30px;
}

.card-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: rgba(245, 164, 0, 0.14);
  color: var(--color-accent);
  border-radius: 50%;
  font-weight: 950;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.info-card p,
.service-card p,
.step-card p,
.method-card p,
.principles p {
  margin-bottom: 0;
}

.info-card h3,
.service-card h3,
.step-card h3,
.method-card h3 {
  margin-bottom: 12px;
}

.service-card {
  position: relative;
  min-height: 100%;
}

.service-card.featured {
  border: 2px solid rgba(245, 164, 0, 0.65);
  background:
    radial-gradient(circle at top right, rgba(245,164,0,0.15), transparent 45%),
    rgba(255,255,255,0.9);
  transform: translateY(-10px);
}

.badge {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--color-text);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  margin-bottom: 20px;
}

.note {
  margin-top: 18px;
  font-weight: 800;
  color: #2d241c;
}

/* Split & method */
.split-section {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 54px;
  align-items: start;
}

.method-stack {
  display: grid;
  gap: 18px;
}

.method-card {
  padding: 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: start;
}

.method-card span,
.step-card span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 164, 0, 0.15);
  color: var(--color-accent);
  align-items: center;
  justify-content: center;
  font-weight: 950;
  line-height: 1;
}

.method-card h3,
.method-card p {
  grid-column: 2;
}

.method-card span {
  grid-row: 1 / span 2;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  padding: 26px;
}

.step-card span {
  margin-bottom: 20px;
}

.principles {
  display: grid;
  gap: 18px;
}

.principles > div {
  padding: 26px;
}

.principles h3 {
  margin-bottom: 10px;
}

.target-box,
.cta-box {
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(245,164,0,0.22), transparent 38%),
    rgba(255,255,255,0.78);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  padding: clamp(34px, 5vw, 58px);
}

.target-box {
  max-width: 960px;
}

.target-box p:last-child {
  margin-bottom: 0;
}

.final-cta {
  padding-top: 56px;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
}

/* Footer */
.site-footer {
  padding: 54px 0;
  background: #111;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 32px;
  align-items: start;
}

.footer-brand img {
  width: 210px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand p {
  color: rgba(255,255,255,0.72);
  margin-top: 18px;
  margin-bottom: 0;
  font-weight: 700;
}

.footer-links h2 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.84);
  margin: 9px 0;
  transition: color var(--transition);
}

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

/* Legal pages */
.legal-main {
  padding: 84px 0 110px;
}

.legal-content {
  max-width: 860px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--color-border);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  padding: clamp(32px, 5vw, 64px);
}

.legal-content h1 {
  margin-bottom: 36px;
}

.legal-content h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  margin-top: 34px;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content a {
  color: var(--color-text);
  font-weight: 750;
  text-decoration-color: rgba(245,164,0,0.8);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .split-section,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .service-card.featured {
    transform: none;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 52px;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 150px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--color-border);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 8px;
  }

  .legal-nav {
    display: flex;
    position: static;
    flex-direction: row;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin-left: auto;
    gap: 12px;
  }

  .legal-nav a {
    width: auto;
    padding: 0;
    font-size: 0.86rem;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 20px;
  }

  .phone-mockup {
    right: 50%;
    transform: translateX(50%) rotate(3deg);
    width: 244px;
    height: 480px;
  }

  .floating-card {
    min-width: 170px;
    padding: 15px 16px;
  }

  .card-hook {
    left: 0;
    top: 28px;
  }

  .card-creative {
    left: 0;
    bottom: 48px;
  }

  .card-message {
    right: 0;
    bottom: 108px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: 190px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .hero-visual {
    min-height: 450px;
  }

  .phone-mockup {
    width: 214px;
    height: 424px;
  }

  .floating-card {
    font-size: 0.86rem;
    min-width: 150px;
  }

  .card-message {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .service-card,
  .step-card,
  .method-card,
  .principles > div {
    padding: 24px;
  }

  .legal-nav {
    display: none;
  }

  .legal-content {
    border-radius: 24px;
  }
}


/* Version 2 refinements: calmer logo, typography and hero visual */
:root {
  --shadow-soft: 0 16px 42px rgba(17, 17, 17, 0.07);
  --shadow-card: 0 12px 32px rgba(17, 17, 17, 0.055);
}

body { font-size: 16.5px; }

h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.05rem);
  letter-spacing: -0.045em;
}

h2 { font-size: clamp(1.85rem, 3.35vw, 2.65rem); }

h3 { font-size: 1.18rem; }

.section { padding: 88px 0; }

.hero { padding-top: 58px; }

.header-inner { min-height: 74px; }

.brand img { width: 132px; }

.btn {
  min-height: 48px;
  padding: 13px 20px;
}

.header-cta {
  padding-left: 18px;
  padding-right: 18px;
  font-size: 0.9rem;
}

.section-heading { margin-bottom: 30px; }

.info-card,
.service-card { padding: 26px; }

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.phone-mockup,
.floating-card,
.hero-visual::after { display: none; }

.hero-grid { gap: 48px; }

.hero-visual.refined-visual {
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.refined-visual::before {
  content: "";
  position: absolute;
  inset: 44px 12px 16px 70px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(245, 164, 0, 0.16), rgba(255,255,255,0.2));
  transform: rotate(-2deg);
  z-index: -2;
}

.visual-board {
  width: min(100%, 430px);
  border-radius: 34px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: 0 26px 70px rgba(17,17,17,0.11);
  padding: 22px;
  position: relative;
}

.board-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #2d241c;
  font-weight: 900;
}

.board-header span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 22px 0 0 rgba(245,164,0,0.42), 44px 0 0 rgba(17,17,17,0.14);
  margin-right: 46px;
}

.creative-preview {
  min-height: 210px;
  border-radius: 28px;
  padding: 28px;
  background:
    radial-gradient(circle at 82% 22%, rgba(245,164,0,0.36), transparent 24%),
    linear-gradient(135deg, #fff7ed, #f2d8b7);
  position: relative;
  overflow: hidden;
}

.creative-preview::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,0.34);
}

.preview-accent {
  width: 74px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-accent);
  margin-bottom: 34px;
}

.creative-preview p {
  margin: 0 0 8px;
  color: var(--color-text);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.creative-preview h3 {
  max-width: 250px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.06em;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.creative-preview span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  padding: 10px 14px;
  color: #4d4239;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.board-card {
  border-radius: 22px;
  background: #fff7ed;
  border: 1px solid rgba(17,17,17,0.06);
  padding: 16px;
}

.board-card.wide { grid-column: 1 / -1; }

.board-card small,
.side-note small {
  display: block;
  color: var(--color-muted);
  font-weight: 750;
}

.board-card strong,
.side-note strong {
  display: block;
  margin-top: 4px;
  color: var(--color-text);
  font-size: 1.04rem;
}

.side-note {
  position: absolute;
  min-width: 170px;
  border-radius: 24px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: var(--shadow-card);
  padding: 16px 18px;
}

.side-note span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245,164,0,0.14);
  color: var(--color-accent);
  font-weight: 950;
  margin-bottom: 10px;
}

.note-top { top: 52px; left: 0; }

.note-bottom { bottom: 46px; right: 0; }

.footer-brand img { width: 142px; }

.footer-brand p { font-size: 0.95rem; }

.legal-content { padding: clamp(30px, 4.5vw, 54px); }

@media (max-width: 1080px) {
  .hero-visual.refined-visual { min-height: 445px; }
}

@media (max-width: 820px) {
  .brand img { width: 122px; }

  .section { padding: 68px 0; }

  .hero { padding-top: 44px; }

  .hero-visual.refined-visual {
    min-height: auto;
    margin-top: 32px;
    padding: 28px 0 8px;
  }

  .refined-visual::before { inset: 16px 0 0 26px; }

  .side-note {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    min-width: 0;
    width: min(100%, 430px);
  }

  .note-bottom { margin-top: 10px; }

  .visual-board { width: min(100%, 430px); }

  .footer-brand img { width: 132px; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.12rem, 10.5vw, 2.8rem); }

  h2 { font-size: clamp(1.7rem, 8vw, 2.1rem); }

  .brand img { width: 112px; }

  .creative-preview {
    min-height: 190px;
    padding: 22px;
  }

  .creative-preview h3 { font-size: 2rem; }

  .board-grid { grid-template-columns: 1fr; }

  .board-card.wide { grid-column: auto; }
}


/* Version 3 refinements: unified section heading system */
.section-heading,
.section-heading.centered {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 800px;
}

.section-heading h2,
.section-heading p,
.centered h2,
.centered p {
  margin-left: 0;
  margin-right: 0;
}

.section-heading p {
  max-width: 740px;
}

#leistungen .section-heading,
#ablauf .section-heading {
  margin-bottom: 34px;
}

#leistungen .card-grid,
#ablauf .steps-grid,
#wunschbild .card-grid {
  margin-top: 0;
}

.final-cta .cta-box {
  text-align: left;
}

@media (max-width: 820px) {
  .section-heading,
  .section-heading.centered {
    max-width: 100%;
  }
}


/* Version 4 refinements: Konzept, calmer header, larger title spacing, premium hero graphic */
.site-header {
  background: rgba(255, 247, 237, 0.94);
  border-bottom: 1px solid rgba(17, 17, 17, 0.045);
}

.header-inner {
  min-height: 88px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.brand img {
  width: 112px;
}

.footer-brand img {
  width: 112px;
}

.hero {
  padding-top: 72px;
}

.hero-copy h1 {
  margin-bottom: 30px;
}

.hero-copy .lead {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin-bottom: 28px;
}

.section-heading .eyebrow {
  margin-bottom: 20px;
}

.section-heading p:first-of-type {
  margin-top: 0;
}

.legal-content h1 {
  margin-bottom: 44px;
}

/* Disable earlier hero versions safely */
.hero-visual.refined-visual,
.visual-board,
.side-note,
.phone-mockup,
.floating-card {
  display: none !important;
}

/* Premium hero visual */
.hero-visual.premium-visual {
  min-height: 540px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
}

.premium-visual::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,164,0,0.22), rgba(245,164,0,0.03) 62%, transparent 72%);
  right: 6%;
  top: 8%;
  z-index: -2;
}

.premium-stage {
  position: relative;
  width: min(100%, 520px);
  min-height: 500px;
}

.ad-card,
.story-card,
.concept-strip {
  border: 1px solid rgba(17,17,17,0.075);
  box-shadow: 0 24px 68px rgba(17,17,17,0.10);
}

.ad-card.primary-ad {
  position: absolute;
  left: 0;
  top: 26px;
  width: 360px;
  border-radius: 36px;
  background: rgba(255,255,255,0.92);
  padding: 20px;
  z-index: 2;
}

.ad-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #2d241c;
  font-weight: 900;
}

.ad-topline span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 24px 0 0 rgba(245,164,0,0.38), 48px 0 0 rgba(17,17,17,0.12);
  margin-right: 52px;
}

.ad-visual {
  height: 250px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.42), rgba(255,255,255,0.12)),
    linear-gradient(135deg, #f6dfbd, #fff7ed 52%, #efcf9c);
  position: relative;
  overflow: hidden;
}

.ad-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 24px;
}

.sun-mark {
  position: absolute;
  right: 30px;
  top: 28px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(245,164,0,0.36);
}

.sun-mark::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  background: rgba(255,247,237,0.62);
}

.visual-lines {
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: 190px;
}

.visual-lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(17,17,17,0.16);
  margin-top: 12px;
}

.visual-lines span:nth-child(1) {
  width: 100%;
  height: 16px;
  background: rgba(17,17,17,0.72);
}

.visual-lines span:nth-child(2) {
  width: 74%;
}

.visual-lines span:nth-child(3) {
  width: 48%;
  background: var(--color-accent);
}

.ad-copy {
  padding: 20px 4px 2px;
}

.ad-copy p {
  color: var(--color-accent);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 0.76rem;
  margin: 0 0 8px;
}

.ad-copy h3 {
  font-size: 2.1rem;
  letter-spacing: -0.06em;
  margin-bottom: 8px;
}

.ad-copy small {
  color: var(--color-muted);
  font-weight: 760;
}

.story-card {
  position: absolute;
  right: 0;
  top: 86px;
  width: 176px;
  height: 310px;
  border-radius: 34px;
  background: #111;
  padding: 10px;
  z-index: 1;
}

.story-frame {
  height: 100%;
  border-radius: 25px;
  background:
    radial-gradient(circle at top right, rgba(245,164,0,0.48), transparent 38%),
    linear-gradient(180deg, #fff7ed, #f4ddbf);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.story-frame span {
  align-self: flex-start;
  background: rgba(255,255,255,0.75);
  border-radius: 999px;
  padding: 7px 10px;
  color: #4d4239;
  font-weight: 850;
  font-size: 0.78rem;
  margin-bottom: auto;
}

.story-frame strong {
  font-size: 1.25rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.story-frame small {
  color: var(--color-muted);
  font-weight: 760;
}

.concept-strip {
  position: absolute;
  left: 56px;
  bottom: 0;
  width: 390px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  padding: 14px;
  z-index: 3;
}

.concept-strip div {
  border-radius: 20px;
  background: #fff7ed;
  padding: 14px 12px;
}

.concept-strip span {
  display: block;
  color: var(--color-accent);
  font-weight: 950;
  margin-bottom: 4px;
}

.concept-strip strong {
  display: block;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

/* More breathing space after direct headings in content blocks */
.target-box h2,
.cta-box h2 {
  margin-bottom: 26px;
}

.service-card h3,
.info-card h3,
.step-card h3,
.method-card h3,
.principles h3 {
  margin-bottom: 16px;
}

@media (max-width: 1080px) {
  .hero-visual.premium-visual {
    min-height: 520px;
  }

  .premium-stage {
    width: min(100%, 500px);
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 82px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand img {
    width: 106px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-copy h1 {
    margin-bottom: 24px;
  }

  .section-heading h2 {
    margin-bottom: 22px;
  }

  .hero-visual.premium-visual {
    min-height: 650px;
    padding-top: 24px;
  }

  .premium-stage {
    min-height: 620px;
    width: min(100%, 390px);
  }

  .ad-card.primary-ad {
    width: 100%;
    top: 0;
  }

  .story-card {
    right: 12px;
    top: 326px;
    width: 154px;
    height: 270px;
  }

  .concept-strip {
    left: 0;
    bottom: 0;
    width: calc(100% - 176px);
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: 106px;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 96px;
  }

  .hero-visual.premium-visual {
    min-height: auto;
    padding-bottom: 0;
  }

  .premium-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .ad-card.primary-ad,
  .story-card,
  .concept-strip {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .ad-card.primary-ad {
    padding: 16px;
  }

  .ad-visual {
    height: 210px;
  }

  .story-card {
    height: 250px;
  }

  .concept-strip {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: 96px;
  }
}


/* Version 5: premium, non-overlapping Hero-Moodboard with claim */
.hero-visual.premium-visual,
.premium-stage,
.ad-card,
.story-card,
.concept-strip,
.hero-visual.refined-visual,
.visual-board,
.side-note,
.phone-mockup,
.floating-card {
  display: none !important;
}

.hero-visual.moodboard-visual {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  position: relative;
}

.hero-visual.moodboard-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: 0;
  top: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(245,164,0,0.24), rgba(245,164,0,0.07) 54%, transparent 72%);
  z-index: -2;
}

.hero-visual.moodboard-visual::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 28px;
  width: 230px;
  height: 230px;
  border-radius: 44px;
  background: rgba(255,255,255,0.32);
  transform: rotate(8deg);
  z-index: -1;
}

.moodboard {
  width: min(100%, 585px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(185px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.moodboard-feed,
.claim-card,
.story-preview,
.concept-row {
  border: 1px solid rgba(17,17,17,0.075);
  box-shadow: 0 22px 60px rgba(17,17,17,0.09);
}

.moodboard-feed {
  border-radius: 38px;
  background: rgba(255,255,255,0.92);
  padding: 22px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.feed-header {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2d241c;
  font-weight: 950;
  margin-bottom: 18px;
}

.feed-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 24px 0 0 rgba(245,164,0,0.36), 48px 0 0 rgba(17,17,17,0.12);
  margin-right: 52px;
}

.feed-art {
  min-height: 265px;
  border-radius: 32px;
  background:
    linear-gradient(140deg, rgba(255,255,255,0.46), rgba(255,255,255,0.10)),
    linear-gradient(135deg, #f3d7ad 0%, #fff7ed 52%, #eec78f 100%);
  position: relative;
  overflow: hidden;
}

.feed-art::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.58);
}

.feed-art::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 36px;
  width: 92px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-accent);
}

.art-orb {
  position: absolute;
  right: 32px;
  top: 34px;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: rgba(245,164,0,0.35);
}

.art-orb::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: rgba(255,247,237,0.64);
}

.art-panel {
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: min(62%, 205px);
}

.art-panel span {
  display: block;
  height: 13px;
  border-radius: 999px;
  background: rgba(17,17,17,0.16);
  margin-top: 13px;
}

.art-panel span:nth-child(1) {
  height: 18px;
  width: 100%;
  background: rgba(17,17,17,0.76);
}

.art-panel span:nth-child(2) {
  width: 78%;
}

.art-panel span:nth-child(3) {
  width: 48%;
  background: var(--color-accent);
}

.feed-copy {
  padding: 22px 4px 0;
}

.feed-copy p {
  margin: 0 0 8px;
  color: var(--color-accent);
  font-weight: 950;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.feed-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(2.15rem, 4.2vw, 3rem);
  letter-spacing: -0.065em;
}

.feed-copy small {
  color: var(--color-muted);
  font-weight: 780;
}

.moodboard-side {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
}

.claim-card {
  border-radius: 30px;
  background: #111;
  color: #fff;
  padding: 24px;
}

.claim-card span {
  display: block;
  color: rgba(255,255,255,0.58);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 850;
  margin-bottom: 15px;
}

.claim-card strong {
  display: block;
  color: #fff;
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.story-preview {
  border-radius: 34px;
  background: #111;
  padding: 10px;
  min-height: 210px;
}

.story-inner {
  height: 100%;
  border-radius: 25px;
  background:
    radial-gradient(circle at top right, rgba(245,164,0,0.48), transparent 38%),
    linear-gradient(180deg, #fff7ed, #f3d6ad);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.story-inner span {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  color: #4d4239;
  font-size: 0.76rem;
  font-weight: 880;
}

.story-inner strong {
  display: block;
  margin-top: 52px;
  font-size: 1.36rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.story-inner small {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-weight: 760;
}

.concept-row {
  border-radius: 30px;
  background: rgba(255,255,255,0.92);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.concept-row div {
  border-radius: 20px;
  background: #fff7ed;
  padding: 12px 14px;
}

.concept-row span {
  display: block;
  color: var(--color-accent);
  font-weight: 950;
  margin-bottom: 2px;
  font-size: 0.78rem;
}

.concept-row strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: -0.025em;
}

@media (max-width: 1080px) {
  .hero-visual.moodboard-visual {
    min-height: auto;
    padding-top: 36px;
  }

  .moodboard {
    width: min(100%, 620px);
    grid-template-columns: 1fr;
  }

  .moodboard-feed {
    min-height: auto;
  }

  .moodboard-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .claim-card {
    grid-column: 1 / -1;
  }

  .concept-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .hero-visual.moodboard-visual {
    padding-top: 26px;
  }

  .moodboard {
    gap: 14px;
  }

  .moodboard-feed {
    border-radius: 30px;
    padding: 16px;
  }

  .feed-art {
    min-height: 220px;
    border-radius: 26px;
  }

  .feed-copy h3 {
    font-size: 2.15rem;
  }

  .moodboard-side {
    grid-template-columns: 1fr;
  }

  .claim-card,
  .story-preview,
  .concept-row {
    border-radius: 26px;
  }

  .concept-row {
    grid-template-columns: 1fr;
  }
}


/* Version 6: finalised key visual, anchor breathing room, footer WhatsApp */
.hero-visual.moodboard-visual,
.moodboard,
.moodboard-feed,
.moodboard-side,
.hero-visual.premium-visual,
.premium-stage,
.ad-card,
.story-card,
.concept-strip,
.hero-visual.refined-visual,
.visual-board,
.side-note,
.phone-mockup,
.floating-card {
  display: none !important;
}

.hero-visual.keyvisual-wrap {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  position: relative;
}

.hero-visual.keyvisual-wrap::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: 0;
  top: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,164,0,0.20), rgba(245,164,0,0.06) 58%, transparent 74%);
  z-index: -1;
}

.hero-keyvisual-img {
  width: min(100%, 610px);
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 48px rgba(17,17,17,0.10));
}

/* More comfortable anchor targets when users click the navigation */
#wiedererkennung,
#wunschbild,
#arbeitsweise,
#leistungen,
#ablauf,
#kontakt {
  scroll-margin-top: 120px;
}

.footer-links a[href^="https://wa.me"] {
  font-weight: 850;
}

@media (max-width: 1080px) {
  .hero-visual.keyvisual-wrap {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-keyvisual-img {
    width: min(100%, 640px);
  }
}

@media (max-width: 820px) {
  #wiedererkennung,
  #wunschbild,
  #arbeitsweise,
  #leistungen,
  #ablauf,
  #kontakt {
    scroll-margin-top: 96px;
  }
}

@media (max-width: 560px) {
  .hero-visual.keyvisual-wrap {
    padding-top: 24px;
  }

  .hero-keyvisual-img {
    width: 100%;
  }
}


/* Version 7: corrected hero visual, moderate anchor offset, visible WhatsApp footer link */
.hero-visual.keyvisual-wrap,
.hero-visual.moodboard-visual,
.moodboard,
.moodboard-feed,
.moodboard-side,
.hero-visual.premium-visual,
.premium-stage,
.ad-card,
.story-card,
.concept-strip,
.hero-visual.refined-visual,
.visual-board,
.side-note,
.phone-mockup,
.floating-card {
  display: none !important;
}

.hero-visual.keyvisual-v7-wrap {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 548px;
  position: relative;
}

.hero-visual.keyvisual-v7-wrap::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: 2%;
  top: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,164,0,0.18), rgba(245,164,0,0.05) 58%, transparent 74%);
  z-index: -1;
}

.hero-keyvisual-v7 {
  width: min(100%, 620px);
  height: auto;
  display: block;
  border-radius: 34px;
  filter: drop-shadow(0 26px 44px rgba(17,17,17,0.10));
  image-rendering: auto;
}

/* Anchor targets: enough air, not excessive */
#wiedererkennung,
#wunschbild,
#arbeitsweise,
#leistungen,
#ablauf,
#kontakt {
  scroll-margin-top: 78px;
}

.footer-links a[href^="https://wa.me"] {
  font-weight: 850;
}

@media (max-width: 1080px) {
  .hero-visual.keyvisual-v7-wrap {
    min-height: auto;
    padding-top: 34px;
  }

  .hero-keyvisual-v7 {
    width: min(100%, 660px);
  }
}

@media (max-width: 820px) {
  #wiedererkennung,
  #wunschbild,
  #arbeitsweise,
  #leistungen,
  #ablauf,
  #kontakt {
    scroll-margin-top: 70px;
  }
}

@media (max-width: 560px) {
  .hero-visual.keyvisual-v7-wrap {
    padding-top: 24px;
  }

  .hero-keyvisual-v7 {
    width: 100%;
    border-radius: 26px;
  }
}


/* Version 8 Final: stable publishable hero, corrected footer links, tighter navigation anchors */

/* Remove all previous experimental hero systems */
.hero-visual.keyvisual-v7-wrap,
.hero-visual.keyvisual-wrap,
.hero-visual.moodboard-visual,
.moodboard,
.moodboard-feed,
.moodboard-side,
.hero-visual.premium-visual,
.premium-stage,
.ad-card,
.story-card,
.concept-strip,
.hero-visual.refined-visual,
.visual-board,
.side-note,
.phone-mockup,
.floating-card {
  display: none !important;
}

/* Final hero panel: no overlapping elements, no generated mockup, no blurry graphic */
.hero-visual.final-brand-panel {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  position: relative;
}

.hero-visual.final-brand-panel::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: 6%;
  top: 54px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,164,0,0.18), rgba(245,164,0,0.055) 58%, transparent 74%);
  z-index: -1;
}

.brand-panel-inner {
  width: min(100%, 520px);
  min-height: 430px;
  border: 1px solid rgba(17,17,17,0.075);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(255,247,237,0.86)),
    radial-gradient(circle at 88% 14%, rgba(245,164,0,0.18), transparent 34%);
  box-shadow: 0 26px 64px rgba(17,17,17,0.09);
  padding: clamp(34px, 5vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-panel-inner img {
  width: 66px;
  height: auto;
  margin-bottom: 30px;
}

.panel-kicker {
  margin: 0 0 18px;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-claim {
  margin: 0;
  color: #111;
  font-size: clamp(2.55rem, 4.6vw, 4.35rem);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.075em;
}

.panel-divider {
  width: 92px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-accent);
  margin: 34px 0 26px;
}

.panel-support {
  max-width: 390px;
  margin: 0;
  color: var(--color-muted);
  font-size: 1.04rem;
  line-height: 1.65;
  font-weight: 650;
}

/* Anchor targets: closer to headings without feeling cramped */
#wiedererkennung,
#wunschbild,
#arbeitsweise,
#leistungen,
#ablauf,
#kontakt {
  scroll-margin-top: 24px;
}

/* Footer contact order and neutral link weight */
.footer-links {
  align-items: flex-start;
}

.footer-links a,
.footer-links a[href^="https://wa.me"] {
  font-weight: 650 !important;
}

@media (max-width: 1080px) {
  .hero-visual.final-brand-panel {
    min-height: auto;
    padding-top: 34px;
  }

  .brand-panel-inner {
    min-height: 390px;
  }
}

@media (max-width: 820px) {
  #wiedererkennung,
  #wunschbild,
  #arbeitsweise,
  #leistungen,
  #ablauf,
  #kontakt {
    scroll-margin-top: 18px;
  }
}

@media (max-width: 560px) {
  .hero-visual.final-brand-panel {
    padding-top: 24px;
  }

  .brand-panel-inner {
    border-radius: 30px;
    min-height: 360px;
  }

  .brand-panel-inner img {
    width: 56px;
    margin-bottom: 24px;
  }

  .panel-claim {
    font-size: clamp(2.3rem, 12vw, 3.25rem);
  }
}


/* Version 9 Final: concrete hero preview, corrected footer structure, slightly closer anchors */

/* Remove all previous experimental hero systems */
.hero-visual.final-brand-panel,
.hero-visual.keyvisual-v7-wrap,
.hero-visual.keyvisual-wrap,
.hero-visual.moodboard-visual,
.moodboard,
.moodboard-feed,
.moodboard-side,
.hero-visual.premium-visual,
.premium-stage,
.ad-card,
.story-card,
.concept-strip,
.hero-visual.refined-visual,
.visual-board,
.side-note,
.phone-mockup,
.floating-card {
  display: none !important;
}

/* New concrete studio preview: stable grid, no absolute text overlaps */
.hero-visual.studio-preview {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 548px;
  position: relative;
}

.hero-visual.studio-preview::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: 2%;
  top: 26px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,164,0,0.18), rgba(245,164,0,0.055) 58%, transparent 74%);
  z-index: -1;
}

.preview-shell {
  width: min(100%, 620px);
  display: grid;
  gap: 18px;
}

.preview-browser {
  border: 1px solid rgba(17,17,17,0.075);
  border-radius: 38px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 26px 64px rgba(17,17,17,0.10);
  overflow: hidden;
}

.browser-top {
  min-height: 62px;
  padding: 0 26px;
  border-bottom: 1px solid rgba(17,17,17,0.06);
  display: flex;
  align-items: center;
  gap: 9px;
}

.browser-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(17,17,17,0.14);
}

.browser-top span:first-child {
  background: var(--color-accent);
}

.browser-top strong {
  margin-left: 12px;
  color: rgba(17,17,17,0.58);
  font-size: 0.86rem;
  font-weight: 850;
}

.browser-content {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(170px, 0.75fr);
  gap: 20px;
  align-items: stretch;
}

.creative-preview-card,
.message-preview-card,
.preview-foundation,
.preview-claim {
  border: 1px solid rgba(17,17,17,0.065);
}

.creative-preview-card {
  border-radius: 30px;
  background: #fff7ed;
  padding: 16px;
}

.creative-image {
  min-height: 230px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 76% 24%, rgba(245,164,0,0.42), transparent 25%),
    linear-gradient(135deg, #f1d2a4, #fff7ed 58%, #e9bc78);
  position: relative;
  overflow: hidden;
}

.creative-image::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.58);
}

.creative-badge {
  position: relative;
  display: inline-block;
  margin: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  color: #4d4239;
  font-size: 0.78rem;
  font-weight: 850;
}

.creative-mark {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 170px;
}

.creative-mark::before,
.creative-mark::after {
  content: "";
  display: block;
  height: 16px;
  border-radius: 999px;
  background: rgba(17,17,17,0.72);
  margin-top: 14px;
}

.creative-mark::after {
  width: 62%;
  background: var(--color-accent);
}

.creative-copy {
  padding: 18px 4px 2px;
}

.creative-copy p {
  margin: 0 0 8px;
  color: var(--color-accent);
  font-weight: 950;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.creative-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.8vw, 2.65rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.creative-copy span {
  color: var(--color-muted);
  font-size: 0.94rem;
  font-weight: 740;
}

.message-preview-card {
  border-radius: 30px;
  background: #111;
  color: #fff;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.message-preview-card p {
  margin: 0 0 auto;
  color: rgba(255,255,255,0.56);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.message-preview-card strong {
  display: block;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.preview-foundation {
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 46px rgba(17,17,17,0.075);
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.preview-foundation div {
  border-radius: 20px;
  background: #fff7ed;
  padding: 14px;
}

.preview-foundation span {
  display: block;
  color: var(--color-accent);
  font-weight: 950;
  margin-bottom: 4px;
  font-size: 0.78rem;
}

.preview-foundation strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.preview-claim {
  border-radius: 24px;
  background: #111;
  color: #fff;
  box-shadow: 0 18px 46px rgba(17,17,17,0.075);
  padding: 18px 22px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

/* Anchor targets: minimally closer than Version 8 */
#wiedererkennung,
#wunschbild,
#arbeitsweise,
#leistungen,
#ablauf,
#kontakt {
  scroll-margin-top: 14px;
}

/* Correct footer layout */
.site-footer .footer-column h2 {
  font-size: 0.88rem;
  margin: 0 0 16px;
  color: var(--color-muted);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links a[href^="https://wa.me"] {
  font-weight: 650 !important;
}

@media (max-width: 1080px) {
  .hero-visual.studio-preview {
    min-height: auto;
    padding-top: 34px;
  }

  .preview-shell {
    width: min(100%, 660px);
  }
}

@media (max-width: 820px) {
  .browser-content {
    grid-template-columns: 1fr;
  }

  .message-preview-card {
    min-height: 190px;
  }

  #wiedererkennung,
  #wunschbild,
  #arbeitsweise,
  #leistungen,
  #ablauf,
  #kontakt {
    scroll-margin-top: 10px;
  }
}

@media (max-width: 560px) {
  .hero-visual.studio-preview {
    padding-top: 24px;
  }

  .preview-browser {
    border-radius: 30px;
  }

  .browser-content {
    padding: 18px;
  }

  .preview-foundation {
    grid-template-columns: 1fr;
  }

  .preview-claim {
    font-size: 0.95rem;
  }
}


/* Version 10 Final: keep Version 9 hero, refine navigation anchor spacing, restore footer layout */

/* Anchor targets: slightly more air than Version 9, still closer than Version 6/7 */
#wiedererkennung,
#wunschbild,
#arbeitsweise,
#leistungen,
#ablauf,
#kontakt {
  scroll-margin-top: 28px;
}

/* Restore structured footer: logo/claim left, Kontakt and Rechtliches to the right */
.site-footer {
  padding-top: 58px;
  padding-bottom: 58px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand img {
  width: 106px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
  font-weight: 650;
}

.footer-nav {
  display: grid;
  grid-template-columns: minmax(150px, auto) minmax(150px, auto);
  gap: clamp(44px, 6vw, 78px);
  align-items: start;
}

.site-footer .footer-column h2 {
  font-size: 0.82rem;
  margin: 0 0 16px;
  color: var(--color-muted);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-items: start;
}

.footer-links a,
.footer-links a[href^="https://wa.me"] {
  color: var(--color-text);
  font-weight: 650 !important;
  text-decoration: none;
}

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

@media (max-width: 820px) {
  #wiedererkennung,
  #wunschbild,
  #arbeitsweise,
  #leistungen,
  #ablauf,
  #kontakt {
    scroll-margin-top: 22px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand img {
    width: 96px;
  }
}


/* Version 11 Final: restore original footer formatting and visibility */
.site-footer {
  padding: 54px 0 !important;
  background: #111 !important;
  color: #fff !important;
}

.site-footer .footer-grid {
  display: grid !important;
  grid-template-columns: minmax(240px, 1.4fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr) !important;
  gap: 32px !important;
  align-items: start !important;
}

.site-footer .footer-brand {
  max-width: 300px !important;
}

.site-footer .footer-brand img {
  width: 106px !important;
  height: auto !important;
  margin: 0 0 18px !important;
  filter: brightness(0) invert(1) !important;
  opacity: 0.95 !important;
}

.site-footer .footer-brand p {
  color: rgba(255,255,255,0.72) !important;
  margin: 0 !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
}

.site-footer .footer-links {
  display: block !important;
}

.site-footer .footer-links h2 {
  font-size: 0.9rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.58) !important;
  margin: 0 0 14px !important;
  font-weight: 900 !important;
}

.site-footer .footer-links a,
.site-footer .footer-links a[href^="https://wa.me"] {
  display: block !important;
  color: rgba(255,255,255,0.84) !important;
  text-decoration: none !important;
  margin: 9px 0 !important;
  font-weight: 650 !important;
  transition: color var(--transition) !important;
}

.site-footer .footer-links a:hover {
  color: var(--color-accent) !important;
}

@media (max-width: 820px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-brand img {
    width: 96px !important;
  }
}


/* Version 12 Final: Datenschutz integration + responsive safety for Leistungen cards */
@media (max-width: 1080px) {
  #leistungen .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #leistungen .service-card {
    min-width: 0;
  }

  #leistungen .service-card.recommended {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  #leistungen .card-grid {
    grid-template-columns: 1fr;
  }

  #leistungen .service-card.recommended {
    grid-column: auto;
  }
}


/* Version 13 Final: closer fullscreen anchor targets */
#wiedererkennung,
#wunschbild,
#arbeitsweise,
#leistungen,
#ablauf,
#kontakt {
  scroll-margin-top: 16px;
}

@media (max-width: 820px) {
  #wiedererkennung,
  #wunschbild,
  #arbeitsweise,
  #leistungen,
  #ablauf,
  #kontakt {
    scroll-margin-top: 18px;
  }
}


/* Version 14 Final: redesigned Datenschutz page + improved Leistungen anchor */
.privacy-content {
  max-width: 980px;
}

.legal-intro {
  max-width: 760px;
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 34px;
}

.privacy-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(17,17,17,0.075);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 38px);
  margin: 18px 0;
  box-shadow: 0 18px 42px rgba(17,17,17,0.045);
}

.privacy-card h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -0.04em;
}

.privacy-card p {
  color: var(--color-muted);
  line-height: 1.75;
  margin: 0 0 14px;
}

.privacy-card p:last-child {
  margin-bottom: 0;
}

.privacy-card strong {
  color: var(--color-text);
}

.privacy-subbox {
  margin-top: 24px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 22px;
  background: #fff7ed;
  border: 1px solid rgba(245,164,0,0.22);
}

.privacy-subbox h3 {
  margin: 0 0 14px;
  font-size: 1.18rem;
  letter-spacing: -0.035em;
}

/* Slightly closer navigation landing in fullscreen to prevent Leistungskarten from being cut */
#wiedererkennung,
#wunschbild,
#arbeitsweise,
#ablauf,
#kontakt {
  scroll-margin-top: 14px;
}

#leistungen {
  scroll-margin-top: 4px;
}

@media (max-width: 820px) {
  #wiedererkennung,
  #wunschbild,
  #arbeitsweise,
  #leistungen,
  #ablauf,
  #kontakt {
    scroll-margin-top: 14px;
  }
}


/* Version 15 Final: one-card Datenschutz, shorter Leistungskarten, copyright footer */

/* Datenschutz as one elegant card with internal sections */
.privacy-single-card {
  padding: clamp(28px, 5vw, 52px);
}

.privacy-single-card .privacy-section {
  padding: 0 0 30px;
  margin: 0 0 30px;
  border-bottom: 1px solid rgba(17,17,17,0.075);
}

.privacy-single-card .privacy-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.privacy-single-card .privacy-section h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.privacy-single-card .privacy-subbox {
  margin-top: 22px;
}

/* Leistungskarten: remove unnecessary visual height caused by equal stretching */
#leistungen .card-grid {
  align-items: start;
}

#leistungen .service-card {
  height: auto;
  min-height: 0;
  align-self: start;
  padding-top: clamp(24px, 3vw, 32px);
  padding-bottom: clamp(24px, 3vw, 32px);
}

#leistungen .service-card p {
  margin-bottom: 0;
}

#leistungen .service-card .service-note,
#leistungen .service-card .service-tag,
#leistungen .service-card .recommended-label {
  margin-top: 18px;
}

/* Copyright line */
.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.48);
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  #leistungen .service-card.recommended {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .privacy-single-card {
    padding: 24px;
  }

  .privacy-single-card .privacy-section {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}


/* Version 16 Final: footer claim line break + clean responsive Leistungskarten */
@media (max-width: 1180px) {
  #leistungen .card-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  #leistungen .service-card,
  #leistungen .service-card.recommended {
    grid-column: auto !important;
    width: 100% !important;
  }
}

@media (min-width: 1181px) {
  #leistungen .card-grid {
    align-items: start;
  }
}


/* Version 19 Final: mobile overflow fix for long legal wording */
@media (max-width: 560px) {
  .legal-content h1,
  .footer-links a,
  .site-footer .footer-links a {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
  }
}

@media (max-width: 820px) {
  .legal-header .header-inner {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .legal-header .legal-nav {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end;
    gap: 12px;
    width: auto;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .legal-header .legal-nav a {
    width: auto;
    padding: 4px 0;
    font-size: 0.86rem;
    line-height: 1.25;
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .legal-header .header-inner {
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .legal-header .brand {
    flex: 0 0 100%;
    justify-content: center;
  }

  .legal-header .legal-nav {
    flex: 0 0 100%;
    justify-content: center;
    margin-left: 0;
    gap: 8px 14px;
    flex-wrap: wrap;
  }

  .legal-header .legal-nav a {
    font-size: 0.84rem;
  }
}
