:root {
  --black: #111111;
  --charcoal: #232323;
  --gold: #c6a06a;
  --gold-light: #d7b789;
  --bg-main: #faf8f5;
  --bg-alt: #f3f0eb;
  --white: #ffffff;
  --heading: #171717;
  --body: #555555;
  --light: #888888;
  --border: #e4ded5;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-main);
  color: var(--body);
  line-height: 1.8;
  font-size: 18px;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  color: var(--heading);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  max-width: 650px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */

.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  min-height: 92px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 210px;
  height: auto;
}

.nav-menu {
  display: flex;
  gap: 38px;
  list-style: none;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-menu a {
  padding-bottom: 8px;
  border-bottom: 1px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.current {
  color: var(--black);
  border-bottom-color: var(--black);
}

.nav-button {
  border: 1px solid var(--gold);
  padding: 16px 26px;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.nav-button:hover {
  background: var(--gold);
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: none;
  background: var(--black);
  color: white;
  padding: 8px 13px;
  font-size: 1.4rem;
  cursor: pointer;
}

/* HERO */

.hero-symbol {
  position: absolute;
  top: 67px;
  right: 36%;
  width: 110px;
  height: auto;
  z-index: 3;

  opacity: 0;
  transform: translateX(40px);

  filter: grayscale(100%);
  mix-blend-mode: multiply;

  animation: symbolSlideIn 1.2s ease forwards;
  animation-delay: 2s;
}

@keyframes symbolSlideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 0.22;
    transform: translateX(0);
  }
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-main);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-left: 24%;
  padding-top: 60px;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  box-shadow: none;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 620px;
  margin: 32px 0;
  font-size: 1.25rem;
}

.primary-button,
.secondary-button,
.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 28px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.primary-button {
  background: var(--black);
  color: var(--white);
}

.primary-button:hover {
  background: var(--charcoal);
}

.secondary-button {
  background: var(--black);
  color: var(--white);
  margin-top: 25px;
}

.secondary-button:hover {
  background: var(--gold);
}

.gold-button {
  background: var(--gold);
  color: var(--white);
  margin-top: 24px;
}

.gold-button:hover {
  background: var(--gold-light);
  color: var(--black);
}

.hero-benefits {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-benefits div {
  background: rgba(17,17,17,0.82);
backdrop-filter: blur(8px);
  padding: 22px;
  border-radius: 10px;
  border: 1px solid rgba(198,160,106,0.35);
}

.hero-benefits strong {
  display: block;
  color: white;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.hero-benefits span {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.trust-item strong {
  display: block;
  color: var(--heading);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.trust-item span {
  font-size: 0.95rem;
  color: var(--body);
}

/* SECTIONS */

.section {
  padding: 82px 7%;
}

.services {
  text-align: center;
  background: var(--bg-main);
}

.service-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  padding: 36px 22px;
  min-height: 250px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}


.service-card h3 {
  color: var(--heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.service-card p {
  font-size: 1rem;
  flex-grow: 1;
}

.icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(198,160,106,0.12);
}

.icon img {
  width: 34px;
  height: 34px;
  filter: grayscale(39%);
  object-fit: contain;
}


/* ABOUT */

.about {
  background: var(--bg-alt);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-text p {
  max-width: 760px;
  margin: 24px 0;
  font-size: 1.1rem;
}

.about-text ul {
  list-style: none;
  margin-top: 25px;
}

.about-text li {
  margin-bottom: 13px;
  color: var(--body);
}

.about-text li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
  margin-right: 10px;
}

/* TRUST */

.trust {
  background: var(--white);
  padding: 38px 7%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  border-left: 1px solid var(--border);
  padding-left: 24px;
}

/* CTA */

.cta {
  background:
    linear-gradient(
      90deg,
      rgba(17,17,17,0.88) 0%,
      rgba(17,17,17,0.75) 40%,
      rgba(17,17,17,0.25) 100%
    ),
    url("img/cta-office.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: var(--white);

  padding: 75px 7%;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.cta h2 {
  color: var(--white);
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 22px;
  max-width: 620px;
  font-size: 1.1rem;
}

.cta-info {
  display: grid;
  gap: 25px;
}

.cta-info div {
  border-left: 1px solid var(--gold);
  padding-left: 20px;
}

.cta-info strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-info span {
  color: rgba(255, 255, 255, 0.75);
}

 
/* FOOTER */

.footer {
  background: var(--white);
  padding: 35px 7%;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 25px;
  align-items: center;
  border-top: 1px solid var(--border);
}

.footer-logo img {
  width: 170px;
}

.footer-menu,
.footer-legal {
  display: flex;
  gap: 28px;
  justify-content: center;
  list-style: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer p {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--light);
}
.creator-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.creator-link:hover {
  color: var(--gold);
}

.contact {
  background: var(--bg-alt);
  text-align: center;
}

.contact-intro {
  max-width: 700px;
  margin: 25px auto 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  background: white;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-bottom: 12px;
  color: var(--heading);
}

.contact-card a {
  color: inherit;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--gold);
}

@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.page-hero {
  background: var(--bg-alt);
  padding: 100px 7%;
}

.page-hero-content {
  max-width: 900px;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.page-hero p {
  max-width: 700px;
  margin-top: 24px;
}

.contact-form-section {
  background: var(--white);
}

.form-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

.form-intro p:last-child {
  margin-top: 20px;
}

.contact-form-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form {
  width: 100%;
}

.contact-grid {
  align-items: stretch;
}

.contact-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

  .form-grid {
    grid-template-columns: 1fr;
  }

@media (max-width: 768px) {

.hero-benefits {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}

.hero-benefits div {
  background: rgba(20,20,20,0.88);
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(198,160,106,0.35);
}

.hero-benefits strong {
  color: white;
}

.hero-benefits span {
  color: rgba(255,255,255,0.85);
}

}

/* TABLET FIX */

@media (min-width: 851px) and (max-width: 1200px) {
  .navbar {
    padding: 0 4%;
  }

  .logo img {
    width: 170px;
  }

  .nav-menu {
    gap: 20px;
    font-size: 0.78rem;
  }

  .nav-button {
    padding: 12px 18px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    margin-left: 10%;
    max-width: 520px;
  }

  h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
  }

  .hero-text {
    font-size: 1.05rem;
    max-width: 500px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 12px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about {
    grid-template-columns: 1fr;
  }

  .trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin: auto;
  }
}

@media (max-width: 950px) {
  .navbar {
    min-height: 78px;
  }

  .logo img {
    width: 165px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 78px;
    right: 7%;
    background: var(--white);
    flex-direction: column;
    gap: 18px;
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    z-index: 200;
  }
  

  .nav-menu.active {
    display: flex;
  }

  .hero {
    min-height: 760px;
    align-items: flex-start;
    padding: 90px 7% 50px;
  }

  .hero-image img {
    object-position: 72% center;
  }

  .hero-content {
    margin-left: 0;
    max-width: 100%;
    padding: 28px;
    background: rgba(250, 248, 245, 0.86);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

.hero-benefits div {
  background: rgba(20,20,20,0.88);
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(198,160,106,0.35);
}

  .about,
  .cta {
    grid-template-columns: 1fr;
  }

  .trust {
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin: auto;
  }
}

@media (max-width: 560px) {
  .hero-image img {
    object-position: 78% center;
  }

  .hero-content {
    padding: 24px;
  }

  h1 {
    font-size: 2.4rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .trust {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1500px) {
  .hero {
    min-height: 980px;
  }

  .hero-image img {
    object-position: right top;
  }
}


.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--heading);

  min-height: 48px;

  display: flex;
  align-items: flex-end;
}

.form-group input {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  font-family: inherit;
  font-size: 1rem;
}

.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.privacy-check {
  margin-top: 28px;
}

.privacy-check label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--body);
}

.privacy-check input {
  margin-top: 6px;
}

.privacy-check a {
  color: var(--gold);
  font-weight: 600;
}

.form-note {
  margin-top: 22px;
  font-size: 0.95rem;
  color: var(--body);
}

.form-button {
  margin-top: 28px;
  border: none;
  cursor: pointer;
}

section[id] {
  scroll-margin-top: 115px;
}

/* BERATUNGSABLAUF */

.consulting-process {
  padding: 110px 7%;
  background: var(--bg-alt);
}

.consulting-process .section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.process-card {
  position: relative;
  min-width: 0;
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.value-card h3,
.value-card p,
.process-card h3,
.process-card p {
  max-width: 100%;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.process-number {
  display: block;
  margin-bottom: 22px;
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: var(--gold);
}

.process-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: var(--heading);
}

.process-card p {
  color: var(--body);
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .consulting-process {
    padding: 75px 7%;
  }

  .process-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-card {
    padding: 30px 24px;
  }
}

/* LINKEDIN / FINANZWISSEN */

.knowledge-section {
  padding: 95px 7%;
  background: var(--heading);
  text-align: center;
}

.knowledge-content {
  max-width: 780px;
  margin: 0 auto;
}

.knowledge-section .section-label {
  color: var(--gold-light);
}

.knowledge-section h2 {
  margin-bottom: 24px;
  color: var(--white);
}

.knowledge-section p {
  max-width: 700px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.knowledge-section .gold-button {
  display: inline-block;
  margin-top: 20px;
}
@media (max-width: 560px) {
  .knowledge-section {
    padding: 70px 7%;
  }

  .knowledge-section h2 {
    font-size: 2rem;
  }
  .back-to-top {
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  font-size: 1.35rem;
}
}

/* NEW FOOTER */

.site-footer {
  width: 100%;
  padding: 70px 7% 25px;
  background: var(--heading);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-brand h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}

.footer-brand > p {
  max-width: 470px;
  line-height: 1.8;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.footer-contact a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.82);
  overflow-wrap: anywhere;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-column h4 {
  margin-bottom: 20px;
  color: var(--gold-light);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  max-width: 1300px;
  margin: 55px auto 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.creator-credit a {
  color: var(--gold-light);
  font-weight: 600;
}

/* MOBILE FOOTER */

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 7% 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: center;
  }

  .footer-brand > p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
  }
}

/* ÜBER UNS – WER ICH BIN */

.about-person {
  padding: 105px 7%;
  background: var(--bg-alt);
}

.about-person-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-person-image,
.about-person-content {
  min-width: 0;
}

.about-person-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(198, 160, 106, 0.18),
      rgba(17, 17, 17, 0.08)
    ),
    var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.about-person-image span {
  color: var(--body);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-person-content h2 {
  margin-bottom: 28px;
}

.about-person-content p {
  margin-bottom: 18px;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-person-content p:last-child {
  margin-bottom: 0;
}
/* ÜBER UNS – MEINE WERTE */

.about-values {
  padding: 105px 7%;
  background: var(--bg-main);
}

.about-values-inner {
  max-width: 1250px;
  margin: 0 auto;
}

.about-values .section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.value-card {
  position: relative;
  min-width: 0;
  height: 100%;
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.value-number {
  display: block;
  margin-bottom: 22px;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--gold);
}

.value-card h3 {
  margin-bottom: 14px;
  color: var(--heading);
  font-size: 1.25rem;
}
.value-card,
.process-card {
  min-width: 0;
}
.process-card h3,
.process-card p {
  max-width: 100%;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.value-card p {
  color: var(--body);
  line-height: 1.75;
}
.final-cta {
  padding: 90px 7%;
  background: var(--bg-main);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 20px 34px;
  background: var(--gold);
  color: var(--heading);
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, background 0.25s ease;
}

.final-cta-link:hover {
  transform: translateY(-3px);
  background: var(--gold-light);
}

/* LEISTUNGEN – EINLEITUNG */

.services-intro {
  padding: 95px 7%;
  background: var(--bg-main);
  text-align: center;
}

.services-intro-inner {
  max-width: 820px;
  margin: 0 auto;
}

.services-intro h2 {
  max-width: 720px;
  margin: 0 auto 24px;
}

.services-intro p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.85;
}
/* SAFE TEXT WRAPPING – LEISTUNGEN */

.service-detail-content,
.service-detail-box,
.service-detail-number,
.service-detail-side,
.why-sauri-item {
  min-width: 0;
}

.service-detail-content h2,
.service-detail-content p,
.service-detail-box h3,
.service-example-list li,
.service-detail-number p,
.why-sauri-item p {
  max-width: 100%;
  overflow-wrap: anywhere;
  hyphens: auto;
}

/* LEISTUNGEN – DETAILBEREICHE */

.service-detail {
  padding: 105px 7%;
  background: var(--bg-alt);
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail-content,
.service-detail-box {
  min-width: 0;
}

.service-detail-content h2 {
  max-width: 650px;
  margin-bottom: 24px;
}

.service-detail-content > p {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.85;
}

.service-detail-box {
  padding: 38px 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.service-detail-box h3 {
  margin-bottom: 24px;
  color: var(--heading);
}

.service-example-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.service-example-list li {
  position: relative;
  padding-left: 28px;
  color: var(--body);
  line-height: 1.6;
}

.service-example-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.service-detail-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.service-detail-number-small {
  min-height: 190px;
}
/* LEISTUNGEN – ABWECHSELNDE DETAILBEREICHE */

.service-detail-light {
  background: var(--bg-main);
}

.service-detail-number {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 38px 34px;
  background: var(--heading);
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
}

.service-detail-number span {
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  color: var(--gold);
}

.service-detail-number p {
  margin-top: 18px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* LEISTUNGEN – WARUM SAURI FINANZ */

.why-sauri {
  padding: 105px 7%;
  background: var(--heading);
}

.why-sauri-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-sauri-heading,
.why-sauri-grid {
  min-width: 0;
}

.why-sauri-heading .section-label {
  color: var(--gold-light);
}

.why-sauri-heading h2 {
  color: var(--white);
}

.why-sauri-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-sauri-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(198, 160, 106, 0.3);
  border-radius: 10px;
}

.why-sauri-item span {
  flex-shrink: 0;
  color: var(--gold-light);
  font-size: 1.2rem;
  font-weight: 700;
}

.why-sauri-item p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.final-cta > p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
}
/* VERSICHERUNGEN – EINLEITUNG */

.insurance-intro {
  padding: 100px 7%;
  background: var(--bg-main);
}

.insurance-intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.insurance-intro h2 {
  max-width: 760px;
  margin: 0 auto 28px;
}

.insurance-intro p:not(.section-label) {
  max-width: 820px;
  margin: 0 auto 18px;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.85;
}

.insurance-intro p:last-child {
  margin-bottom: 0;
}
/* VERSICHERUNGEN – SCHWERPUNKTE */

.insurance-focus {
  padding: 105px 7%;
  background: var(--bg-alt);
}

.insurance-focus-inner {
  max-width: 1250px;
  margin: 0 auto;
}

.insurance-focus .section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.insurance-focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
  gap: 24px;
}
.insurance-focus-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 34px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.insurance-focus-card {
  min-width: 0;
  overflow: hidden;
}

.insurance-focus-card h3,
.insurance-focus-card p {
  max-width: 100%;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.insurance-focus-number {
  display: block;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
}

.insurance-focus-card h3 {
  margin-bottom: 16px;
  color: var(--heading);
  font-size: 1.2rem;
}

.insurance-focus-card p {
  color: var(--body);
  line-height: 1.75;
}
/* VERSICHERUNGEN – BERATUNGSANSATZ */

.advisory-approach {
  padding: 105px 7%;
  background: var(--heading);
}

.advisory-approach-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
  max-width: 1150px;
  margin: 0 auto;
}

.advisory-approach-heading,
.advisory-approach-content {
  min-width: 0;
}

.advisory-approach-heading .section-label {
  color: var(--gold-light);
}

.advisory-approach-heading h2 {
  color: var(--white);
}

.advisory-approach-content p {
  max-width: 100%;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.85;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.advisory-approach-content p:last-child {
  margin-bottom: 0;
}
/* VERSICHERUNGEN – HÄUFIGE FRAGEN */

.insurance-faq {
  padding: 105px 7%;
  background: var(--bg-main);
}

.insurance-faq-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.insurance-faq .section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  min-width: 0;
  padding: 30px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 14px;
  color: var(--heading);
  font-size: 1.2rem;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.faq-item p {
  color: var(--body);
  line-height: 1.8;
  overflow-wrap: anywhere;
  hyphens: auto;
}
/* ALTERSVORSORGE – EINLEITUNG */

.retirement-intro {
  padding: 100px 7%;
  background: var(--bg-main);
}

.retirement-intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.retirement-intro h2 {
  max-width: 760px;
  margin: 0 auto 28px;
}

.retirement-intro p:not(.section-label) {
  max-width: 820px;
  margin: 0 auto 18px;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.85;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.retirement-intro p:last-child {
  margin-bottom: 0;
}
/* ALTERSVORSORGE – WARUM VORSORGE WICHTIG IST */

.retirement-importance {
  padding: 105px 7%;
  background: var(--heading);
}

.retirement-importance-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.retirement-importance-content,
.retirement-benefits {
  min-width: 0;
}

.retirement-importance .section-label {
  color: var(--gold-light);
}

.retirement-importance h2 {
  margin-bottom: 24px;
  color: var(--white);
}

.retirement-importance-content p:not(.section-label) {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.85;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.retirement-importance-content p:last-child {
  margin-bottom: 0;
}

.retirement-benefits {
  padding: 38px 34px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(198, 160, 106, 0.32);
  border-radius: 14px;
}

.retirement-benefits h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 1.25rem;
}

.retirement-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.retirement-benefits li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.retirement-benefits li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}
/* ALTERSVORSORGE – RENTENLÜCKE */

.retirement-gap {
  padding: 105px 7%;
  background: var(--bg-alt);
}

.retirement-gap-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.retirement-gap-highlight,
.retirement-gap-content {
  min-width: 0;
}

.retirement-gap-highlight {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
}

.retirement-gap-icon {
  display: flex;
  width: 90px;
  height: 90px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: var(--heading);
  color: var(--gold-light);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
}

.retirement-gap-highlight h3 {
  max-width: 320px;
  color: var(--heading);
  line-height: 1.5;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.retirement-gap-content h2 {
  margin-bottom: 24px;
}

.retirement-gap-content p:not(.section-label) {
  margin-bottom: 18px;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.85;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.retirement-gap-content p:last-child {
  margin-bottom: 0;
}
/* BACK TO TOP BUTTON */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 500;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(17, 17, 17, 0.15);
  border-radius: 50%;
  background: var(--gold);
  color: var(--heading);

  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;
  box-shadow: var(--shadow);

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(198, 160, 106, 0.4);
  outline-offset: 3px;
}
/* LEGAL PAGES */

.legal-page {
  padding: 95px 7%;
  background: var(--bg-main);
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  padding: 54px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin-top: 42px;
  margin-bottom: 18px;
  color: var(--heading);
  font-size: 1.45rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--body);
  line-height: 1.8;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 12px 0 24px 22px;
}

.legal-content a {
  color: var(--gold);
  font-weight: 600;
}

/* ÜBER UNS – PHILOSOPHIE */

.about-philosophy {
  padding: 105px 7%;
  background: var(--bg-main);
}

.about-philosophy-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-philosophy-heading,
.about-philosophy-text {
  min-width: 0;
}

.about-philosophy-heading h2 {
  max-width: 520px;
}

.about-philosophy-text p {
  margin-bottom: 20px;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-philosophy-text p:last-child {
  margin-bottom: 0;
}

.final-cta h2 {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--heading);
  text-align: center;
}


/* MOBILE AND FINAL RESPONSIVE FIXES */

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-button {
    display: none;
  }
}

@media (max-width: 1000px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insurance-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 950px) {
  .navbar {
    min-height: 78px;
  }

  .logo img {
    width: 165px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 78px;
    right: 7%;
    background: var(--white);
    flex-direction: column;
    gap: 18px;
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    z-index: 200;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero {
    min-height: 760px;
    align-items: flex-start;
    padding: 90px 7% 50px;
  }

  .hero-image img {
    object-position: 72% center;
  }

  .hero-content {
    margin-left: 0;
    max-width: 100%;
    padding: 28px;
    background: rgba(250, 248, 245, 0.86);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .hero-benefits div {
    background: rgba(20, 20, 20, 0.88);
    padding: 14px;
    border-radius: 8px;
    border: 1px solid rgba(198, 160, 106, 0.35);
  }

  .hero-benefits strong {
    color: white;
  }

  .hero-benefits span {
    color: rgba(255, 255, 255, 0.85);
  }

  .about,
  .cta {
    grid-template-columns: 1fr;
  }

  .trust {
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin: auto;
  }
}

@media (max-width: 850px) {
  .hero-symbol {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-section,
  .contact-form-wrapper,
  .contact-form,
  .form-grid,
  .form-group {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .about-philosophy {
    padding: 75px 7%;
  }

  .about-philosophy-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-philosophy-heading h2 {
    max-width: 100%;
  }

  .about-person {
    padding: 75px 7%;
  }

  .about-person-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-person-image {
    min-height: 420px;
  }

  .service-detail {
    padding: 75px 7%;
  }

  .service-detail-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-box {
    padding: 30px 24px;
  }

  .service-detail-number {
    min-height: 230px;
    padding: 30px 24px;
  }

  .service-detail-number-small {
    min-height: 190px;
  }

  .why-sauri {
    padding: 75px 7%;
  }

  .why-sauri-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-sauri-heading {
    text-align: center;
  }

  .why-sauri-grid {
    grid-template-columns: 1fr;
  }

  .advisory-approach {
    padding: 75px 7%;
  }

  .advisory-approach-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .advisory-approach-heading {
    text-align: center;
  }

  .retirement-importance {
    padding: 75px 7%;
  }

  .retirement-importance-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .retirement-importance-content {
    text-align: center;
  }

  .retirement-benefits {
    padding: 30px 24px;
  }

  .retirement-gap {
    padding: 75px 7%;
  }

  .retirement-gap-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .retirement-gap-highlight {
    min-height: 280px;
    padding: 34px 24px;
  }

  .retirement-gap-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .site-footer {
    width: 100%;
    padding: 60px 7% 25px;
    overflow-x: hidden;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    gap: 42px;
    text-align: center;
  }

  .footer-brand,
  .footer-column,
  .footer-bottom {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .footer-brand > p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-contact a,
  .footer-contact p,
  .footer-bottom p,
  .creator-credit {
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
  }

  .service-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    gap: 24px;
  }

  .service-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .service-card h3,
  .service-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
}

@media (max-width: 560px) {
  .hero-image img {
    object-position: 78% center;
  }

  .hero-content {
    padding: 24px;
  }

  h1 {
    font-size: 2.4rem;
  }

  .section {
    padding-left: 7%;
    padding-right: 7%;
  }

  .trust {
    grid-template-columns: 1fr;
  }

  .consulting-process {
    padding: 75px 7%;
  }

  .process-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-card {
    padding: 30px 24px;
  }

  .knowledge-section {
    padding: 70px 7%;
  }

  .knowledge-section h2 {
    font-size: 2rem;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
  }

  .about-values {
    padding: 75px 7%;
  }

  .values-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .value-card {
    padding: 30px 24px;
  }

  .final-cta {
    padding: 65px 7%;
  }

  .final-cta h2 {
    margin-bottom: 25px;
    font-size: 2rem;
    text-align: center;
  }

  .final-cta-link {
    width: 100%;
    padding: 18px 20px;
    font-size: 1rem;
  }

  .services-intro {
    padding: 70px 7%;
  }

  .services-intro h2 {
    font-size: 2rem;
  }

  .insurance-intro {
    padding: 70px 7%;
  }

  .insurance-intro h2 {
    font-size: 2rem;
  }

  .insurance-focus {
    padding: 75px 7%;
  }

  .insurance-focus-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .insurance-focus-card {
    padding: 30px 24px;
  }

  .insurance-faq {
    padding: 75px 7%;
  }

  .faq-item {
    padding: 26px 22px;
  }

  .retirement-intro {
    padding: 70px 7%;
  }

  .retirement-intro h2 {
    font-size: 2rem;
  }

  .legal-page {
    padding: 70px 6%;
  }

  .legal-content {
    padding: 32px 22px;
  }

  .legal-content h2 {
    font-size: 1.25rem;
  }
}