/* ============================================================
   1stInfo – Modernes Webdesign
   Haupt-Stylesheet · Gebürstetes Aluminium / Sans-Serif
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Variablen -------------------------------------------- */
:root {
  /* Hintergründe: Aluminium-Töne */
  --bg:          #d2d7dc;
  --bg-mid:      #bec4ca;
  --bg-surface:  #dde2e7;
  --bg-card:     rgba(255,255,255,0.68);
  --bg-card-h:   rgba(255,255,255,0.90);

  /* Stahlblau-Silber-Töne (Akzente) */
  --silver-dim:    #7a8a98;
  --silver:        #506070;
  --silver-light:  #2e4050;
  --silver-bright: #102028;

  /* Gold (etwas dunkler für Kontrast auf hell) */
  --gold:       #8a6418;
  --gold-light: #a07820;
  --gold-dim:   #6e5010;

  /* Akzentblau */
  --accent:     #2a5880;
  --accent-h:   #1a4060;

  /* Text */
  --text:       #3a4550;
  --text-dim:   #3a4550;
  --text-light: #1e2c38;

  /* Ränder */
  --border:     rgba(0,0,0,0.10);
  --border-h:   rgba(0,0,0,0.22);

  --white:      #ffffff;

  /* Schatten (leichter als vorher) */
  --shadow-sm:   0 1px 6px rgba(0,0,0,0.10);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.16);
  --glow-gold:   0 0 20px rgba(138,100,24,0.18);
  --glow-silver: 0 0 20px rgba(80,96,112,0.12);

  /* Schriften */
  --font-display: 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h: 72px;
  --max-w: 1280px;

  --ease:     cubic-bezier(0.4,0,0.2,1);
  --ease-out: cubic-bezier(0,0,0.2,1);
  --tr:       0.3s cubic-bezier(0.4,0,0.2,1);
  --tr-slow:  0.6s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  /* Gebürstetes Aluminium: feine horizontale Linien + Farbverlauf */
  background-color: #d0d5da;
  background-image:
    repeating-linear-gradient(
      175deg,
      rgba(255,255,255,0)    0px,
      rgba(255,255,255,0.07) 1px,
      rgba(255,255,255,0)    2px,
      rgba(0,0,0,0.02)       3px,
      rgba(255,255,255,0)    4px
    ),
    linear-gradient(
      160deg,
      #e2e7ec 0%,
      #d0d6da 25%,
      #c6ccd2 55%,
      #d4d9de 80%,
      #dde2e6 100%
    );
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { color: var(--accent); text-decoration: none; transition: var(--tr); }
a:hover { color: var(--accent-h); }

/* ---- Typografie ------------------------------------------ */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  color: var(--silver-bright);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 0.88rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
p  { margin-bottom: 1em; }

.lead { font-size: 1.1rem; color: var(--silver-light); font-weight: 400; line-height: 1.85; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-silver { color: var(--silver-light); }
.text-dim    { color: var(--text-dim); }

/* ---- Layout ----------------------------------------------- */
.container {
  width: 98%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-pad    { padding: 6rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.section-subtitle {
  color: var(--text-dim);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.title-line {
  display: block;
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1rem 0 1.5rem;
  border-radius: 1px;
}
.title-line.centered { margin: 1rem auto 1.5rem; }
.section-intro {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.si-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--tr-slow), box-shadow var(--tr-slow);
}
.si-nav.scrolled {
  background: rgba(205,212,218,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6), 0 2px 16px rgba(0,0,0,0.10);
}
.si-nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.si-nav-logo { display: flex; align-items: center; text-decoration: none; }
.si-nav-logo img { height: 60px; width: auto; transition: opacity var(--tr); filter: drop-shadow(0 0 5px rgba(255,255,255,0.95)); }
.si-nav-logo:hover img { opacity: 0.75; }

.si-nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.si-nav-links li a {
  display: inline-block;
  color: var(--silver-light);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  position: relative;
  transition: color var(--tr);
}
.si-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: left var(--tr), right var(--tr);
}
.si-nav-links li a:hover,
.si-nav-links li a.active { color: var(--silver-bright); }
.si-nav-links li a:hover::after,
.si-nav-links li a.active::after { left: 0.9rem; right: 0.9rem; }

.si-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.46rem 1.3rem;
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.73rem !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background var(--tr), color var(--tr), border-color var(--tr) !important;
  margin-left: 0.8rem;
}
.si-nav-cta::after { display: none !important; }
.si-nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }

.si-nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.3rem; background: none; border: none; }
.si-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--silver-light); transition: var(--tr); border-radius: 1px; }

/* ============================================================
   HERO
   ============================================================ */
.si-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.si-hero-bg {
  position: absolute;
  inset: -20% 0;
  background:
    repeating-linear-gradient(
      175deg,
      rgba(255,255,255,0)    0px,
      rgba(255,255,255,0.09) 1px,
      rgba(255,255,255,0)    2px,
      rgba(0,0,0,0.02)       3px,
      rgba(255,255,255,0)    4px
    ),
    radial-gradient(ellipse 70% 60% at 25% 35%, rgba(255,255,255,0.5) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(180,195,210,0.3) 0%, transparent 55%),
    linear-gradient(
      155deg,
      #e8edf2 0%,
      #d4dae0 30%,
      #c8d0d8 60%,
      #bec8d0 100%
    );
  will-change: transform;
}
.si-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 80%);
}
/* Keine Orbs mehr – nicht nötig auf hellem Hintergrund */
.si-hero-content { position: relative; z-index: 2; max-width: 800px; }
.si-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.8rem;
  color: var(--gold); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.si-hero-eyebrow::before { content:''; display:block; width:40px; height:2px; background:var(--gold); border-radius:1px; }
.si-hero h1 { margin-bottom: 1.5rem; }
.si-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--silver-bright) 0%, var(--gold) 60%, var(--silver-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.si-hero-text { font-size: 1.08rem; color: var(--silver-light); max-width: 540px; font-weight: 400; margin-bottom: 2.5rem; line-height: 1.85; }
.si-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.si-hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-dim); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: scroll-hint 2.5s ease-in-out infinite;
}
.si-hero-scroll-line { width:1px; height:40px; background:linear-gradient(180deg,var(--gold),transparent); }
@keyframes scroll-hint {
  0%,100% { opacity:0.5; transform:translateX(-50%) translateY(0); }
  50%      { opacity:1;   transform:translateX(-50%) translateY(6px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 0.85rem 2rem; border: none; cursor: pointer;
  position: relative; overflow: hidden; transition: var(--tr); text-decoration: none;
  border-radius: 3px;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-110%) skewX(-12deg);
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before { transform: translateX(110%) skewX(-12deg); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: var(--white) !important;
  box-shadow: 0 3px 14px rgba(138,100,24,0.30);
}
.btn-primary:hover { box-shadow: 0 5px 22px rgba(138,100,24,0.42); transform: translateY(-2px); color: var(--white) !important; }
.btn-outline {
  background: rgba(255,255,255,0.5);
  color: var(--silver-light) !important;
  border: 1.5px solid var(--border-h);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { border-color: var(--silver-light); color: var(--silver-bright) !important; background: rgba(255,255,255,0.75); transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.72rem; }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   PARALLAX DIVIDER
   ============================================================ */
.si-parallax-divider {
  position: relative; overflow: hidden;
  min-height: 260px; display: flex; align-items: center;
}
.si-par-bg {
  position: absolute; inset: -30% 0; will-change: transform;
}
.si-par-content { position: relative; z-index: 2; width: 100%; }

/* Dunklerer Streifen – Kontrast auf der hellen Aluminium-Seite */
.par-silver {
  background:
    repeating-linear-gradient(
      175deg,
      rgba(255,255,255,0)    0px,
      rgba(255,255,255,0.06) 1px,
      rgba(255,255,255,0)    2px,
      rgba(0,0,0,0.03)       3px,
      rgba(255,255,255,0)    4px
    ),
    linear-gradient(135deg, #2a3540 0%, #3a4a58 50%, #2e3e4c 100%);
}
.par-dark {
  background:
    linear-gradient(135deg, #1e2830 0%, #2a3840 100%);
}
.par-mid {
  background:
    repeating-linear-gradient(
      175deg,
      rgba(255,255,255,0)    0px,
      rgba(255,255,255,0.05) 1px,
      rgba(255,255,255,0)    2px,
      rgba(0,0,0,0.02)       3px,
      rgba(255,255,255,0)    4px
    ),
    linear-gradient(135deg, #38485a 0%, #2c3c4a 100%);
}
/* Auf dunklen par-*: Text hell */
.par-silver .lead,
.par-dark .lead,
.par-mid .lead { color: rgba(220,230,240,0.88); }
.par-silver h2, .par-dark h2, .par-mid h2,
.par-silver h3, .par-dark h3, .par-mid h3 { color: #e8edf2; }
.par-silver .section-subtitle,
.par-dark .section-subtitle,
.par-mid .section-subtitle { color: rgba(160,180,200,0.8); }

/* ============================================================
   KARTEN
   ============================================================ */
.si-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  transition: var(--tr-slow);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.7);
}
.si-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.5s var(--ease);
  border-radius: 6px 6px 0 0;
}
.si-card:hover {
  background: var(--bg-card-h);
  border-color: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.9);
  transform: translateY(-4px);
}
.si-card:hover::before { transform: scaleX(1); }
.si-card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(138,100,24,0.08); border: 1.5px solid rgba(138,100,24,0.22);
  border-radius: 50%; margin-bottom: 1.5rem; transition: var(--tr);
}
.si-card-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.si-card:hover .si-card-icon { background: rgba(138,100,24,0.14); box-shadow: 0 0 16px rgba(138,100,24,0.18); }
.si-card h3 { margin-bottom: 0.75rem; }
.si-card p  { color: var(--text); font-size: 0.93rem; margin-bottom: 0; }
.si-card-link {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.25rem;
  color: var(--gold); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; transition: gap var(--tr), color var(--tr);
}
.si-card-link:hover { gap: 0.7rem; color: var(--gold-light); }
.si-card-link svg { width: 13px; height: 13px; stroke: currentColor; fill:none; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }

/* ============================================================
   STATS LEISTE
   ============================================================ */
.si-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid rgba(255,255,255,0.75); border-radius: 6px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.7);
}
.si-stat-item { padding: 2.5rem 2rem; text-align: center; border-right: 1px solid var(--border); position: relative; transition: background var(--tr); }
.si-stat-item:last-child { border-right: none; }
.si-stat-item:hover { background: var(--bg-card-h); }
.si-stat-num { display: block; font-family: var(--font-display); font-size: 3.2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.si-stat-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); }

/* ============================================================
   PREISTABELLE (Zeilen)
   ============================================================ */
.si-price-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.75); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-sm); }
.si-price-table th { background: rgba(0,0,0,0.05); color: var(--text-dim); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 1rem 1.5rem; text-align: left; border-bottom: 1px solid var(--border); }
.si-price-table td { padding: 1.1rem 1.5rem; font-size: 0.9rem; color: var(--text); border-bottom: 1px solid var(--border); transition: background var(--tr); }
.si-price-table tr:last-child td { border-bottom: none; }
.si-price-table tbody tr:hover td { background: rgba(255,255,255,0.5); }
.si-price-table .price-amount { font-size: 1.2rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.si-price-table .price-service { color: var(--silver-light); font-weight: 500; }
.si-price-note-box { background: rgba(255,255,255,0.5); border: 1px solid var(--border); border-radius: 6px; padding: 1.25rem 1.5rem; font-size: 0.85rem; color: var(--text-dim); margin-top: 1.5rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.si-price-note-box svg { width:16px; height:16px; stroke:var(--gold); fill:none; stroke-width:1.5; flex-shrink:0; margin-top:2px; }

/* ============================================================
   PREISKARTEN (Pakete)
   ============================================================ */
.si-pricing { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 2rem; align-items: stretch; }
.si-price-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.75); border-radius: 6px; padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: var(--tr-slow); display: flex; flex-direction: column; box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.7); }
.si-price-card.featured { border-color: var(--gold); border-width: 2px; background: rgba(255,255,255,0.82); box-shadow: var(--shadow-md), var(--glow-gold); }
.si-price-badge { position: absolute; top: 1.2rem; right: 1.2rem; background: var(--gold); color: var(--white); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.22rem 0.6rem; border-radius: 3px; }
.si-price-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.95); box-shadow: var(--shadow-md); }
.si-price-card.featured:hover { border-color: var(--gold-light); box-shadow: var(--shadow-md), var(--glow-gold); }
.si-price-icon { width:48px; height:48px; background:rgba(138,100,24,0.07); border:1.5px solid rgba(138,100,24,0.18); border-radius:50%; display:flex; align-items:center; justify-content:center; margin-bottom:1.5rem; }
.si-price-icon svg { width:22px; height:22px; stroke:var(--gold); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.si-price-name { font-size: 1.3rem; font-weight: 700; color: var(--silver-bright); margin-bottom: 0.25rem; }
.si-price-desc { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 1.5rem; }
.si-price-amount { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.5rem; }
.si-price-eur { font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.si-price-suffix { font-size: 0.8rem; color: var(--text-dim); }
.si-price-note  { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 1.75rem; }
.si-price-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.si-price-features { list-style: none; flex: 1; }
.si-price-features li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.45rem 0; font-size: 0.88rem; color: var(--text); border-bottom: 1px solid rgba(0,0,0,0.05); }
.si-price-features li:last-child { border-bottom: none; }
.si-price-features li svg { width:14px; height:14px; stroke:var(--gold); fill:none; stroke-width:2.5; flex-shrink:0; margin-top:3px; }
.si-price-card .btn { margin-top: 2rem; width: 100%; justify-content: center; }

/* ============================================================
   KONTAKT (kein Formular mehr)
   ============================================================ */
.si-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.si-contact-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--border); transition: var(--tr); }
.si-contact-item:last-child { border-bottom: none; }
.si-contact-item:hover { padding-left: 0.5rem; }
.si-contact-icon { width:40px; height:40px; background:rgba(138,100,24,0.07); border:1.5px solid rgba(138,100,24,0.18); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.si-contact-icon svg { width:18px; height:18px; stroke:var(--gold); fill:none; stroke-width:1.5; stroke-linecap:round; stroke-linejoin:round; }
.si-contact-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); font-weight: 700; margin-bottom: 0.2rem; }
.si-contact-value { color: var(--silver-light); font-weight: 500; }
.si-contact-value a { color: inherit; }
.si-contact-value a:hover { color: var(--gold); }

/* Kontakt-CTA-Box */
.si-contact-cta-box {
  background: var(--bg-card);
  border: 1.5px solid rgba(138,100,24,0.25);
  border-radius: 6px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.7);
}
.si-contact-cta-box h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }
.si-contact-cta-box p { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 1.75rem; }
.si-contact-cta-box .btn { font-size: 0.88rem; padding: 1rem 2.5rem; }

/* ============================================================
   FEATURE LIST
   ============================================================ */
.si-feature-list { display: flex; flex-direction: column; gap: 1.25rem; }
.si-feature-item { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.25rem; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.75); border-radius: 6px; transition: var(--tr); box-shadow: var(--shadow-sm); }
.si-feature-item:hover { border-color: rgba(255,255,255,0.95); background: var(--bg-card-h); transform: translateX(5px); box-shadow: var(--shadow-md); }
.si-feature-num { font-size: 1.6rem; font-weight: 700; color: rgba(138,100,24,0.3); line-height: 1; flex-shrink: 0; width: 2rem; text-align: center; }
.si-feature-item h4 { color: var(--silver-light); margin-bottom: 0.25rem; font-size: 0.88rem; }
.si-feature-item p  { font-size: 0.87rem; color: var(--text-dim); margin: 0; }

/* ============================================================
   QUOTE (auf dunklem parallax Hintergrund)
   ============================================================ */
.si-quote { max-width: 820px; margin: 0 auto; text-align: center; }
.si-quote-marks { font-size: 7rem; line-height: 0.5; color: rgba(138,100,24,0.4); display: block; margin-bottom: 0; }
.si-quote blockquote { font-size: clamp(1.2rem, 2.2vw, 1.9rem); font-weight: 400; color: rgba(220,232,244,0.92); line-height: 1.55; margin: 0.5rem 0 1.5rem; }
.si-quote cite { font-size: 0.72rem; font-style: normal; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(160,140,80,0.8); }

/* ============================================================
   PAGE HERO (Unterseiten)
   ============================================================ */
.si-page-hero { position: relative; padding: calc(var(--nav-h) + 4rem) 0 4rem; overflow: hidden; }
.si-page-hero-bg {
  position: absolute; inset: -30% 0;
  background:
    repeating-linear-gradient(
      175deg,
      rgba(255,255,255,0)    0px,
      rgba(255,255,255,0.08) 1px,
      rgba(255,255,255,0)    2px,
      rgba(0,0,0,0.02)       3px,
      rgba(255,255,255,0)    4px
    ),
    radial-gradient(ellipse 70% 60% at 20% 40%, rgba(255,255,255,0.45) 0%, transparent 55%),
    linear-gradient(150deg, #dce2e8 0%, #c8d0d8 45%, #d0d8e0 100%);
  will-change: transform;
}
.si-page-hero .si-par-content { position: relative; z-index: 2; }
.si-breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.73rem; color: var(--text-dim); margin-bottom: 1.5rem; flex-wrap: wrap; }
.si-breadcrumb a { color: var(--gold); }
.si-breadcrumb a:hover { color: var(--gold-light); }
.si-breadcrumb-sep { color: var(--text-dim); }

/* ============================================================
   LEGAL
   ============================================================ */
.si-legal-content { max-width: 820px; margin: 0 auto; }
.si-legal-content h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; }
.si-legal-content h3 { margin-top: 2rem; margin-bottom: 0.5rem; font-size: 1.1rem; color: var(--silver-light); }
.si-legal-content p, .si-legal-content li { font-size: 0.91rem; color: var(--text); line-height: 1.85; }
.si-legal-content ul { padding-left: 1.5rem; margin-bottom: 1em; }
.si-legal-content li { margin-bottom: 0.3em; }
.si-legal-content a { color: var(--gold); }
.si-legal-content a:hover { color: var(--gold-light); }
.si-legal-box { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.75); border-radius: 6px; padding: 2rem; margin: 2rem 0; box-shadow: var(--shadow-sm); }
.si-legal-box p:last-child { margin-bottom: 0; }

/* ============================================================
   FOOTER (dunkel – Kontrast zum hellen Aluminium)
   ============================================================ */
.si-footer { background: #28343e; border-top: 3px solid var(--gold); padding: 4rem 0 2rem; }
.si-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.si-footer-brand img { height: 44px; width: auto; margin-bottom: 1.25rem; }
.si-footer-brand p { font-size: 0.86rem; color: rgba(200,215,228,0.6); max-width: 300px; line-height: 1.8; }
.si-footer-heading { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(200,215,228,0.45); margin-bottom: 1.2rem; }
.si-footer-links { list-style: none; }
.si-footer-links li { margin-bottom: 0.55rem; }
.si-footer-links a { color: rgba(200,215,228,0.65); font-size: 0.87rem; display: inline-flex; align-items: center; transition: var(--tr); }
.si-footer-links a:hover { color: rgba(220,235,248,0.95); padding-left: 0.5rem; }
.si-footer-contact-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.84rem; color: rgba(200,215,228,0.65); margin-bottom: 0.7rem; }
.si-footer-contact-item svg { width:14px; height:14px; stroke:var(--gold); fill:none; stroke-width:1.5; flex-shrink:0; }
.si-footer-contact-item a { color: inherit; }
.si-footer-contact-item a:hover { color: rgba(220,235,248,0.95); }
.si-footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.si-footer-copy { font-size: 0.76rem; color: rgba(200,215,228,0.4); }
.si-footer-copy span { color: var(--gold); }
.si-footer-legal { display: flex; gap: 1.5rem; list-style: none; }
.si-footer-legal a { font-size: 0.76rem; color: rgba(200,215,228,0.4); }
.si-footer-legal a:hover { color: rgba(220,235,248,0.9); }

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
.js-active .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.js-active .reveal.delay-1 { transition-delay: 0.1s; }
.js-active .reveal.delay-2 { transition-delay: 0.2s; }
.js-active .reveal.delay-3 { transition-delay: 0.3s; }
.js-active .reveal.delay-4 { transition-delay: 0.4s; }
.js-active .reveal.in-view { opacity: 1; transform: none; }

/* ---- Scrollbar ------------------------------------------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-mid); }
::-webkit-scrollbar-thumb { background: var(--silver-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--silver); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .si-contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .si-footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
  .si-stats { grid-template-columns: 1fr; }
  .si-stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .si-stat-item:last-child { border-bottom: none; }
  .si-form-row { grid-template-columns: 1fr; }
  .si-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .si-footer-bottom { flex-direction: column; align-items: flex-start; }
  .si-nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(205,212,218,0.97); backdrop-filter: blur(12px); flex-direction: column; padding: 2rem; gap: 0.5rem; border-bottom: 1px solid var(--border); }
  .si-nav-links.open { display: flex; }
  .si-nav-links li a { font-size: 1rem; padding: 0.6rem 0; color: var(--silver-bright); }
  .si-nav-cta { margin-left: 0; margin-top: 1rem; }
  .si-nav-toggle { display: flex; }
  .si-hero-btns { flex-direction: column; }
  .section-pad { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
}

/* One-Pager Section Scroll-Offset */
section[id], div[id].si-onepage-section { scroll-margin-top: calc(var(--nav-h) + 0.5rem); }
