/* ============================================================
   main.css – minta.ch  |  Mobile-first, vollständig überarbeitet
   ============================================================ */

/* ── CSS Custom Properties ──────────────────────────────── */
:root {
    --orange:        #e67e22;
    --orange-dark:   #d35400;
    --orange-light:  #ff8c42;
    --orange-glow:   rgba(230,126,34,0.35);
    --dark:          #111;
    --dark-2:        #1a1a1e;
    --dark-3:        #2c2c2c;
    --gray:          #222;
    --light:         #f8f9fa;
    --radius-sm:     10px;
    --radius-md:     16px;
    --radius-lg:     26px;
    --radius-pill:   50px;
    --shadow-orange: 0 8px 25px rgba(255,107,53,0.35);
    --transition:    0.35s ease;
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; line-height: 1.65; color: var(--gray); background: #fff; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }

/* ── Layout ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 1.2rem; }
@media (min-width: 600px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1280px) { .container { padding: 0 2rem; } }

/* ── Typography ─────────────────────────────────────────── */
h2 { font-size: clamp(1.8rem, 5vw, 4.2rem); font-weight: 700; line-height: 1.15; text-align: center; color: white; margin-bottom: 1.8rem; }

/* ============================================================
   HEADER & NAV
   ============================================================ */
.header { position: fixed; top: 0; left: 0; right: 0; background: white; box-shadow: 0 2px 14px rgba(0,0,0,0.08); transition: transform 0.45s ease; z-index: 1000; }
.header-hidden { transform: translateY(-100%); }
.header-container { display: flex; justify-content: space-between; align-items: center; height: 70px; }
@media (min-width: 860px) { .header-container { height: 86px; } }

.logo img { max-height: 42px; }
@media (min-width: 860px) { .logo img { max-height: 52px; } }

/* Mobile Menu Button */
.mobile-menu-btn { display: flex; flex-direction: column; gap: 6px; width: 38px; height: 30px; background: none; border: none; cursor: pointer; z-index: 2001; }
.mobile-menu-btn span { height: 3px; width: 100%; background: #ff944d; border-radius: 2px; transition: all 0.35s ease; }
.mobile-menu-btn:hover span { background: var(--orange); }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(7px,7px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(7px,-7px); }

/* Nav – fullscreen auf mobile */
#main-nav {
    position: fixed; inset: 0;
    background: rgba(15,15,20,0.98);
    backdrop-filter: blur(12px);
    z-index: 2000;
    transform: translateX(100%);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
#main-nav.active { transform: translateX(0); }
.nav-list { display: flex; flex-direction: column; gap: 2.2rem; font-size: 1.8rem; text-align: center; list-style: none; }
.nav-list a { color: #fff; text-decoration: none; font-weight: 500; }
.nav-list a:hover, .nav-list a.nav-active { color: var(--orange); }

/* Desktop Nav */
@media (min-width: 860px) {
    .mobile-menu-btn { display: none; }
    #main-nav { position: static; background: none; backdrop-filter: none; transform: none; flex-direction: row; inset: auto; }
    .nav-list { flex-direction: row; gap: 2.4rem; font-size: 1rem; }
    .nav-list a { color: #222; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-bg-fixed {
    position: relative;
    min-height: 100svh;
    display: flex; align-items: center; justify-content: center; text-align: center; color: white;
    /* Mobile: scroll statt fixed (Performance + iOS) */
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* Parallax nur Desktop */
@media (min-width: 860px) { .hero-bg-fixed { background-attachment: fixed; } }

/* Hintergrundbilder */
.hero-bg-fixed:not([class*="hero-bg-minta"]) { background-image: url('../images/minta.webp'); }
.hero-bg-minta2 { background-image: url('../images/minta2.webp'); }
.hero-bg-minta3 { background-image: url('../images/minta3.webp'); }
.hero-bg-minta4 { background-image: url('../images/minta4.webp'); }
.hero-bg-minta5 { background-image: url('../images/minta5.webp'); }
.hero-bg-minta6 { background-image: url('../images/minta6.webp'); }
.hero-bg-minta7 { background-image: url('../images/minta7.webp'); }
.hero-bg-minta10 { background-image: url('../images/minta10.webp'); }

.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.48); z-index: 1; }
.hero-content  { position: relative; z-index: 2; width: 100%; max-width: 900px; padding: 5rem 1.2rem 3.5rem; }

.text-bubble { opacity: 0; transform: translateY(35px); animation: fadeUp 1.3s ease-out forwards 0.4s; }
.text-bubble:hover { transform: translateY(-4px) scale(1.01); transition: transform 0.45s ease; }

.hero-title {
    font-size: clamp(1.9rem, 7vw, 5rem);
    font-weight: 800; line-height: 1.12; margin-bottom: 1.2rem;
    background: linear-gradient(90deg, #ff8c42, #ff6b35, #ffd166, #ff8c42);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientFlow 10s ease infinite;
    letter-spacing: -0.01em;
}
.hero-subtitle { font-size: clamp(0.95rem, 3.5vw, 1.45rem); line-height: 1.5; color: #f0f0f0; max-width: 820px; margin: 0 auto; opacity: 0; }
.hero-subtitle-visible { opacity: 1; }

.typing-effect {
    display: inline-block; overflow: hidden; white-space: nowrap;
    border-right: 2.5px solid #ff8c42; color: #ff8c42; max-width: 100%;
    animation: typing 4.8s steps(70,end) forwards 0.6s, blink-caret 0.85s step-end infinite 5.4s;
}

.scroll-hint {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 3; display: none; flex-direction: column; align-items: center;
    gap: 0.8rem; color: rgba(255,255,255,0.75); font-size: 1rem;
    pointer-events: none; animation: fadePulse 4s infinite;
}
@media (min-width: 860px) { .scroll-hint { display: flex; } }
.scroll-arrow { font-size: 2.2rem; animation: bounce 2.5s infinite; }

/* Subpage Hero */
.text-bubble-card {
    background: rgba(0,0,0,0.68); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    max-width: 820px; margin: 0 auto; padding: 1.8rem 1.2rem; border-radius: var(--radius-lg); text-align: center;
}
@media (min-width: 600px) { .text-bubble-card { padding: 2.5rem 2rem; } }
.subpage-hero-title { font-size: clamp(1.7rem, 6vw, 3.8rem); font-weight: 700; color: white; margin: 0; text-shadow: 0 4px 16px rgba(0,0,0,0.7); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5rem 0; }
@media (min-width: 860px) { .section { padding: 9rem 0; } }

.section-bg-image {
    background: url('../images/minta.webp') center center / cover no-repeat;
    background-attachment: scroll; color: white; position: relative;
}
@media (min-width: 860px) { .section-bg-image { background-attachment: fixed; } }
.section-bg-image::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.52); }
.section-bg-orange-gradient { background: linear-gradient(135deg,#ff8c42 0%,#f05d23 100%); color: white; }
.section-bg-dark-gradient   { background: linear-gradient(135deg,#1a1a1a 0%,#2c2c2c 100%); color: #eee; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-layout { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 860px) { .about-layout { flex-direction: row; align-items: center; gap: 4rem; } }
.about-image { display: none; }
@media (min-width: 860px) {
    .about-image { display: flex; flex: 0 0 280px; justify-content: center; }
    .about-image img { width: 280px; height: 280px; object-fit: cover; border-radius: 50%; box-shadow: 0 18px 45px rgba(0,0,0,0.35); border: 4px solid rgba(255,255,255,0.25); }
}
.about-bubble { flex: 1; background: rgba(0,0,0,0.35); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 2rem 1.5rem; border-radius: var(--radius-lg); box-shadow: 0 15px 45px rgba(0,0,0,0.35); text-align: center; }
@media (min-width: 860px) { .about-bubble { padding: 3rem; text-align: left; } }
.about-bubble h2 { margin-top: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-underline { width: 80px; height: 4px; background: var(--orange); margin: 0 auto 3rem; border-radius: 2px; }
@media (min-width: 860px) { .services-underline { width: 120px; margin-bottom: 4rem; } }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; align-items: stretch; }
@media (min-width: 600px) { .services-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3,1fr); gap: 2.5rem; } }

.service-item {
    display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md);
    padding: 1.6rem 1.2rem; transition: all var(--transition); height: 100%; min-width: 0;
}
@media (min-width: 860px) {
    .service-item { flex-direction: row; align-items: flex-start; text-align: left; gap: 1.8rem; padding: 2rem; }
    .service-item:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); border-color: var(--orange); }
}
.service-icon { font-size: 2.8rem; min-width: 68px; height: 68px; display: flex; align-items: center; justify-content: center; color: var(--orange); background: rgba(230,126,34,0.14); border-radius: var(--radius-md); flex-shrink: 0; }
@media (min-width: 860px) { .service-icon { font-size: 3.6rem; min-width: 80px; height: 80px; } }
.service-content h3 { font-size: clamp(1.1rem,3vw,1.65rem); margin-bottom: 0.7rem; color: white; }
.service-content p  { color: #ddd; font-size: 0.98rem; line-height: 1.6; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.works-title { font-size: clamp(1.9rem,7vw,6.2rem); font-weight: 700; text-align: center; line-height: 1.1; margin-bottom: 2.5rem; text-shadow: 0 6px 25px rgba(0,0,0,0.8); }
@media (min-width: 860px) { .works-title { margin-bottom: 5rem; } }
.works-overview { padding: 5rem 0 4rem; background: #000; color: white; }
@media (min-width: 860px) { .works-overview { padding: 10rem 0 8rem; } }

.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 480px) { .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3,1fr); gap: 2.5rem; } }

.portfolio-card { position: relative; overflow: hidden; border-radius: var(--radius-md); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); cursor: pointer; transition: all 0.45s ease; }
.portfolio-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-color: var(--orange); }
.card-image { height: 190px; overflow: hidden; }
@media (min-width: 860px) { .card-image { height: 260px; } }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-card:hover .card-image img { transform: scale(1.1); }
.card-info { padding: 1.2rem 1.4rem; text-align: center; }
@media (min-width: 860px) { .card-info { padding: 1.8rem; } }
.card-info h3 { font-size: clamp(1rem,3vw,1.55rem); margin-bottom: 0.4rem; color: white; }
.card-info p  { color: #ccc; font-size: 0.9rem; }

/* ============================================================
   MODAL
   ============================================================ */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.88); backdrop-filter: blur(8px); z-index: 9000; align-items: center; justify-content: center; padding: 1rem; }
.modal.show { display: flex; animation: modalPop 0.6s cubic-bezier(0.34,1.56,0.64,1); }
.modal-content {
    background: rgba(20,20,25,0.96); backdrop-filter: blur(14px); border-radius: var(--radius-lg);
    width: 100%; max-width: 520px; padding: 1.8rem 1.4rem 2.2rem;
    position: relative; border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 25px 70px rgba(0,0,0,0.65); max-height: 90svh; overflow-y: auto;
}
@media (min-width: 600px) { .modal-content { padding: 2.4rem 2.2rem 2.8rem; } }
.modal-title-orange { color: var(--orange); margin-bottom: 1.8rem; }
.modal-content h2 { color: var(--orange); font-size: clamp(1.5rem,5vw,2.1rem); margin: 0 0 1.8rem; text-align: center; font-weight: 700; }
.close { position: absolute; top: 1rem; right: 1.3rem; font-size: 2.4rem; color: #888; cursor: pointer; transition: all 0.35s; line-height: 1; }
.close:hover { color: var(--orange); transform: rotate(90deg); }
.contact-form-modal { display: flex; flex-direction: column; gap: 1.3rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { color: #ddd; font-size: 0.9rem; font-weight: 500; }
.form-group input, .form-group textarea {
    width: 100%; padding: 0.85rem 1rem; border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm); background: rgba(255,255,255,0.06);
    color: white; font-size: 1rem; font-family: inherit; transition: all 0.25s ease;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); background: rgba(255,255,255,0.09); box-shadow: 0 0 0 3px rgba(230,126,34,0.18); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn.btn-primary.full-width { width: 100%; padding: 1.1rem; font-size: 1.1rem; margin-top: 0.5rem; border-radius: var(--radius-md); }
#formStatus { margin-top: 1.2rem; text-align: center; font-weight: 600; min-height: 1.4em; }
.form-status-success { color: #4caf50; }
.form-status-error   { color: #f44336; }

/* ============================================================
   STARTUPS TEASER
   ============================================================ */
.startups-teaser {
    position: relative; min-height: 65vh;
    background: url('../images/startup-teaser-bg.webp') center center / cover no-repeat;
    background-attachment: scroll; display: flex; align-items: center; color: white; text-align: center;
}
@media (min-width: 860px) { .startups-teaser { background-attachment: fixed; min-height: 80vh; } }
.startups-teaser::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,26,26,0.78), rgba(26,26,26,0.62)); z-index: 1; }
.startups-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 2.5rem 1.2rem; }
.startups-content h2 { font-size: clamp(1.7rem,5vw,3.2rem); margin-bottom: 1.2rem; color: #ff8c42; text-shadow: 0 4px 15px rgba(0,0,0,0.6); }
.startups-content .highlight { font-size: clamp(0.97rem,2.8vw,1.6rem); line-height: 1.65; margin: 1.5rem 0; font-weight: 500; }
.startups-content .highlight strong { color: #ffd166; font-weight: 800; }
.startups-content .urgency { font-size: clamp(0.97rem,2.5vw,1.4rem); margin: 1.5rem 0; color: #ff6b35; font-weight: 700; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary { display: inline-block; background: linear-gradient(135deg,#ff6b35,#e65100); color: white; padding: 1rem 2.2rem; font-size: 1.1rem; font-weight: 700; border-radius: var(--radius-pill); text-decoration: none; margin-top: 1.2rem; box-shadow: 0 8px 25px rgba(255,107,53,0.4); transition: all 0.4s ease; }
@media (min-width: 600px) { .btn-primary { padding: 1.2rem 3rem; font-size: 1.3rem; } }
.btn-primary:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 16px 36px rgba(255,107,53,0.6); }

.footer-contact-btn { background: linear-gradient(135deg,#ff6b35,#e65100); color: white; border: none; padding: 0.95rem 2rem; font-size: 1rem; font-weight: 600; border-radius: var(--radius-pill); cursor: pointer; transition: all var(--transition); box-shadow: var(--shadow-orange); }
@media (min-width: 600px) { .footer-contact-btn { padding: 1rem 2.2rem; font-size: 1.1rem; } }
.footer-contact-btn:hover { transform: translateY(-4px); box-shadow: 0 14px 35px rgba(255,107,53,0.55); }
.btn-lg { font-size: 1.15rem !important; padding: 1.1rem 2.8rem !important; }

.cta-button { display: inline-block; background: linear-gradient(135deg,#ff6b35,#e65100); color: white; padding: 0.9rem 2rem; font-size: 1rem; font-weight: 700; border-radius: var(--radius-pill); text-decoration: none; box-shadow: var(--shadow-orange); transition: all var(--transition); margin: 1rem 0; }
@media (min-width: 600px) { .cta-button { padding: 1rem 2.5rem; font-size: 1.1rem; } }
.cta-button:hover { transform: translateY(-4px); box-shadow: 0 14px 35px rgba(255,107,53,0.55); }
.cta-button-light { background: linear-gradient(135deg, #ffcc80, #ff8c42); color: #1a0a00; box-shadow: 0 8px 25px rgba(255,200,100,0.35); }
.cta-button-light:hover { box-shadow: 0 14px 35px rgba(255,200,100,0.55); }

.link-orange { color: var(--orange); font-weight: 600; text-decoration: none; }
.link-orange:hover { color: var(--orange-dark); text-decoration: underline; }

/* ============================================================
   BANTIGERWEB
   ============================================================ */
.bantiger-intro { max-width: 900px; margin: 0 auto 2rem; text-align: center; font-size: clamp(1rem,3vw,1.4rem); line-height: 1.6; color: #ddd; }
.bantiger-teaser {
    position: relative; width: 100vw; margin-left: calc(-50vw + 50%);
    min-height: clamp(260px,55vw,420px);
    background: url('https://bantigerweb.ch/img_parallax1.jpg') center center / cover no-repeat;
    background-attachment: scroll; overflow: hidden; box-shadow: inset 0 0 100px rgba(0,0,0,0.6);
}
@media (min-width: 1024px) { .bantiger-teaser { background-attachment: fixed; min-height: 480px; } }
.bantiger-teaser > div:first-child { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(26,26,26,0.8),rgba(26,26,26,0.55)); z-index: 1; }
.bantiger-teaser > div:last-child { position: relative; z-index: 2; padding: clamp(2.5rem,7vw,5rem) 1.4rem; color: white; text-align: center; max-width: 900px; margin: 0 auto; }
.bantiger-teaser > div:last-child h3 { font-size: clamp(1.3rem,4vw,2.4rem); margin-bottom: 1rem; color: #ff8c42; }
.bantiger-teaser > div:last-child p  { font-size: clamp(0.95rem,2.5vw,1.2rem); margin: 1rem 0; color: #eee; }
.bantiger-cta { text-align: center; margin: 3rem 0 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-dark { background: #0f0f14; color: #aaa; padding: 3.5rem 0 2rem; }
@media (min-width: 860px) { .footer-dark { padding: 5rem 0 2.5rem; } }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem 2rem; } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 3.5rem 2.5rem; } }

.footer-column { text-align: center; }
@media (min-width: 960px) { .footer-column { text-align: left; } }
.center-column { text-align: center; }

.footer-column h4 { color: white; font-size: 1.2rem; margin-bottom: 1.1rem; font-weight: 600; }
@media (min-width: 860px) { .footer-column h4 { font-size: 1.35rem; margin-bottom: 1.4rem; } }
.address-column p { margin: 0.4rem 0; font-size: 0.94rem; line-height: 1.55; }
.address-column a { color: #ccc; text-decoration: none; }
.address-column a:hover { color: var(--orange); }

.footer-map-wrapper { display: none; }
@media (min-width: 860px) { .footer-map-wrapper { display: block; margin-bottom: 1.8rem; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.4); } }

.links-column ul { list-style: none; padding: 0; }
.footer-links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 0.5rem; }
.footer-links-list li { margin: 0.6rem 0; }
.footer-links-list a { color: #bbb; text-decoration: none; font-size: 0.85rem; transition: all 0.3s ease; display: flex; align-items: center; gap: 0.5rem; }
.footer-links-list a:hover { color: var(--orange); transform: translateX(5px); }
.footer-links-list a i { font-size: 1.2rem; width: 24px; transition: transform 0.4s ease; }
.footer-links-list a:hover i { transform: scale(1.25) rotate(10deg); }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 0.9rem; color: #777; }

/* ============================================================
   SUBPAGES – Impressum, Datenschutz, AGB
   ============================================================ */
.subpage-content-section { background: linear-gradient(180deg,#0f0f14 0%,#1a1a1e 100%); padding: 2.5rem 0 5rem; }
.subpage-back-row { background: #0f0f14; padding: 1.6rem 0; text-align: center; }
.back-btn { display: inline-flex; align-items: center; gap: 0.6rem; background: linear-gradient(135deg,#ff6b35,#e65100); color: white; padding: 0.8rem 1.6rem; font-weight: 600; border-radius: var(--radius-pill); text-decoration: none; transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(255,107,53,0.35); font-size: 0.93rem; }
@media (min-width: 600px) { .back-btn { padding: 0.9rem 1.8rem; font-size: 1rem; } }
.back-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,107,53,0.55); }

.legal-content { font-size: 0.97rem; line-height: 1.78; max-width: 860px; margin: 0 auto; padding: 0 1.2rem; color: #d0d0d0; }
@media (min-width: 600px)  { .legal-content { font-size: 1.05rem; padding: 0 1.5rem; } }
.legal-content h2 { color: var(--orange); margin: 2.2rem 0 1rem; font-size: clamp(1.4rem,4vw,2rem); text-align: left; }
.legal-content h3 { color: #ff8c42; margin: 1.8rem 0 0.8rem; font-size: clamp(1.15rem,3vw,1.45rem); text-align: left; }
.legal-content p  { margin-bottom: 1.1rem; }
.legal-content ul, .legal-content ol { margin: 0.8rem 0 1.4rem 1.3rem; }
.legal-content li { margin-bottom: 0.6rem; }
.legal-stand       { font-style: italic; color: #888; margin-bottom: 2.5rem; }
.legal-footer-note { margin: 4rem 0 2rem; font-size: 0.93rem; color: #888; text-align: center; }

/* ============================================================
   WEBDESIGN BERN – Seitenspezifisch
   ============================================================ */

/* Scroll-Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* Section-Wrapper mit abwechselnden Hintergründen */
.wb-section-light  { padding: 4rem 0; background: linear-gradient(135deg, #fff 0%, #fff8f4 45%, #fff3ea 100%); position: relative; overflow: hidden; }
.wb-section-light::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(230,126,34,0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.wb-section-light::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(230,126,34,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.wb-section-tinted { padding: 4rem 0; background: #f7f4f1; }
.wb-section-dark   { padding: 4rem 0; background: linear-gradient(135deg,#1a1a1a,#2c2c2c); color: #eee; }
.wb-section-orange { padding: 4rem 0; background: linear-gradient(135deg,#2a1800 0%,#3d2200 40%,#4a2a00 100%); color: #f0d0a0; position: relative; overflow: hidden; }
.wb-section-orange::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e67e22' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
.wb-section-orange .container { position: relative; z-index: 1; }
@media (min-width: 860px) {
    .wb-section-light, .wb-section-tinted, .wb-section-dark, .wb-section-orange { padding: 6rem 0; }
}

/* Section-Divider */
.wb-divider { width: 50px; height: 4px; background: var(--orange); border-radius: 2px; margin: 0 auto 2.2rem; }
.wb-section-dark   .wb-divider { background: rgba(255,255,255,0.3); }
.wb-section-orange .wb-divider { background: var(--orange-light); }

/* Prose */
.wb-prose { max-width: 760px; margin: 0 auto; font-size: 1rem; line-height: 1.8; }
@media (min-width: 600px) { .wb-prose { font-size: 1.05rem; } }
@media (min-width: 860px) { .wb-prose { font-size: 1.1rem; max-width: 900px; } }
@media (min-width: 1100px) { .wb-prose { max-width: 1060px; } }

.wb-prose h1 { font-size: clamp(1.6rem,5vw,3.2rem); font-weight: 800; color: var(--dark); margin-bottom: 1.3rem; line-height: 1.2; }
.wb-section-light .wb-prose h1 { background: linear-gradient(135deg, var(--dark) 0%, var(--orange-dark) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.wb-prose h2 { font-size: clamp(1.25rem,4vw,2.1rem); font-weight: 700; color: var(--dark); margin: 2.4rem 0 1rem; line-height: 1.25; text-align: left; }
.wb-section-dark   .wb-prose h1,
.wb-section-dark   .wb-prose h2 { color: #fff; }
.wb-section-orange .wb-prose h1,
.wb-section-orange .wb-prose h2 { color: #ffb366; }
.wb-section-orange .wb-prose p  { color: #f0d0a0; }
.wb-section-orange .wb-prose strong { color: #ffcc80; }
.wb-section-tinted .wb-prose strong { color: var(--orange-dark); }
.wb-section-dark   .wb-prose strong { color: var(--orange-light); }

.wb-prose p  { margin-bottom: 1.3rem; }
.wb-prose ul, .wb-prose ol { margin: 1rem 0 1.4rem 1.3rem; }
.wb-prose li { margin-bottom: 0.7rem; }
.wb-prose strong { color: var(--orange-dark); }

/* Häkchen-Liste */
.wb-checklist { list-style: none; margin-left: 0 !important; }
.wb-checklist li { padding-left: 2rem; position: relative; margin-bottom: 0.9rem; }
.wb-checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 800; font-size: 1.1em; }
.wb-section-orange .wb-checklist li::before { color: var(--orange-light); }
.wb-section-orange .wb-checklist li { color: #f0d0a0; }

/* Prozess-Schritte */
.wb-steps { list-style: none; margin: 1.2rem 0 1.6rem; display: grid; gap: 0.9rem; }
.wb-steps li { display: flex; gap: 1rem; align-items: flex-start; background: rgba(255,255,255,0.07); border-left: 3px solid var(--orange); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 1rem 1.2rem; color: #f0d0a0; }
.wb-section-dark .wb-steps li { background: rgba(255,255,255,0.05); border-left-color: var(--orange-light); }
.step-num { font-size: 1.5rem; font-weight: 800; color: var(--orange-light); line-height: 1.2; flex-shrink: 0; min-width: 1.8rem; }
.wb-section-dark .step-num { color: var(--orange-light); }
.wb-steps li strong { color: #ffcc80; }

/* Preis-Cards – Grid statt Tabelle */
.wb-price-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin: 1.6rem 0; }
@media (min-width: 480px) { .wb-price-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; } }

.wb-price-card {
    background: white; border: 2px solid #eee; border-radius: var(--radius-md);
    padding: 1.3rem 1.4rem; transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.wb-price-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(230,126,34,0.18); }
.wb-price-card.featured { border-color: var(--orange); background: linear-gradient(160deg,#fff8f4,#fff); }

.wb-price-badge { display: inline-block; background: var(--orange); color: white; font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.7rem; border-radius: var(--radius-pill); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.wb-price-name  { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.35rem; }
.wb-price-desc  { font-size: 0.87rem; color: #666; line-height: 1.5; margin-bottom: 0.8rem; }
.wb-price-price { font-size: 1.25rem; font-weight: 800; color: var(--orange); }

/* FAQ Details */
.wb-prose details { background: #f4f4f4; border: 1px solid #e4e4e4; border-radius: var(--radius-sm); padding: 1rem 1.3rem; margin-bottom: 0.85rem; transition: background var(--transition); }
.wb-section-dark .wb-prose details { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.wb-prose summary { font-weight: 600; cursor: pointer; font-size: 0.97rem; color: var(--dark); user-select: none; }
.wb-section-dark .wb-prose summary { color: #eee; }
.wb-prose details[open] summary { color: var(--orange); margin-bottom: 0.7rem; }
.wb-prose details p { margin: 0.7rem 0 0; font-size: 0.95rem; }

/* CTA-Section */
.wb-cta-section { background: linear-gradient(135deg,#1a1a1a,#2c2c2c); text-align: center; padding: 4.5rem 0; }
.wb-cta-section h2 { color: var(--orange); font-size: clamp(1.4rem,4vw,2.8rem); margin-bottom: 1rem; }
.wb-cta-section p  { color: #ccc; font-size: clamp(0.97rem,2.5vw,1.15rem); margin-bottom: 2rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-section { padding: 4rem 0 6rem; }
@media (min-width: 860px) { .contact-page-section { padding: 6rem 0 9rem; } }

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 860px) {
    .contact-page-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}
@media (min-width: 1100px) {
    .contact-page-grid {
        grid-template-columns: 5fr 6fr;
    }
}

/* Info-Spalte */
.contact-info-title {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    text-align: left;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--orange-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contact-info-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 2.2rem;
}
.contact-info-lead strong { color: var(--orange-dark); }

.contact-channels {
    list-style: none;
    padding: 0;
    margin: 0 0 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-channels li {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}
.contact-icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    background: linear-gradient(135deg, rgba(230,126,34,0.12), rgba(230,126,34,0.06));
    border: 1.5px solid rgba(230,126,34,0.25);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    transition: all var(--transition);
}
.contact-channels li:hover .contact-icon {
    background: var(--orange);
    color: white;
    transform: scale(1.08);
}
.contact-channel-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #999;
    margin-bottom: 0.2rem;
}
.contact-channels a, .contact-channels span:not(.contact-channel-label) {
    font-size: 1rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}
.contact-channels a:hover { color: var(--orange); }

.contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}
.contact-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fff8f4, #fff3ea);
    border: 1.5px solid rgba(230,126,34,0.25);
    color: var(--orange-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
}

/* Formular-Spalte */
.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.6rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    border: 1.5px solid rgba(230,126,34,0.12);
}
@media (min-width: 600px) { .contact-form-wrap { padding: 2.6rem 2.4rem; } }

.contact-form-title {
    font-size: clamp(1.25rem, 3vw, 1.7rem);
    font-weight: 700;
    color: var(--dark);
    text-align: left;
    margin-bottom: 1.8rem;
}

.contact-page-form { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-page-form select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    background: #fafafa;
    color: #333;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.25s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e67e22' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.contact-page-form select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(230,126,34,0.15);
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    background: #fafafa;
    color: #333;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.25s ease;
}
.contact-page-form input:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(230,126,34,0.15);
}
.contact-page-form textarea { resize: vertical; min-height: 120px; }
.contact-page-form .form-group label { color: #444; font-size: 0.92rem; font-weight: 600; margin-bottom: 0.4rem; display: block; }
.req { color: var(--orange); }

.contact-submit-btn { width: 100%; justify-content: center; text-align: center; margin-top: 0.4rem; font-size: 1.05rem; }

.cp-form-status { margin-top: 1rem; font-weight: 600; font-size: 0.97rem; text-align: center; min-height: 1.4em; border-radius: var(--radius-sm); padding: 0; transition: all 0.3s ease; }
.cp-form-status.success { color: #2e7d32; background: #f1f8f1; padding: 0.8rem 1rem; }
.cp-form-status.error   { color: #c62828; background: #fff1f1; padding: 0.8rem 1rem; }

/* ============================================================
   WEBDESIGNER-BERN PAGE
   ============================================================ */

/* Bild-Text Split Layout */
.wdb-split {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 860px) {
    .wdb-split { flex-direction: row; gap: 4rem; align-items: center; }
    .wdb-split-reverse { flex-direction: row-reverse; }
}
.wdb-split-text { flex: 1; }
.wdb-split-text h1 { font-size: clamp(1.6rem,5vw,3.2rem); font-weight: 800; color: var(--dark); margin-bottom: 1.2rem; line-height: 1.2; }
.wb-section-dark .wdb-split-text h1,
.wb-section-dark .wdb-split-text h2 { color: #fff; }
.wdb-split-text p { margin-bottom: 1.2rem; font-size: 1.05rem; line-height: 1.8; }
.wb-section-dark .wdb-split-text p { color: #ccc; }

.wdb-split-image {
    flex: 0 0 42%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0,0,0,0.22);
    aspect-ratio: 4/3;
}
.wdb-split-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.wdb-split-image:hover img { transform: scale(1.04); }

/* Parallax Strip */
.wdb-parallax-strip {
    position: relative;
    min-height: 260px;
    display: flex; align-items: center; justify-content: center;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
}
@media (min-width: 860px) {
    .wdb-parallax-strip { min-height: 340px; background-attachment: fixed; }
}
.wdb-parallax-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.62);
    display: flex; align-items: center; justify-content: center;
    padding: 2rem 1.5rem;
    text-align: center;
}
.wdb-parallax-quote {
    font-size: clamp(1.15rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #ff8c42;
    max-width: 820px;
    line-height: 1.4;
    font-style: italic;
    text-shadow: 0 3px 14px rgba(0,0,0,0.6);
    margin: 0;
}

/* Service Cards mit Bild-Header */
.wdb-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
    margin-top: 2rem;
}
@media (min-width: 600px)  { .wdb-services-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; } }
@media (min-width: 1024px) { .wdb-services-grid { grid-template-columns: repeat(4, 1fr); gap: 1.8rem; } }

.wdb-service-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border: 1.5px solid rgba(230,126,34,0.12);
    transition: all var(--transition);
}
.wdb-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 42px rgba(230,126,34,0.18);
    border-color: var(--orange);
}
.wdb-service-img {
    position: relative;
    height: 160px;
    overflow: hidden;
}
.wdb-service-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.wdb-service-card:hover .wdb-service-img img { transform: scale(1.08); }
.wdb-service-icon {
    position: absolute;
    bottom: -18px; left: 50%;
    transform: translateX(-50%);
    width: 46px; height: 46px;
    background: var(--orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.2rem;
    box-shadow: 0 4px 14px rgba(230,126,34,0.45);
    z-index: 2;
}
.wdb-service-body {
    padding: 1.8rem 1.3rem 1.4rem;
    text-align: center;
}
.wdb-service-body h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.wdb-service-body p {
    font-size: 0.91rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Gallery Strip */
.wdb-gallery-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 860px) { .wdb-gallery-strip { grid-template-columns: repeat(4, 1fr); } }

.wdb-gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.wdb-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.wdb-gallery-item:hover img { transform: scale(1.08); }
.wdb-gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.72));
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 1.8rem 1rem 0.7rem;
    opacity: 0;
    transition: opacity 0.35s ease;
    text-align: center;
}
.wdb-gallery-item:hover .wdb-gallery-caption { opacity: 1; }

/* ============================================================
   STARTUP PAGE
   ============================================================ */

/* Benefits Grid (dunkle Section) */
.startup-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
    max-width: 1060px;
    margin: 0 auto;
}
@media (min-width: 600px)  { .startup-benefits-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; } }
@media (min-width: 1024px) { .startup-benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.startup-benefit-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(230,126,34,0.22);
    border-radius: var(--radius-md);
    padding: 2rem 1.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    transition: all var(--transition);
}
.startup-benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 12px 36px rgba(230,126,34,0.18);
}
.startup-benefit-card i {
    font-size: 2.6rem;
    color: var(--orange);
}
.startup-benefit-card h3 {
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    color: #ffd166;
    font-weight: 700;
    margin: 0;
}
.startup-benefit-card p {
    font-size: 0.97rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Grid (getönte Section) */
.startup-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 1060px;
    margin: 0 auto;
}
@media (min-width: 600px)  { .startup-faq-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; } }
@media (min-width: 1024px) { .startup-faq-grid { grid-template-columns: repeat(3, 1fr); gap: 1.8rem; } }

.startup-faq-card {
    background: #fff;
    border: 1.5px solid rgba(230,126,34,0.18);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all var(--transition);
}
.startup-faq-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
    box-shadow: 0 12px 32px rgba(230,126,34,0.14);
}
.startup-faq-card i {
    font-size: 2.2rem;
    color: var(--orange);
}
.startup-faq-card h3 {
    font-size: clamp(1rem, 2.8vw, 1.15rem);
    color: var(--dark);
    font-weight: 700;
    margin: 0;
}
.startup-faq-card p {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* Step icons für Startup (Icon statt Zahl) */
.wb-section-orange .step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ffcc80;
    min-width: 2rem;
}

/* Final CTA Urgency Box */
.startup-urgency-box {
    background: rgba(230,126,34,0.08);
    border: 2px dashed var(--orange);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 1;
}
.startup-urgency-box h2 {
    color: var(--orange);
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    margin-bottom: 1rem;
}
.startup-urgency-box p {
    color: #ccc;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    margin-bottom: 2rem;
    line-height: 1.65;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes gradientFlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes fadePulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
@keyframes modalPop { from { opacity: 0; transform: scale(0.85) translateY(40px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes typing { from { width: 0; opacity: 1; } to { width: 100%; opacity: 1; } }
@keyframes blink-caret { from,to { border-color: transparent; } 50% { border-color: #ff8c42; } }
/* ============================================================
   BLOG – Übersicht & Artikel
   ============================================================ */

/* ── Blog Hero  */
.blog-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.blog-hero .hero-content {
    padding-top: 90px;
}

/* ── Blog-Übersicht Section ── */
.blog-overview-section {
    background: var(--light);
    padding: 5rem 0;
}

.blog-overview-intro {
    text-align: center;
    margin-bottom: 3.5rem;
}
.blog-overview-intro .wb-divider {
    margin: 0 auto 1.2rem;
}
.blog-overview-intro h2 {
    color: var(--dark);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
}
.blog-overview-intro p {
    color: #555;
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ── Blog Card Grid ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.2rem;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.blog-card-image-wrap {
    height: 210px;
    overflow: hidden;
    position: relative;
    display: block;
}
.blog-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.blog-card:hover .blog-card-image-wrap img {
    transform: scale(1.05);
}

.blog-card-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--orange);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: .3rem .8rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.blog-card-label--placeholder {
    /* ghost card variant */
    opacity: 0;
}

.blog-card-body {
    padding: 1.6rem 1.8rem 2rem;
}

.blog-card-meta {
    font-size: .82rem;
    color: #999;
    margin-bottom: .5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .8rem;
    align-items: center;
}
.blog-card-meta i {
    color: var(--orange);
    margin-right: .3rem;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .8rem;
    line-height: 1.4;
    text-align: left;
}
.blog-card-title a {
    color: inherit;
    text-decoration: none;
}
.blog-card-title a:hover {
    color: var(--orange);
}

.blog-card-excerpt {
    color: #555;
    font-size: .95rem;
    line-height: 1.65;
    margin-bottom: 1.4rem;
}

.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--orange);
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: gap .2s ease;
}
.blog-card-read-more:hover {
    gap: .8rem;
    color: var(--orange-dark);
}

/* ── Placeholder cards (upcoming posts) ── */
.blog-card--placeholder {
    opacity: .55;
    pointer-events: none;
}
.blog-card-placeholder-img {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-placeholder-img--dark {
    background: linear-gradient(135deg, #2c2c2c, #444);
}
.blog-card-placeholder-img--darker {
    background: linear-gradient(135deg, #1a1a1e, #333);
}
.blog-card-placeholder-img i {
    font-size: 3rem;
    color: rgba(255,255,255,0.2);
}
.blog-card-placeholder-label {
    font-size: .82rem;
    color: #bbb;
    margin-bottom: .5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.blog-card-placeholder-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #aaa;
    margin-bottom: .8rem;
    line-height: 1.4;
}
.blog-card-placeholder-text {
    color: #bbb;
    font-size: .95rem;
    line-height: 1.65;
}

/* ============================================================
   BLOG ARTIKEL – Detailseite
   ============================================================ */

/* ── Article Hero (etwas höher als Übersicht) ── */
.blog-article-hero {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.blog-article-hero .hero-content {
    padding-top: 90px;
    max-width: 860px;
}

.blog-article-label {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: .3rem .9rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 1.2rem;
}

.blog-article-hero-title {
    font-size: clamp(1.7rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.blog-article-hero-lead {
    font-size: clamp(.95rem, 2vw, 1.2rem);
    max-width: 680px;
    margin: 0 auto;
    opacity: .9;
    line-height: 1.7;
    color: #f0f0f0;
}

.blog-article-meta {
    margin-top: 1.8rem;
    font-size: .85rem;
    opacity: .75;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: #fff;
}
.blog-article-meta i {
    color: var(--orange);
    margin-right: .4rem;
}

/* ── Breadcrumb ── */
.blog-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: .85rem;
    opacity: .8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    flex-wrap: wrap;
}
.blog-breadcrumb a {
    color: #fff;
    text-decoration: none;
}
.blog-breadcrumb a:hover {
    color: var(--orange-light);
}
.blog-breadcrumb__sep {
    opacity: .5;
}
.blog-breadcrumb__current {
    color: var(--orange-light);
}

/* ── Article Content Section ── */
.blog-content-section {
    background: var(--light);
    padding: 5rem 0;
}

/* Three-column centering grid */
.blog-content-grid {
    display: grid;
    grid-template-columns: 1fr minmax(0, 760px) 1fr;
}
@media (max-width: 900px) {
    .blog-content-grid {
        grid-template-columns: 1fr;
    }
    .blog-content-grid > :first-child,
    .blog-content-grid > :last-child {
        display: none;
    }
}

/* ── Article body ── */
.blog-article {
    font-size: 1.02rem;
    color: #333;
    line-height: 1.75;
}

/* Intro highlight box */
.blog-intro-box {
    background: #fff;
    border-left: 5px solid var(--orange);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 3rem;
    box-shadow: 0 3px 16px rgba(0,0,0,0.06);
    font-size: 1.08rem;
    line-height: 1.75;
    color: #333;
}

/* Section headings within article */
.article-heading {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--dark);
    margin: 3rem 0 1.5rem;
    padding-bottom: .6rem;
    border-bottom: 3px solid var(--orange);
    text-align: left;
}

/* ── Interview Blocks ── */
.interview-block {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.interview-q,
.interview-a {
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
}

.interview-q {
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-right: 2rem;
}
.interview-a {
    background: #fff8f3;
    border-left: 4px solid var(--orange);
    margin-left: 2rem;
}

@media (max-width: 480px) {
    .interview-q { margin-right: 0; }
    .interview-a { margin-left: 0; }
}

.interview-role {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: .6rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.interview-role--interviewer { color: #888; }
.interview-role--expert      { color: var(--orange); }

.interview-q p,
.interview-a p { margin: 0; }
.interview-a p + p { margin-top: .7rem; }

/* ── Feature list (pros) ── */
.feature-list,
.cons-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-item,
.cons-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    padding: 1.1rem 1.4rem;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.feature-item > div,
.cons-item > div {
    flex: 1;
}
.feature-item strong,
.cons-item strong {
    display: block;
    margin-bottom: .3rem;
    color: var(--dark);
    font-size: 1rem;
}
.feature-item p,
.cons-item p {
    margin: 0;
    font-size: .93rem;
    color: #555;
}

.feature-icon,
.cons-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.feature-icon { background: rgba(230,126,34,0.12); color: var(--orange); }
.cons-icon    { background: rgba(100,100,100,0.1);  color: #666; }

/* ── Pull-quote ── */
.article-quote-box {
    background: var(--dark);
    color: #fff;
    padding: 2rem 2.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 3rem;
    position: relative;
}
.article-quote-box__icon {
    font-size: 1.8rem;
    color: var(--orange);
    margin-bottom: .8rem;
    display: block;
}
.article-quote-box__text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 .8rem;
}
.article-quote-box__source {
    font-size: .85rem;
    opacity: .6;
}

/* ── Steps list ── */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.step-item > div { flex: 1; }
.step-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: .3rem;
    font-size: 1rem;
}
.step-item p {
    margin: 0;
    font-size: .93rem;
    color: #555;
}

.step-num-lg {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
}

/* ── USP grid ── */
.usp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 3rem;
}
@media (max-width: 560px) {
    .usp-grid { grid-template-columns: 1fr; }
}

.usp-card {
    background: #fff;
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 3px solid var(--orange);
}
.usp-card i {
    font-size: 1.5rem;
    color: var(--orange);
    margin-bottom: .7rem;
    display: block;
}
.usp-card strong {
    display: block;
    color: var(--dark);
    margin-bottom: .5rem;
    font-size: 1rem;
}
.usp-card p {
    margin: 0;
    font-size: .9rem;
    color: #555;
    line-height: 1.6;
}

/* ── Fazit / Conclusion box ── */
.fazit-box {
    background: linear-gradient(135deg, #fff8f3, #fff);
    border: 2px solid var(--orange);
    border-radius: var(--radius-md);
    padding: 2rem 2.2rem;
    margin-top: 3rem;
}
.fazit-box__title {
    font-size: 1.2rem;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.fazit-box p {
    margin: 0;
    color: #333;
    line-height: 1.75;
}

/* ── Article Tags ── */
.article-tags {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    align-items: center;
}
.article-tags__label {
    font-size: .85rem;
    color: #888;
    font-weight: 600;
}
.article-tag {
    background: #f0f0f0;
    color: #555;
    font-size: .8rem;
    padding: .3rem .8rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.article-tag:hover {
    background: var(--orange);
    color: #fff;
}

/* ── Back to blog link ── */
.article-back-link {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--orange);
    font-weight: 700;
    text-decoration: none;
    font-size: .95rem;
    transition: gap .2s ease;
}
.article-back-link:hover {
    gap: .8rem;
    color: var(--orange-dark);
}