/*
Theme Name: Schober IT
Theme URI: https://stefanschober.com
Description: Professionelles IT-Consulting Theme für Stefan Schober – Light & Dark Mode
Author: Stefan Schober
Author URI: https://stefanschober.com
Version: 1.0.0
Text Domain: schober-it
*/

/* ============================================================
   LIGHT MODE (Standard)
   ============================================================ */
:root,
[data-theme="light"] {
  --bg-deep:        #f4f7fc;
  --bg-surface:     #eef2f9;
  --bg-card:        #ffffff;
  --bg-card-hover:  #f8fbff;
  --border:         rgba(14,100,165,0.10);
  --border-bright:  rgba(14,100,165,0.28);
  --accent:         #0369a1;
  --accent-2:       #0284c7;
  --accent-glow:    rgba(3,105,161,0.09);
  --accent-3:       #0ea5e9;
  --text-primary:   #0d1829;
  --text-secondary: #3d5166;
  --text-muted:     #8296ac;
  --font-display:   'Rajdhani', sans-serif;
  --font-body:      'DM Sans', sans-serif;
  --font-mono:      'JetBrains Mono', monospace;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --shadow-card:  0 2px 20px rgba(13,24,41,0.08), 0 1px 4px rgba(13,24,41,0.04);
  --shadow-hover: 0 8px 32px rgba(3,105,161,0.14);
  --shadow-glow:  0 0 40px rgba(3,105,161,0.12);
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-bg:       rgba(244,247,252,0.9);
  --nav-border:   rgba(14,100,165,0.12);
  --term-bg:      #f0f4fb;
  --term-bar:     #e4eaf5;
  --t-prompt:     #0369a1;
  --t-ok:         #16a34a;
  --t-warn:       #c2410c;
  --t-info:       #0284c7;
  --t-muted:      #94a3b8;
  --t-text:       #1e293b;
  --foot-bg:      #e8eef8;
}

/* ============================================================
   DARK MODE
   ============================================================ */
[data-theme="dark"] {
  --bg-deep:        #080c12;
  --bg-surface:     #0d1320;
  --bg-card:        #111827;
  --bg-card-hover:  #151f2e;
  --border:         rgba(56,189,248,0.12);
  --border-bright:  rgba(56,189,248,0.32);
  --accent:         #38bdf8;
  --accent-2:       #0ea5e9;
  --accent-glow:    rgba(56,189,248,0.15);
  --accent-3:       #7dd3fc;
  --text-primary:   #f0f6ff;
  --text-secondary: #94a3b8;
  --text-muted:     #475569;
  --shadow-card:    0 4px 24px rgba(0,0,0,0.45);
  --shadow-hover:   0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow:    0 0 40px rgba(56,189,248,0.15);
  --nav-bg:         rgba(8,12,18,0.9);
  --nav-border:     rgba(56,189,248,0.15);
  --term-bg:        #0d1320;
  --term-bar:       rgba(255,255,255,0.04);
  --t-prompt:       #38bdf8;
  --t-ok:           #4ade80;
  --t-warn:         #fb923c;
  --t-info:         #7dd3fc;
  --t-muted:        #475569;
  --t-text:         #e2e8f0;
  --foot-bg:        #0d1320;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.3s ease;
}

/* Hide all default WP block theme output */
.wp-site-blocks,
.wp-block-template-part,
#wpadminbar ~ .wp-site-blocks { padding: 0 !important; }

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-3); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   THEME TOGGLE
   ============================================================ */
.theme-toggle {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 500;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-bright);
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}
.theme-toggle:hover { transform: scale(1.12) rotate(15deg); box-shadow: var(--shadow-glow); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700; line-height: 1.05;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; line-height: 1.1;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600; line-height: 1.2;
}
.label-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 clamp(1.25rem,4vw,2.5rem); }
.section { padding: clamp(5rem,10vw,8rem) 0; }
.section--sm { padding: clamp(3rem,6vw,5rem) 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem,4vw,2.5rem);
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--nav-border);
  transition: var(--transition);
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-primary); }
.nav-logo-mark { width: 34px; height: 34px; background: linear-gradient(135deg,var(--accent),var(--accent-2)); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 700; color: #fff; flex-shrink: 0; }
[data-theme="dark"] .nav-logo-mark { color: #080c12; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .88rem; font-weight: 500; color: var(--text-secondary); position: relative; padding: .3rem 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--accent); transition: width .3s; }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-cta { padding: .5rem 1.1rem; background: var(--accent); color: #fff !important; font-weight: 700; border-radius: 6px; font-size: .85rem; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(3,105,161,.3); }
[data-theme="dark"] .nav-cta { color: #080c12 !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }

/* Mobile nav */
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(8,12,18,.97); backdrop-filter: blur(20px); z-index: 999; display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 2rem; }
.mobile-nav-overlay[hidden] { display: none; }
.mobile-nav-overlay ul { display: flex; flex-direction: column; gap: .5rem; text-align: center; width: 100%; max-width: 300px; }
.mobile-nav-overlay a { display: block; padding: 1rem; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--text-primary); border-radius: 6px; transition: var(--transition); }
.mobile-nav-overlay a:hover { color: var(--accent); background: rgba(56,189,248,.08); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.8rem; border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .95rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; }
[data-theme="dark"] .btn-primary { color: #080c12; }
.btn-primary:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(3,105,161,.35); color: #fff; }
[data-theme="dark"] .btn-primary:hover { color: #080c12; }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1.5px solid var(--border-bright); }
.btn-secondary:hover { background: var(--accent-glow); border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-lg { padding: .95rem 2.1rem; font-size: 1rem; }

/* ============================================================
   CARDS
   ============================================================ */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; transition: var(--transition); box-shadow: var(--shadow-card); position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--accent),transparent); opacity: 0; transition: opacity .3s; }
.card:hover { border-color: var(--border-bright); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card:hover::before { opacity: 1; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { margin-bottom: clamp(2.5rem,5vw,4rem); }
.section-header--center { text-align: center; }
.section-header .label-tag { display: block; margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; }
.section-header--center p { margin: 0 auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 68px; background: var(--bg-deep); }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 65% 38%, rgba(3,105,161,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 45% at 15% 80%, rgba(14,165,233,0.05) 0%, transparent 65%);
  transition: background .4s;
}
[data-theme="dark"] .hero-bg {
  background:
    radial-gradient(ellipse 55% 60% at 65% 38%, rgba(56,189,248,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 45% at 15% 80%, rgba(14,165,233,0.05) 0%, transparent 65%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(3,105,161,0.055) 1px,transparent 1px), linear-gradient(90deg,rgba(3,105,161,0.055) 1px,transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%,black 25%,transparent 78%);
}
[data-theme="dark"] .hero-grid {
  background-image: linear-gradient(rgba(56,189,248,0.04) 1px,transparent 1px), linear-gradient(90deg,rgba(56,189,248,0.04) 1px,transparent 1px);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .6rem; padding: .38rem 1rem; background: var(--accent-glow); border: 1px solid var(--border-bright); border-radius: 100px; margin-bottom: 1.75rem; animation: fadeUp .6s ease .1s both; }
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease infinite; }
.hero h1 { margin-bottom: 1.4rem; animation: fadeUp .7s ease .2s both; }
.hero-desc { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.85; margin-bottom: 2.2rem; animation: fadeUp .7s ease .3s both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; animation: fadeUp .7s ease .4s both; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); animation: fadeUp .7s ease .5s both; flex-wrap: wrap; }
.stat-number { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label { font-size: .78rem; color: var(--text-muted); margin-top: .2rem; }

/* Terminal */
.hero-visual { position: absolute; right: 2%; top: 50%; transform: translateY(-50%); width: 40%; max-width: 480px; display: flex; flex-direction: column; gap: 1rem; animation: fadeRight .8s ease .3s both; }
.terminal-card { background: var(--term-bg); border: 1px solid var(--border-bright); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-card); }
.terminal-header { display: flex; align-items: center; gap: .45rem; padding: .65rem 1rem; background: var(--term-bar); border-bottom: 1px solid var(--border); }
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dot--red { background: #ff5f57; } .terminal-dot--yellow { background: #febc2e; } .terminal-dot--green { background: #28c840; }
.terminal-title-bar { font-family: var(--font-mono); font-size: .68rem; color: var(--text-muted); margin-left: .4rem; }
.terminal-body { padding: 1.1rem 1.4rem; font-family: var(--font-mono); font-size: .79rem; line-height: 1.85; }
.t-prompt { color: var(--t-prompt); } .t-cmd { color: var(--t-text); } .t-comment { color: var(--t-muted); } .t-ok { color: var(--t-ok); } .t-warn { color: var(--t-warn); } .t-info { color: var(--t-info); }
.t-cursor { display: inline-block; width: 7px; height: 13px; background: var(--accent); vertical-align: middle; animation: blink 1.1s step-end infinite; }
.metric-mini-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 7px; padding: .85rem 1rem; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow-card); flex: 1; }
.metric-mini-card .label { font-size: .73rem; color: var(--text-secondary); }
.metric-mini-card .val { font-family: var(--font-mono); font-size: .82rem; font-weight: 600; color: var(--t-ok); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { padding: 2.2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; background: var(--bg-surface); }
.trust-strip p { font-family: var(--font-mono); font-size: .67rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.3rem; }
.tech-badges { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; }
.tech-badge { padding: .3rem .85rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 100px; font-family: var(--font-mono); font-size: .72rem; color: var(--text-secondary); transition: var(--transition); }
.tech-badge:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-preview { background: var(--bg-surface); }
.service-card .icon-wrap { width: 50px; height: 50px; background: var(--accent-glow); border: 1px solid var(--border-bright); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 1.1rem; transition: var(--transition); }
.service-card:hover .icon-wrap { transform: scale(1.07); }
.service-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: .5rem; }
.service-card p { color: var(--text-secondary); font-size: .88rem; line-height: 1.7; }
.link-more { display: inline-flex; align-items: center; gap: .3rem; font-size: .82rem; font-weight: 600; color: var(--accent); margin-top: 1.1rem; transition: gap .25s; }
.link-more:hover { gap: .6rem; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section {}
.cta-inner { background: linear-gradient(135deg,var(--accent-glow) 0%,rgba(14,165,233,0.04) 100%); border: 1.5px solid var(--border-bright); border-radius: 28px; padding: clamp(3rem,5vw,4.5rem) clamp(2rem,5vw,4rem); text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-card); }
.cta-inner::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 500px; height: 260px; background: radial-gradient(ellipse,var(--accent-glow) 0%,transparent 70%); pointer-events: none; }
.cta-inner h2 { margin-bottom: .9rem; }
.cta-inner p { color: var(--text-secondary); margin-bottom: 2rem; max-width: 440px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero { padding-top: 68px; background: var(--bg-deep); }
.page-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; padding: clamp(4rem,8vw,7rem) 0; }
.page-hero-content .label-tag { display: block; margin-bottom: 1rem; }
.page-hero-content h1 { margin-bottom: 1.25rem; }
.page-hero-content p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.25rem; }
.profile-visual { display: flex; justify-content: center; }
.profile-frame { position: relative; width: 280px; height: 280px; }
.profile-avatar-placeholder { width: 100%; height: 100%; background: var(--accent-glow); border: 2px solid var(--border-bright); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 4rem; overflow: hidden; }
.profile-badge { position: absolute; bottom: -1rem; right: -1rem; background: var(--bg-card); border: 1px solid var(--border-bright); border-radius: var(--radius-md); padding: .75rem 1.1rem; display: flex; align-items: center; gap: .6rem; box-shadow: var(--shadow-card); }
.profile-badge-icon { font-size: 1.3rem; }
.profile-badge-text { font-size: .75rem; color: var(--text-secondary); }
.profile-badge-text strong { display: block; font-size: .9rem; color: var(--accent); font-family: var(--font-display); }
.about-skills { background: var(--bg-surface); }
.skills-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 1.25rem; }
.skill-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; display: flex; align-items: flex-start; gap: 1rem; transition: var(--transition); box-shadow: var(--shadow-card); }
.skill-item:hover { border-color: var(--border-bright); transform: translateX(4px); }
.skill-item-icon { font-size: 1.5rem; flex-shrink: 0; }
.skill-item-body h4 { font-family: var(--font-display); font-weight: 600; margin-bottom: .25rem; }
.skill-item-body p { font-size: .85rem; color: var(--text-secondary); }
.experience-timeline { padding: clamp(5rem,8vw,7rem) 0; }
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1.5px; background: linear-gradient(180deg,var(--accent) 0%,transparent 100%); }
.timeline-item { position: relative; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.timeline-item:last-child { margin-bottom: 0; padding-bottom: 0; border: none; }
.timeline-dot { position: absolute; left: -2.84rem; top: .3rem; width: 14px; height: 14px; background: var(--bg-deep); border: 2px solid var(--accent); border-radius: 50%; }
.timeline-year { font-family: var(--font-mono); font-size: .72rem; color: var(--accent); letter-spacing: .1em; margin-bottom: .3rem; }
.timeline-item h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: .2rem; }
.timeline-item .company { color: var(--text-secondary); font-size: .9rem; margin-bottom: .6rem; }
.timeline-item p { color: var(--text-secondary); font-size: .9rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-hero { padding-top: 68px; }
.services-hero-inner { text-align: center; padding: clamp(4rem,8vw,7rem) 0 clamp(3rem,5vw,4rem); max-width: 680px; margin: 0 auto; }
.services-hero-inner .label-tag { display: block; margin-bottom: 1rem; }
.services-hero-inner h1 { margin-bottom: 1.25rem; }
.services-hero-inner p { color: var(--text-secondary); font-size: 1.05rem; }
.services-detail { background: var(--bg-surface); }
.service-detail-card { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; padding: clamp(3rem,5vw,4rem) 0; border-bottom: 1px solid var(--border); }
.service-detail-card:last-child { border-bottom: none; }
.service-detail-card.reverse .service-detail-content { order: 2; }
.service-detail-card.reverse .service-detail-visual { order: 1; }
.service-icon-large { width: 60px; height: 60px; background: var(--accent-glow); border: 1px solid var(--border-bright); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1.5rem; }
.service-detail-content h2 { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 700; margin-bottom: 1rem; }
.service-detail-content p { color: var(--text-secondary); font-size: .95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.service-features { display: flex; flex-direction: column; gap: .6rem; }
.service-feature { display: flex; align-items: center; gap: .7rem; font-size: .9rem; color: var(--text-secondary); }
.service-feature::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.service-detail-visual { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; min-height: 260px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .8rem; box-shadow: var(--shadow-card); }
.visual-metric { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: .7rem 1rem; background: var(--accent-glow); border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-mono); font-size: .78rem; }
.visual-metric .m-label { color: var(--text-secondary); }
.visual-metric .m-val { color: var(--t-ok); }
.visual-metric .m-bar { flex: 1; margin: 0 1rem; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.visual-metric .m-fill { height: 100%; background: linear-gradient(90deg,var(--accent),var(--accent-3)); border-radius: 2px; }
.pricing-section { padding: clamp(5rem,8vw,7rem) 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); box-shadow: var(--shadow-card); }
.pricing-card.featured { border-color: var(--accent); background: var(--accent-glow); position: relative; }
.pricing-card.featured::before { content: 'EMPFOHLEN'; position: absolute; top: -.8rem; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-family: var(--font-mono); font-size: .65rem; letter-spacing: .1em; padding: .2rem .8rem; border-radius: 100px; white-space: nowrap; }
[data-theme="dark"] .pricing-card.featured::before { color: #080c12; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.pricing-label { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.pricing-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: .75rem; }
.pricing-price { display: flex; align-items: baseline; gap: .25rem; margin-bottom: 1.5rem; }
.pricing-amount { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--accent); }
.pricing-unit { font-size: .85rem; color: var(--text-muted); }
.pricing-features { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; }
.pricing-feature { display: flex; align-items: flex-start; gap: .6rem; font-size: .88rem; color: var(--text-secondary); }
.pricing-feature-check { color: var(--accent); flex-shrink: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { padding-top: 68px; }
.contact-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: start; padding: clamp(4rem,8vw,7rem) 0; }
.contact-intro .label-tag { display: block; margin-bottom: 1rem; }
.contact-intro h1 { margin-bottom: 1.25rem; }
.contact-intro p { color: var(--text-secondary); font-size: 1.05rem; margin-bottom: 2rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: center; gap: 1rem; }
.contact-info-icon { width: 44px; height: 44px; background: var(--accent-glow); border: 1px solid var(--border-bright); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-body .info-label { font-size: .75rem; color: var(--text-muted); }
.contact-info-body .info-value { font-size: .95rem; color: var(--text-primary); font-weight: 500; }
.contact-info-body a.info-value { color: var(--accent); }
.contact-form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.5rem,4vw,2.5rem); box-shadow: var(--shadow-card); }
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: .5rem; }
.contact-form-wrap > p { color: var(--text-secondary); font-size: .9rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--text-secondary); margin-bottom: .45rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--bg-surface); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: .75rem 1rem; color: var(--text-primary); font-family: var(--font-body); font-size: .9rem; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--bg-card); color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; }
.form-note { text-align: center; font-size: .78rem; color: var(--text-muted); margin-top: .75rem; }
.availability-block { background: var(--bg-surface); padding: clamp(5rem,8vw,6rem) 0; }
.avail-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(150px,1fr)); gap: 1rem; }
.avail-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem 1.25rem; text-align: center; box-shadow: var(--shadow-card); }
.avail-day { font-family: var(--font-mono); font-size: .68rem; color: var(--text-muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .4rem; }
.avail-time { font-family: var(--font-display); font-size: .95rem; font-weight: 600; color: var(--text-primary); }
.avail-status { display: inline-flex; align-items: center; gap: .3rem; font-size: .72rem; color: var(--t-ok); margin-top: .4rem; }
.avail-status.closed { color: var(--text-muted); }
.avail-dot { width: 5px; height: 5px; background: var(--t-ok); border-radius: 50%; }
.avail-status.closed .avail-dot { background: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer-custom { background: var(--foot-bg); border-top: 1px solid var(--border); padding: 4rem 0 2rem; transition: background .4s; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border); }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { color: var(--text-secondary); font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: var(--font-display); font-size: .9rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { color: var(--text-secondary); font-size: .9rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { color: var(--text-muted); font-size: .82rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-muted); font-size: .82rem; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================================
   ANIMATIONS & SCROLL REVEAL
   ============================================================ */
@keyframes fadeUp   { from { opacity:0; transform:translateY(22px)  } to { opacity:1; transform:translateY(0)   } }
@keyframes fadeRight{ from { opacity:0; transform:translateX(28px) translateY(-50%); } to { opacity:1; transform:translateX(0) translateY(-50%); } }
@keyframes pulse    { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
@keyframes blink    { 0%,100%{opacity:1} 50%{opacity:0} }

.reveal { opacity:0; transform:translateY(20px); transition:opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1024px) {
  .hero-visual { display: none; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card.reverse .service-detail-content,
  .service-detail-card.reverse .service-detail-visual { order: unset; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .page-hero-inner, .contact-hero-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .avail-grid { grid-template-columns: repeat(2,1fr); }
}
