/*
Theme Name: Kadence Child
Template: kadence
*/

/* -----------------------------------------------------------
   smartsell4u.de – Shared Stylesheet v1.0
   Gilt für alle Seiten der Website
   Einbinden in: Kadence Child Theme ? style.css (ans Ende)
   ----------------------------------------------------------- */

/* -- LOKALE FONTS ------------------------------------------- */
@font-face {
  font-family: 'Fraunces';
  src: url('/wp-content/themes/kadence-child/fonts/fraunces-v24-latin-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('/wp-content/themes/kadence-child/fonts/fraunces-v24-latin-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('/wp-content/themes/kadence-child/fonts/fraunces-v24-latin-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('/wp-content/themes/kadence-child/fonts/geist-v1-latin-regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('/wp-content/themes/kadence-child/fonts/geist-v1-latin-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Geist';
  src: url('/wp-content/themes/kadence-child/fonts/geist-v1-latin-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* -- DESIGN TOKENS ------------------------------------------ */
:root {
  --ink:      #111110;
  --ink-2:    #4f4f48;
  --ink-3:    #9a9a90;
  --bg:       #f8f7f3;
  --white:    #ffffff;
  --surface:  #efefea;
  --dark:     #141410;
  --dark-2:   #1e1e18;
  --border:   #e2e1da;
  --accent:   #d4500a;
  --accent-l: #fdf2ec;
  --green:    #1a7a3c;
  --green-l:  #edf7f1;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Geist', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 100px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.10);
}

/* -- RESET FÜR ss4u-SCOPE ----------------------------------- */
.ss4u-page {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow-x: hidden;
}
.ss4u-page *, .ss4u-page *::before, .ss4u-page *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.ss4u-page a { text-decoration: none; color: inherit; }
.ss4u-page img { display: block; max-width: 100%; }
.ss4u-page ul { list-style: none; }
.ss4u-page h1, .ss4u-page h2, .ss4u-page h3, .ss4u-page h4 {
  font-family: var(--font-display);
  line-height: 1.1;
}

/* -- INNER CONTAINER ---------------------------------------- */
.ss4u-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

/* -- TYPOGRAFIE UTILITIES ----------------------------------- */
.ss4u-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .5rem;
}
.ss4u-label--light { color: rgba(255,255,255,.4); }

/* -- BUTTONS ------------------------------------------------ */
.ss4u-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  transition: background .2s, transform .15s, border-color .2s, color .2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.ss4u-btn-pri  { background: var(--accent); color: #fff !important; }
.ss4u-btn-pri:hover  { background: #b8420a; transform: translateY(-1px); }
.ss4u-btn-sec  { background: transparent; color: var(--ink-2) !important; border: 1.5px solid var(--border); }
.ss4u-btn-sec:hover  { border-color: var(--ink-3); color: var(--ink) !important; }
.ss4u-btn-white { background: #fff; color: var(--ink) !important; }
.ss4u-btn-white:hover { background: var(--surface); }
.ss4u-btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,.6) !important;
  border: 1.5px solid rgba(255,255,255,.15);
}
.ss4u-btn-ghost-light:hover { border-color: rgba(255,255,255,.4); color: #fff !important; }

/* -- PILLS / CHIPS ------------------------------------------ */
.ss4u-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .75rem; font-weight: 600; color: var(--ink-2);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: .28rem .85rem;
}
.ss4u-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

.ss4u-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); padding: .4rem .9rem;
  font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.ss4u-chip:hover { background: rgba(255,255,255,.13); color: #fff; }
.ss4u-chip-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* -- SECTION HEADER ----------------------------------------- */
.ss4u-sec-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: end; margin-bottom: 3rem;
}
.ss4u-sec-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -.02em; }
.ss4u-sec-head p { color: var(--ink-2); font-size: .95rem; }
.ss4u-sec-head--center { grid-template-columns: 1fr; text-align: center; }
.ss4u-sec-head--center p { max-width: 540px; margin: .5rem auto 0; }

/* -- REVEAL ANIMATION --------------------------------------- */
.ss4u-rv {
  opacity: 0; transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.ss4u-rv.in { opacity: 1; transform: none; }

/* -- PLACEHOLDER BOXES -------------------------------------- */
.ss4u-ph {
  background: var(--surface); border: 1.5px dashed var(--border);
  border-radius: var(--radius-sm); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .3rem;
  color: var(--ink-3); font-size: .72rem; font-weight: 500;
  text-align: center; padding: 1rem;
}
.ss4u-ph--dark {
  background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.2);
}

/* ------------------------------------------------------------
   HEADER
   ------------------------------------------------------------ */
.ss4u-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(20,20,16,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ss4u-header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.ss4u-logo { display: flex; align-items: center; }
.ss4u-logo img { height: 38px; width: auto; }

.ss4u-nav { display: flex; align-items: center; gap: 2.25rem; }
.ss4u-nav a {
  font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.6);
  transition: color .2s; white-space: nowrap;
}
.ss4u-nav a:hover, .ss4u-nav a.active { color: #fff; }

/* Dropdown */
.ss4u-nav-drop { position: relative; }
.ss4u-nav-drop > a { display: flex; align-items: center; gap: .3rem; cursor: pointer; }
.ss4u-nav-drop > a::after { content: '?'; font-size: .65rem; opacity: .5; }
.ss4u-dropdown {
  position: absolute; top: calc(100% + 1rem); left: 50%;
  transform: translateX(-50%);
  background: var(--dark-2); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: .5rem;
  min-width: 200px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  transform: translateX(-50%) translateY(-6px);
}
.ss4u-nav-drop:hover .ss4u-dropdown,
.ss4u-nav-drop:focus-within .ss4u-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.ss4u-dropdown a {
  display: block; padding: .55rem .85rem;
  border-radius: var(--radius-sm); font-size: .82rem;
  color: rgba(255,255,255,.55) !important;
  transition: background .15s, color .15s;
}
.ss4u-dropdown a:hover { background: rgba(255,255,255,.07); color: #fff !important; }

.ss4u-header-cta { margin-left: auto; }

/* Hamburger */
.ss4u-burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 8px;
}
.ss4u-burger span {
  display: block; height: 1.5px; background: rgba(255,255,255,.7);
  border-radius: 2px; transition: transform .25s, opacity .25s;
}
.ss4u-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.ss4u-burger.open span:nth-child(2) { opacity: 0; }
.ss4u-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.ss4u-mobile-menu {
  display: none; position: fixed; inset: 68px 0 0 0;
  background: var(--dark); z-index: 199;
  padding: 1.5rem clamp(1.25rem, 5vw, 4rem);
  overflow-y: auto;
  flex-direction: column; gap: .25rem;
}
.ss4u-mobile-menu.open { display: flex; }
.ss4u-mobile-menu a {
  display: block; padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.6);
  transition: color .2s;
}
.ss4u-mobile-menu a:hover { color: #fff; }
.ss4u-mobile-menu .ss4u-mobile-cta {
  margin-top: 1.25rem; border-bottom: none;
  display: inline-flex;
}
.ss4u-mobile-section {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.25);
  padding: 1.25rem 0 .4rem; border-bottom: none !important;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.ss4u-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 4rem 0 2rem;
}
.ss4u-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.ss4u-footer-brand img { height: 36px; margin-bottom: 1rem; }
.ss4u-footer-tagline { font-size: .83rem; color: rgba(255,255,255,.35); line-height: 1.65; margin-bottom: 1.25rem; max-width: 240px; }
.ss4u-footer-contact a {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.45);
  margin-bottom: .4rem; transition: color .2s;
}
.ss4u-footer-contact a:hover { color: rgba(255,255,255,.8); }

.ss4u-footer-col h4 {
  font-family: var(--font-body); font-size: .68rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: 1rem;
}
.ss4u-footer-col a {
  display: block; font-size: .82rem;
  color: rgba(255,255,255,.4); margin-bottom: .5rem; transition: color .2s;
}
.ss4u-footer-col a:hover { color: rgba(255,255,255,.8); }

.ss4u-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.ss4u-footer-copy { font-size: .75rem; color: rgba(255,255,255,.25); }
.ss4u-footer-legal { display: flex; gap: 1.5rem; }
.ss4u-footer-legal a { font-size: .75rem; color: rgba(255,255,255,.25); transition: color .2s; }
.ss4u-footer-legal a:hover { color: rgba(255,255,255,.6); }

/* Billbee Badge */
.ss4u-footer-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm); padding: .4rem .8rem;
  font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.4);
}
.ss4u-footer-badge::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: #4ade80; flex-shrink: 0;
}

/* ------------------------------------------------------------
   RESPONSIVE – HEADER & FOOTER
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .ss4u-nav, .ss4u-header-cta { display: none; }
  .ss4u-burger { display: flex; }
  .ss4u-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ss4u-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .ss4u-footer-grid { grid-template-columns: 1fr; }
  .ss4u-sec-head { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   KADENCE HEADER/FOOTER AUSBLENDEN
   (wird aktiv wenn Plugin "Disable Header Footer" genutzt wird
    oder manuell per CSS)
   ------------------------------------------------------------ */
.hide-header .site-header,
.hide-header #masthead,
.hide-header .kadence-header,
.hide-footer .site-footer,
.hide-footer #colophon,
.hide-footer .kadence-footer { display: none !important; }


/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.ss4u-hero {
  background: var(--dark);
  padding: clamp(4rem, 8vw, 7rem) 0 0;
  overflow: hidden;
  position: relative;
}
.ss4u-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 70% 40%, rgba(212,80,10,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,255,255,.03) 0%, transparent 50%);
  pointer-events: none;
}
.ss4u-hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
  position: relative; z-index: 1;
}
.ss4u-hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-full);
  padding: .35rem 1.1rem; font-size: .75rem; font-weight: 600;
  letter-spacing: .04em; margin-bottom: 2rem;
}
.ss4u-hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0;
}
.ss4u-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 700;
  color: #fff; letter-spacing: -.03em; margin-bottom: 1.75rem; max-width: 820px;
}
.ss4u-hero h1 em { font-style: italic; font-weight: 300; color: rgba(255,255,255,.5); }
.ss4u-hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(255,255,255,.55);
  max-width: 600px; margin-bottom: 2.5rem; line-height: 1.7;
}
.ss4u-hero-lead strong { color: rgba(255,255,255,.85); }
.ss4u-hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
.ss4u-stack { display: flex; flex-wrap: wrap; gap: .5rem; padding-top: 2rem; }

/* Hero Screenshot-Streifen */
.ss4u-hero-screens {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem; align-items: end;
  margin: 0 clamp(-1.25rem, -5vw, -4rem);
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}
.ss4u-screen {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,.08);
  border-bottom: none; border-radius: 12px 12px 0 0; overflow: hidden;
}
.ss4u-screen-bar {
  background: rgba(255,255,255,.05); padding: .5rem .75rem;
  display: flex; align-items: center; gap: .4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ss4u-screen-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ss4u-screen-label { font-size: .65rem; color: rgba(255,255,255,.3); font-weight: 500; margin-left: .25rem; }

/* TRUST BAND */
.ss4u-trust { background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 0; }
.ss4u-trust-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .6rem; max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}

/* SERVICES GRID */
.ss4u-services { background: var(--white); padding: clamp(3.5rem, 7vw, 6rem) 0; }
.ss4u-svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.ss4u-svc {
  padding: 2rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: background .2s; display: flex; flex-direction: column; gap: .85rem;
}
.ss4u-svc:nth-child(3n) { border-right: none; }
.ss4u-svc:nth-last-child(-n+3) { border-bottom: none; }
.ss4u-svc:hover { background: var(--accent-l); }
.ss4u-svc-icon {
  width: 44px; height: 44px; background: var(--surface);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.ss4u-svc:hover .ss4u-svc-icon { background: rgba(212,80,10,.12); }
.ss4u-svc h3 { font-family: var(--font-body); font-size: .97rem; font-weight: 600; color: var(--ink); }
.ss4u-svc p { font-size: .83rem; color: var(--ink-2); line-height: 1.65; flex: 1; }
.ss4u-svc-ph {
  background: var(--surface); border: 1.5px dashed var(--border); border-radius: var(--radius-sm);
  min-height: 90px; display: flex; align-items: center; justify-content: center;
  color: var(--ink-3); font-size: .7rem; font-weight: 500; text-align: center; padding: .75rem;
}
.ss4u-svc-link { font-size: .78rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: .25rem; }

/* UBER MICH */
.ss4u-about { background: var(--dark); padding: clamp(3.5rem, 7vw, 6rem) 0; }
.ss4u-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ss4u-photo-ph {
  background: rgba(255,255,255,.05); border: 2px dashed rgba(255,255,255,.1);
  border-radius: var(--radius-lg); min-height: 340px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; color: rgba(255,255,255,.25); font-size: .78rem; font-weight: 500; margin-bottom: 1.25rem;
}
.ph-big { font-size: 3rem; opacity: .3; }
.ss4u-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.ss4u-stat {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 1rem; text-align: center;
}
.ss4u-stat-n { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--accent); line-height: 1; }
.ss4u-stat-l { font-size: .7rem; color: rgba(255,255,255,.35); margin-top: .2rem; }
.ss4u-about-right h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: #fff; letter-spacing: -.02em; margin-bottom: 1.25rem; }
.ss4u-about-right p { color: rgba(255,255,255,.5); font-size: .95rem; margin-bottom: .9rem; line-height: 1.75; }
.ss4u-about-right p strong { color: rgba(255,255,255,.85); }
.ss4u-skills { display: flex; flex-direction: column; gap: .5rem; margin: 1.5rem 0 2rem; }
.ss4u-skills li { display: flex; align-items: center; gap: .6rem; font-size: .87rem; color: rgba(255,255,255,.55); }
.ss4u-skills li::before { content: "\2713"; color: #4ade80; font-weight: 700; flex-shrink: 0; }

/* PROZESS */
.ss4u-prozess { background: var(--surface); padding: clamp(3.5rem, 7vw, 6rem) 0; }
.ss4u-prozess-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden;
}
.ss4u-pstep { background: var(--white); padding: 2rem 1.75rem; }
.ss4u-pstep-n { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: .75rem; }
.ss4u-pstep h3 { font-family: var(--font-body); font-size: .92rem; font-weight: 600; margin-bottom: .4rem; }
.ss4u-pstep p { font-size: .81rem; color: var(--ink-2); line-height: 1.6; }

/* FAQ */
.ss4u-faq { background: var(--white); padding: clamp(3.5rem, 7vw, 6rem) 0; }
.ss4u-faq-wrap { max-width: 760px; margin: 2.5rem auto 0; }
.ss4u-faq-item { border-bottom: 1px solid var(--border); }
.ss4u-faq-item:first-child { border-top: 1px solid var(--border); }
.ss4u-faq-q {
  width: 100%; background: none; border: none; padding: 1.1rem 0;
  text-align: left; font-family: var(--font-body); font-size: .93rem;
  font-weight: 600; color: var(--ink); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color .2s;
}
.ss4u-faq-q:hover { color: var(--accent); }
.ss4u-faq-arr { font-size: 1.1rem; color: var(--ink-3); transition: transform .25s; flex-shrink: 0; }
.ss4u-faq-item.open .ss4u-faq-arr { transform: rotate(45deg); color: var(--accent); }
.ss4u-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; font-size: .88rem; color: var(--ink-2); line-height: 1.75; }
.ss4u-faq-item.open .ss4u-faq-a { max-height: 300px; padding-bottom: 1.1rem; }

/* CTA BLOCK */
.ss4u-cta { background: var(--accent); padding: clamp(4rem, 8vw, 7rem) 0; text-align: center; }
.ss4u-cta h2 { font-size: clamp(2rem, 5vw, 3.5rem); color: #fff; letter-spacing: -.03em; margin-bottom: 1rem; }
.ss4u-cta h2 em { font-style: italic; font-weight: 300; color: rgba(255,255,255,.6); }
.ss4u-cta p { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 2.25rem; }
.ss4u-cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.ss4u-cta-contact { font-size: .82rem; color: rgba(255,255,255,.45); }
.ss4u-cta-contact a { color: rgba(255,255,255,.65); text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ss4u-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ss4u-hero-screens { grid-template-columns: 1fr 1fr; }
  .ss4u-hero-screens .ss4u-screen:last-child { display: none; }
  .ss4u-sec-head { grid-template-columns: 1fr; gap: .75rem; }
}
@media (max-width: 768px) {
  .ss4u-svc-grid { grid-template-columns: 1fr; }
  .ss4u-svc { border-right: none !important; }
  .ss4u-svc:nth-last-child(-n+3) { border-bottom: 1px solid var(--border) !important; }
  .ss4u-svc:last-child { border-bottom: none !important; }
  .ss4u-prozess-grid { grid-template-columns: 1fr 1fr; }
  .ss4u-hero-screens { display: none; }
}
@media (max-width: 480px) {
  .ss4u-prozess-grid { grid-template-columns: 1fr; }
  .ss4u-hero h1 { font-size: 2.4rem; }
  .ss4u-hero-ctas { flex-direction: column; align-items: flex-start; }
  .ss4u-cta-btns { flex-direction: column; align-items: center; }
  .ss4u-stats { grid-template-columns: repeat(3, 1fr); }
}

/*
 * smartsell4u.de – Kadence Header Styling
 * Einfügen in: WordPress ? Design ? Zusätzliches CSS
 */

/* Haupt-Header hell */
.site-header, #masthead, .kadence-header-wrap, .site-header-inner {
  background-color: #f8f7f3 !important;
  border-bottom: 1px solid rgba(0,0,0,.08) !important;
}
.kadence-sticky-header .site-header {
  background-color: rgba(248,247,243,.96) !important;
  backdrop-filter: blur(12px);
}

/* Logo */
.site-header .site-logo img { max-height: 38px !important; width: auto !important; }

/* Nav Links */
.main-navigation a, .kadence-navigation a,
.kadence-header-wrap nav > ul > li > a {
  color: rgba(5,15,36,.6) !important;
  font-family: 'Geist', system-ui, sans-serif !important;
  font-size: .85rem !important; font-weight: 500 !important;
  transition: color .2s !important;
}
.main-navigation a:hover, .kadence-navigation a:hover,
.kadence-header-wrap nav > ul > li.current-menu-item > a { color: #050f24 !important; }

/* Dropdown */
.main-navigation .sub-menu, .kadence-navigation .sub-menu {
  background-color: #ffffff !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  border-radius: 12px !important; padding: .5rem !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.12) !important;
}
.main-navigation .sub-menu a { color: rgba(5,15,36,.55) !important; font-size: .82rem !important; border-radius: 8px !important; }
.main-navigation .sub-menu a:hover { background: rgba(5,15,36,.05) !important; color: #050f24 !important; }

/* CTA Button */
.kadence-header-wrap .header-button a,
.kadence-header-wrap .wp-block-button a {
  background-color: #d4500a !important; color: #fff !important;
  border-radius: 100px !important; padding: .55rem 1.3rem !important;
  font-size: .82rem !important; font-weight: 600 !important; border: none !important;
}
.kadence-header-wrap .header-button a:hover { background-color: #b8420a !important; }

/* Mobile */
.kadence-header-wrap .menu-toggle { color: rgba(5,15,36,.7) !important; background: transparent !important; border: none !important; }
.kadence-mobile-nav, #mobile-nav { background-color: #ffffff !important; border-top: 1px solid rgba(0,0,0,.07) !important; }
.kadence-mobile-nav a { color: rgba(5,15,36,.6) !important; border-bottom: 1px solid rgba(0,0,0,.06) !important; }
.kadence-mobile-nav a:hover { color: #050f24 !important; }


/* Kein Abstand zwischen Header und Hero */
.site-content, #content { margin-top: 0 !important; padding-top: 0 !important; }

/* ss4u-page volle Breite */
.ss4u-page { width: 100vw !important; margin-left: calc(-50vw + 50%) !important; overflow-x: hidden !important; }

/* Hero: hell statt dunkel */
.ss4u-hero {
  background: #fff !important;
  color: var(--ink) !important;
}

.ss4u-hero h1,
.ss4u-hero .ss4u-hero-lead,
.ss4u-hero strong {
  color: var(--ink) !important;
}

.ss4u-hero-badge {
  background: rgba(219,125,39,.12) !important;
  color: #b86a10 !important;
  border-color: rgba(219,125,39,.25) !important;
}

.ss4u-hero em {
  color: #db7d27 !important;
}

/* Ghost-Button auf hellem Hintergrund */
.ss4u-btn-ghost-light {
  border-color: rgba(5,15,36,.2) !important;
  color: var(--ink) !important;
}

.ss4u-btn-ghost-light:hover {
  background: rgba(5,15,36,.06) !important;
}

/* Stack-Chips auf hellem Hintergrund */
.ss4u-chip {
  background: var(--surface) !important;
  color: var(--ink) !important;
  border-color: var(--border) !important;
}

/* Screen-Mockups auf hellem Hintergrund */
.ss4u-hero-screens .ss4u-screen {
  box-shadow: 0 8px 32px rgba(0,0,0,.10) !important;
}

/* Über mich – hell statt dunkel */
.ss4u-about {
  background: var(--bg) !important;
}
.ss4u-photo-ph {
  background: var(--surface) !important;
  border-color: var(--border) !important;
  color: var(--ink-3) !important;
}
.ph-big { opacity: .15 !important; }
.ss4u-stat {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
.ss4u-stat-l { color: var(--ink-3) !important; }
.ss4u-about-right h2 { color: var(--ink) !important; }
.ss4u-about-right p { color: var(--ink-2) !important; }
.ss4u-about-right p strong { color: var(--ink) !important; }
.ss4u-skills li { color: var(--ink-2) !important; }
.ss4u-label--light { color: var(--accent) !important; }