/* Local Inter Font */
@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url('/assets/fonts/inter-400.ttf') format('truetype'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url('/assets/fonts/inter-600.ttf') format('truetype'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:700; font-display:swap; src:url('/assets/fonts/inter-700.ttf') format('truetype'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:800; font-display:swap; src:url('/assets/fonts/inter-800.ttf') format('truetype'); }

:root {
    --primary: #1a3a5c;
    --primary-mid: #2563a0;
    --accent: #c9a227;
    --accent-hover: #b8911f;
    --text: #1e293b;
    --text-mid: #475569;
    --text-light: #7a8ba0;
    --bg: #fff;
    --bg-warm: #f7f9fc;
    --bg-section: #f0f4f8;
    --border: #dce4ed;
}
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Inter',sans-serif; font-size:16px; line-height:1.7; color:var(--text); background:var(--bg); -webkit-font-smoothing:antialiased; }
.container { max-width:1080px; margin:0 auto; padding:0 24px; }
a { color:var(--primary-mid); text-decoration:none; transition:all 0.2s; }
h1,h2,h3 { line-height:1.25; color:var(--primary); margin-top:0; }
h1 { font-size:2rem; font-weight:800; letter-spacing:-0.5px; margin-bottom:16px; }
h2 { font-size:1.5rem; font-weight:700; margin-top:32px; margin-bottom:16px; }
h3 { font-size:1.1rem; font-weight:600; margin-top:24px; margin-bottom:10px; }

/* HEADER */
.header { background:#fff; border-bottom:1px solid var(--border); position:sticky; top:0; z-index:100; }
.header-inner { display:flex; justify-content:space-between; align-items:center; padding:10px 24px; max-width:1080px; margin:0 auto; }
.header-brand { display:flex; align-items:center; gap:10px; }
.header-logo { width:36px; height:36px; border-radius:6px; }
.header-title { font-size:14px; font-weight:700; color:var(--primary); line-height:1.2; }
.header-sub { font-size:11px; color:var(--text-light); font-weight:500; }
.header-nav { display:flex; gap:2px; }
.header-nav a { color:var(--text-mid); font-size:13px; padding:6px 12px; border-radius:6px; font-weight:500; }
.header-nav a:hover { background:var(--bg-section); color:var(--primary); }
@media(max-width:900px) { .header-nav { display:none; } }

/* HERO - Desktop: 2-column (text left, image right). Mobile: round centered image */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1e4a6e 100%);
    color: white;
    padding: 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    max-width: 1080px;
    margin: 0 auto;
    align-items: center;
}
.hero-text-col {
    padding: 52px 24px 52px 24px;
}
.hero-img-col {
    padding: 0 20px 24px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-img-desktop {
    width: 100%;
    height: 340px;
    border-radius: 10px;
    object-fit: cover;
    object-position: 25% 72%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.hero-img-mobile {
    display: none;
    width: 35vw;
    height: 35vw;
    max-width: 180px;
    max-height: 180px;
    min-width: 130px;
    min-height: 130px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 45% 25%;
    border: 4px solid rgba(255,255,255,0.2);
    margin: 0 auto 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.hero-doctor-name {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.hero h1 { color:white; font-size:2rem; margin-bottom:14px; }
.hero-text { font-size:16px; opacity:0.8; line-height:1.7; margin-bottom:24px; max-width:520px; }
.hero-stats { display:flex; gap:36px; margin-bottom:24px; padding:18px 0; border-top:1px solid rgba(255,255,255,0.1); border-bottom:1px solid rgba(255,255,255,0.1); }
.stat-num { font-size:26px; font-weight:800; letter-spacing:-1px; }
.stat-label { font-size:10px; text-transform:uppercase; letter-spacing:1px; opacity:0.5; font-weight:600; }
.hero-cta-row { display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.btn-gold { display:inline-block; background:var(--accent); color:white; padding:14px 32px; border-radius:6px; font-size:15px; font-weight:700; }
.btn-gold:hover { background:var(--accent-hover); color:white; }
.btn-outline { display:inline-block; border:2px solid rgba(255,255,255,0.4); color:white; padding:12px 28px; border-radius:6px; font-size:15px; font-weight:600; }
.btn-outline:hover { border-color:white; color:white; background:rgba(255,255,255,0.1); }
.hero-or { opacity:0.5; font-size:14px; }
.hero-tel { color:rgba(255,255,255,0.8); font-weight:600; font-size:16px; border-bottom:1px solid rgba(255,255,255,0.3); padding-bottom:2px; }
.hero-tel:hover { color:white; border-color:white; }

@media(max-width:768px) {
    .hero-grid { grid-template-columns:1fr; text-align:center; }
    .hero-text-col { padding:36px 24px 32px; }
    .hero-img-col { display:none; }
    .hero-img-mobile { display:block; }
    .hero h1 { font-size:1.55rem; }
    .hero-text { max-width:100%; margin-left:auto; margin-right:auto; }
    .hero-stats { justify-content:center; gap:24px; }
    .hero-cta-row { justify-content:center; }
}

/* TRUST */
.trust-bar { background:var(--bg-warm); border-bottom:1px solid var(--border); padding:14px 0; }
.trust-items { display:flex; justify-content:center; gap:36px; flex-wrap:wrap; }
.trust-item { font-size:13px; color:var(--text-mid); font-weight:600; display:flex; align-items:center; gap:7px; }
.trust-dot { width:7px; height:7px; background:var(--accent); border-radius:50%; flex-shrink:0; }

/* SECTIONS */
.section { padding:60px 0; }
.section-alt { background:var(--bg-section); }
.section-header { text-align:center; margin-bottom:40px; }
.section-header p { color:var(--text-light); font-size:15px; margin-top:6px; }
.accent-line { width:36px; height:3px; background:var(--accent); margin:10px auto 0; }
.accent-line-left { margin:10px 0 0; }

/* SERVICES */
.services-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.service-card { background:white; border-radius:10px; padding:28px; border:1px solid var(--border); transition:all 0.3s; }
.service-card:hover { border-color:var(--primary-mid); box-shadow:0 4px 20px rgba(0,0,0,0.05); }
.service-card h3 { margin-bottom:8px; }
.service-card p { font-size:14px; color:var(--text-mid); line-height:1.65; margin-bottom:12px; }
.service-link { color:var(--primary-mid); font-weight:600; font-size:13px; }
@media(max-width:600px) { .services-grid { grid-template-columns:1fr; } }

/* STEPS */
.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.step-card { text-align:center; padding:18px 14px; }
.step-num { width:42px; height:42px; border:2px solid var(--primary); color:var(--primary); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:17px; font-weight:700; margin:0 auto 12px; }
.step-card h3 { font-size:14px; margin-bottom:6px; }
.step-card p { font-size:13px; color:var(--text-mid); }
@media(max-width:768px) { .steps-grid { grid-template-columns:1fr 1fr; } }

/* ABOUT (mit großem Foto) */
.about-grid { display:grid; grid-template-columns:0.9fr 1.1fr; gap:44px; align-items:center; }
.about-img { width:100%; border-radius:10px; box-shadow:0 6px 24px rgba(0,0,0,0.08); }
.about-text p { margin-bottom:14px; color:var(--text-mid); line-height:1.75; }
.credentials { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:20px; }
.credential { font-size:13px; font-weight:600; color:var(--primary); padding:8px 0; border-bottom:1px solid var(--border); }
@media(max-width:768px) { .about-grid { grid-template-columns:1fr; } .credentials { grid-template-columns:1fr; } }

/* PROSE */
.prose { max-width:720px; margin:0 auto; }
.prose p { margin-bottom:14px; color:var(--text-mid); line-height:1.8; }
.prose-hl { color:var(--primary); font-weight:600; }

/* CTA */
.cta-section { background:var(--primary); color:white; padding:48px 0; text-align:center; }
.cta-section h2 { color:white; margin-bottom:8px; }
.cta-section p { opacity:0.8; margin-bottom:24px; }
.cta-phone { display:inline-block; background:var(--accent); color:white; padding:15px 40px; border-radius:6px; font-size:20px; font-weight:800; }
.cta-phone:hover { background:var(--accent-hover); color:white; }
.cta-sub { margin-top:10px; font-size:12px; opacity:0.5; }

/* TESTIMONIALS */
.t-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.t-card { background:white; border-radius:10px; padding:26px; border:1px solid var(--border); }
.t-card .quote { font-size:14px; line-height:1.7; margin-bottom:14px; font-style:italic; color:var(--text); }
.t-card .author { font-weight:700; font-size:13px; color:var(--primary); }
.t-card .loc { font-size:12px; color:var(--text-light); }
@media(max-width:768px) { .t-grid { grid-template-columns:1fr; } }

/* CONTACT */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:start; }
.contact-info h3 { margin-bottom:16px; }
.c-row { font-size:14px; color:var(--text-mid); margin-bottom:10px; }
.c-row strong { color:var(--primary); }
.c-row a { color:var(--primary); font-weight:700; }
.fg { margin-bottom:14px; }
.fg label { display:block; font-size:11px; font-weight:600; color:var(--text-light); margin-bottom:4px; text-transform:uppercase; letter-spacing:0.5px; }
.fg input,.fg textarea { width:100%; padding:11px 14px; border:1px solid var(--border); border-radius:6px; font-size:15px; font-family:inherit; background:var(--bg-warm); }
.fg input:focus,.fg textarea:focus { outline:none; border-color:var(--primary-mid); background:white; }
.fg textarea { min-height:90px; resize:vertical; }
.form-btn { background:var(--primary); color:white; border:none; padding:13px 24px; border-radius:6px; font-size:14px; font-weight:700; cursor:pointer; width:100%; }
.form-btn:hover { background:var(--primary-mid); }
@media(max-width:768px) { .contact-grid { grid-template-columns:1fr; } }

/* FOOTER */
.footer { background:var(--primary); color:white; padding:24px 0; text-align:center; }
.footer a { color:rgba(255,255,255,0.65); font-size:13px; }
.footer a:hover { color:white; }
.footer-links { display:flex; justify-content:center; gap:16px; margin-bottom:8px; flex-wrap:wrap; }
.footer-adr { font-size:13px; opacity:0.5; margin-bottom:8px; }
.footer-copy { font-size:11px; opacity:0.35; }

/* FLOATING BAR - scroll reveal on mobile */
.fbar { position:fixed; bottom:0; left:0; right:0; z-index:999; background:var(--primary); box-shadow:0 -3px 16px rgba(0,0,0,0.2); transition:transform 0.3s ease; }
.fbar.hidden { transform:translateY(100%); }
.fbar-inner { max-width:520px; margin:0 auto; padding:10px 20px; display:flex; flex-direction:column; align-items:center; gap:5px; }
.fbar-top { display:flex; align-items:center; gap:10px; }
.fbar-hl { color:white; font-size:13px; font-weight:600; }
.fbar-badge { display:flex; align-items:center; gap:5px; font-size:11px; color:rgba(255,255,255,0.65); }
.fbar-dot { width:7px; height:7px; border-radius:50%; background:#76ff03; box-shadow:0 0 6px #76ff03; }
.fbar-btns { display:flex; gap:8px; width:100%; max-width:400px; }
.fbar-btn-anfrage { flex:1; display:block; background:var(--accent); color:white; text-align:center; padding:11px 16px; border-radius:6px; font-size:15px; font-weight:700; }
.fbar-btn-anfrage:hover { background:var(--accent-hover); color:white; }
.fbar-btn-anruf { flex:1; display:block; background:transparent; border:2px solid rgba(255,255,255,0.4); color:white; text-align:center; padding:9px 16px; border-radius:6px; font-size:15px; font-weight:700; }
.fbar-btn-anruf:hover { border-color:white; color:white; background:rgba(255,255,255,0.08); }
.fbar-sub { color:rgba(255,255,255,0.45); font-size:10px; }

/* BREADCRUMB */
.breadcrumb { padding:12px 0; border-bottom:1px solid var(--border); background:var(--bg-warm); font-size:13px; }
.breadcrumb a { color:var(--text-light); }
.breadcrumb span { color:var(--text); font-weight:600; }

/* CONTENT IMAGE GRID (2-column: text + image) */
.content-with-image { display:grid; grid-template-columns:1.2fr 0.8fr; gap:36px; align-items:start; margin:30px 0; }
.content-with-image img { width:100%; border-radius:10px; margin-bottom:20px; }
@media(max-width:768px) { .content-with-image { grid-template-columns:1fr; } }

/* IHR EXPERTE BLOCK */
.expert-block { background:var(--bg-warm); border:1px solid var(--border); border-radius:10px; padding:30px; display:flex; align-items:center; gap:24px; margin:40px 0; }
.expert-block img { width:100px; height:100px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.expert-block h3 { margin-bottom:6px; font-size:1.1rem; }
.expert-block p { font-size:14px; color:var(--text-mid); margin-bottom:10px; line-height:1.6; }
.expert-block .btn-gold { padding:10px 24px; font-size:13px; }
@media(max-width:600px) { .expert-block { flex-direction:column; text-align:center; } }

/* BLOG CARDS */
.blog-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.blog-card { background:white; border-radius:10px; padding:28px; border:1px solid var(--border); transition:all 0.3s; }
.blog-card:hover { border-color:var(--primary-mid); box-shadow:0 4px 20px rgba(0,0,0,0.05); }
.blog-card h3 { font-size:1rem; margin-bottom:8px; }
.blog-card p { font-size:14px; color:var(--text-mid); line-height:1.65; margin-bottom:12px; }
.blog-badge { display:inline-block; background:var(--bg-section); color:var(--text-light); font-size:11px; font-weight:600; padding:4px 10px; border-radius:4px; text-transform:uppercase; letter-spacing:0.5px; }
@media(max-width:600px) { .blog-grid { grid-template-columns:1fr; } }

/* ARTICLE CARDS */
.article-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.article-card { background:white; border-radius:10px; padding:28px; border:1px solid var(--border); transition:all 0.3s; }
.article-card:hover { border-color:var(--primary-mid); box-shadow:0 4px 20px rgba(0,0,0,0.05); }
.article-card h3 { font-size:1rem; margin-bottom:8px; }
.article-card p { font-size:14px; color:var(--text-mid); line-height:1.65; margin-bottom:12px; }
.read-link { color:var(--primary-mid); font-weight:600; font-size:13px; }
@media(max-width:600px) { .article-grid { grid-template-columns:1fr; } }

/* PAGE HERO (for sub-pages without full hero) */
.page-hero { background:linear-gradient(135deg, var(--primary) 0%, #1e4a6e 100%); color:white; padding:40px 0 32px; }
.page-hero h1 { color:white; font-size:1.7rem; margin-bottom:8px; }
.page-hero p { color:rgba(255,255,255,0.75); font-size:15px; }
.page-hero .breadcrumb { background:transparent; border:none; padding:0 0 12px; }
.page-hero .breadcrumb a { color:rgba(255,255,255,0.6); }
.page-hero .breadcrumb span { color:white; }

/* Heading + content spacing */
h2 + p, h3 + p { margin-top:8px; }
h2:first-child, h3:first-child { margin-top:0; }
.section-header h2 { margin-top:0; }
.hero h1 { margin-top:0; }
.page-hero h1 { margin-top:0; }
.cta-section h2 { margin-top:0; }
p + p { margin-top:12px; }
