/* =============================================
   Business Visibility – Style Sheet
   Fonts: Plus Jakarta Sans (Headings) + Inter (Body)
   Colors: Deep Navy Blue Palette from Logo
   ============================================= */

/* --- Local Font Loading (DSGVO-konform, keine Google-Server-Anfragen) --- */

/* Inter – latin-ext (Umlaute etc.) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('../fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Inter – latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 600;
    font-display: swap;
    src: url('../fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Plus Jakarta Sans – latin-ext */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('../fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Plus Jakarta Sans – latin */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Plus Jakarta Sans Italic – latin-ext */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/plus-jakarta-sans-italic-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Plus Jakarta Sans Italic – latin */
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/plus-jakarta-sans-italic-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- CSS Custom Properties --- */
:root {
    --primary-dark: #0C2340;
    --primary: #1B4F8A;
    --primary-light: #3178C6;
    --accent: #4A9AED;
    --accent-light: #7CB8F2;
    --accent-gold: #F5A623;
    --bg-light: #F4F7FB;
    --bg-white: #FFFFFF;
    --bg-dark: #0A1628;
    --text-dark: #0C1829;
    --text-body: #374151;
    --text-light: #6B7280;
    --text-white: #FFFFFF;
    --border: #E5E7EB;
    --border-light: #F0F2F5;
    --shadow-sm: 0 1px 3px rgba(12, 35, 64, 0.08);
    --shadow-md: 0 4px 20px rgba(12, 35, 64, 0.1);
    --shadow-lg: 0 10px 40px rgba(12, 35, 64, 0.12);
    --shadow-xl: 0 20px 60px rgba(12, 35, 64, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-max: 1200px;
    --nav-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

/* --- Text Gradient --- */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Section Labels --- */
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(27, 79, 138, 0.08), rgba(74, 154, 237, 0.08));
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(27, 79, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 79, 138, 0.4);
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(27, 79, 138, 0.04);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 56px;
    width: auto;
    transition: height var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 46px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.hero .nav-link {
    color: var(--text-dark);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(27, 79, 138, 0.06);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white) !important;
    padding: 10px 24px !important;
    box-shadow: 0 2px 10px rgba(27, 79, 138, 0.3);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(27, 79, 138, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* --- Nav Dropdown --- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    min-width: 220px;
    list-style: none;
    z-index: 1002;
    margin-top: 4px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
    background: rgba(27, 79, 138, 0.06);
    color: var(--primary);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(165deg, #F8FAFF 0%, #EBF1FA 30%, #F4F7FB 100%);
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    top: 50%;
    left: 30%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(27, 79, 138, 0.08);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    object-position: center top;
    image-rendering: auto;
}

.hero-image-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 3px solid rgba(27, 79, 138, 0.1);
    pointer-events: none;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* --- Trust Bar --- */
.trust-bar {
    background: var(--bg-light);
    padding: 50px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 30px 50px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.trust-divider {
    display: none;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.trust-suffix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.3px;
}


/* --- About Section --- */
.about {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    object-position: center top;
    image-rendering: auto;
}

.about-image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: -1;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-content p {
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

/* --- Pain Section --- */
.pain-section {
    background: var(--bg-white);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pain-card {
    background: var(--bg-light);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(27, 79, 138, 0.15);
}

.pain-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(27, 79, 138, 0.08), rgba(74, 154, 237, 0.08));
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--primary);
}

.pain-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.pain-personas {
    text-align: center;
    margin-bottom: 32px;
}

.pain-personas-label {
    font-size: 1.05rem;
    color: var(--text-light);
    font-style: italic;
    max-width: 650px;
    margin: 0 auto;
}

.pain-cta {
    text-align: center;
}

.pain-cta p {
    font-size: 1.15rem;
    margin-bottom: 20px;
}

/* --- Services Section --- */
.services {
    position: relative;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 6 shared rows: icon, title, description, price, features, button */
    grid-template-rows: repeat(6, auto);
    gap: 0 24px;
}

/* Each card spans 6 rows and uses subgrid to share row heights */
.pricing-grid .service-card {
    grid-row: span 6;
    display: grid;
    grid-template-rows: subgrid;
    row-gap: 0;
    padding: 36px 28px;
}

.pricing-grid .service-card .service-icon {
    margin-bottom: 16px;
}

.pricing-grid .service-card h3 {
    align-self: start;
}

.pricing-grid .service-card > p {
    align-self: start;
    margin-top: 8px;
}

.pricing-grid .service-card .pricing-price {
    align-self: start;
}

.pricing-grid .service-card .service-features {
    align-self: start;
    margin-bottom: 0;
}

.pricing-grid .service-card .btn {
    align-self: end;
    margin-top: 16px;
}

.pricing-price {
    margin: 16px 0;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-type {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 6px;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 40px;
}

.service-card {
    position: relative;
    background: var(--bg-white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(27, 79, 138, 0.15);
}

.service-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    background: linear-gradient(180deg, var(--bg-white) 0%, rgba(27, 79, 138, 0.02) 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(27, 79, 138, 0.06), rgba(74, 154, 237, 0.06));
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
}

.service-features li::before {
    content: '\2713';
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85em;
    flex-shrink: 0;
}

/* --- Care Packages (Betreuungspakete) --- */
.care-packages {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-light);
}

.care-header {
    text-align: center;
    margin-bottom: 40px;
}

.care-header h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.care-header > p {
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.care-card {
    position: relative;
    background: var(--bg-white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.care-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(27, 79, 138, 0.15);
}

.care-card.care-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.care-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(27, 79, 138, 0.06), rgba(74, 154, 237, 0.06));
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--primary);
}

.care-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.care-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.care-pricing {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.care-or {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

.care-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.care-amount {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.care-period {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.care-save {
    font-size: 0.7rem;
    font-weight: 600;
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 8px;
}

.care-card .service-features {
    margin-bottom: 20px;
    flex-grow: 1;
}

.care-card .btn {
    align-self: stretch;
    margin-top: auto;
}

/* --- Process Section --- */
.process {
    background: var(--bg-white);
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--accent-light) 100%);
    opacity: 0.2;
}

.process-step {
    display: flex;
    gap: 30px;
    padding-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(27, 79, 138, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    padding-top: 14px;
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
}

.cta-banner-bg img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 35, 64, 0.92) 0%, rgba(27, 79, 138, 0.88) 100%);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-banner-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* --- Testimonials --- */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonials-single {
    max-width: 650px;
    margin: 0 auto;
}

.testimonial-featured {
    text-align: center;
    padding: 48px 40px;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.testimonial-featured .testimonial-stars {
    justify-content: center;
}

.testimonial-featured .testimonial-author {
    justify-content: center;
}

.testimonial-featured .testimonial-text {
    font-size: 1.1rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- Portfolio / Referenzprojekt --- */
.portfolio {
    background: var(--bg-white);
}

.portfolio-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.portfolio-browser {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.browser-dots span:first-child { background: #EF4444; }
.browser-dots span:nth-child(2) { background: #F59E0B; }
.browser-dots span:last-child { background: #22C55E; }

.browser-url {
    flex: 1;
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--bg-white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    font-family: var(--font-body);
}

.portfolio-preview {
    background: linear-gradient(135deg, #0C2340 0%, #1B4F8A 50%, #3178C6 100%);
    padding: 48px 36px;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.portfolio-preview-content {
    color: var(--text-white);
}

.portfolio-site-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.12);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.portfolio-preview-content h3 {
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.portfolio-preview-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.portfolio-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.portfolio-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.portfolio-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.portfolio-feature svg {
    flex-shrink: 0;
}

/* Portfolio screenshot preview (for projects without gradient) */
.portfolio-preview-screenshots {
    background: var(--bg-light);
    padding: 0;
    min-height: auto;
}

.portfolio-screenshot-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
}

.portfolio-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-screenshot-main {
    border-right: 1px solid var(--border-light);
}

.portfolio-details-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.portfolio-details-header .portfolio-site-badge {
    color: var(--text-light);
    background: linear-gradient(135deg, rgba(27, 79, 138, 0.08), rgba(74, 154, 237, 0.08));
}

.portfolio-details-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.portfolio-launch-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(27, 79, 138, 0.08), rgba(74, 154, 237, 0.08));
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(27, 79, 138, 0.15);
    white-space: nowrap;
    flex-shrink: 0;
}

.portfolio-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Portfolio stacked layout (2 screenshots + details beside) */
.portfolio-card-stacked {
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
}

.portfolio-screenshots-stacked {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.portfolio-screenshot-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.portfolio-screenshot-large {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .portfolio-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .portfolio-preview {
        min-height: 220px;
        padding: 36px 28px;
    }
}

/* --- FAQ --- */
.faq {
    background: var(--bg-white);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-chevron {
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--text-light);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* --- Booking Section --- */
.booking {
    background: var(--bg-light);
}

.booking-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.booking-embed {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

#cal-inline {
    min-height: 500px;
    overflow: visible;
}

.booking-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
}

.booking-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
}

.booking-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    gap: 16px;
}

.booking-expect {
    margin: 8px 0 16px;
    text-align: left;
    max-width: 340px;
}

.booking-expect h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.booking-expect ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-expect li {
    font-size: 0.9rem;
    color: var(--text-body);
    padding-left: 20px;
    position: relative;
}

.booking-expect li::before {
    content: '\2713';
    color: var(--primary);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.booking-placeholder h3 {
    font-size: 1.5rem;
}

.booking-placeholder > p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.booking-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 12px;
}

/* --- Contact Section --- */
.contact {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    color: var(--text-body);
}

.contact-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
    color: var(--primary);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    color: var(--primary);
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.contact-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- Contact Form --- */
.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 79, 138, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

/* --- Footer --- */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1) brightness(0.9);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--text-white);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper img {
        height: 400px;
        max-width: 450px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper img {
        max-height: 450px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, auto) repeat(6, auto);
        gap: 0 20px;
    }

    .pricing-grid .service-card {
        padding: 32px 24px;
    }

    .google-starter-content {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }

    .google-starter-features {
        grid-column: 1 / -1;
    }

    .google-starter-content > .btn {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .foerderung-cards {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-single {
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .section {
        padding: 70px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Dropdown in mobile burger menu */
    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        min-width: auto;
        margin-top: 0;
        padding: 4px 0;
    }

    .nav-dropdown .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu li a {
        font-size: 0.8rem;
        padding: 6px 16px;
        color: var(--text-light);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + 40px);
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-image-wrapper img {
        height: 350px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }

    .pricing-grid .service-card {
        grid-row: auto;
        display: flex;
        flex-direction: column;
        padding: 28px 24px;
    }

    .google-starter-card {
        padding: 24px;
    }

    .google-starter-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .google-starter-icon {
        width: 48px;
        height: 48px;
    }

    .google-starter-text h3 {
        flex-direction: column;
        gap: 8px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .foerderung-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .foerderung-cards .foerderung-card:last-child {
        max-width: 100%;
    }

    .portfolio-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-screenshot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-details-header {
        flex-direction: column;
        gap: 12px;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .care-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .care-pricing {
        flex-wrap: wrap;
    }

    .trust-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
    }

    .process-step {
        gap: 20px;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.1rem;
    }

    .process-timeline::before {
        left: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .cta-banner {
        padding: 70px 0;
    }

    .booking-highlights {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .about-image-frame {
        display: none;
    }

}

/* --- Legal Pages Styling --- */
.legal-page {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 80px;
    min-height: 100vh;
}

.legal-page .legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    margin-bottom: 32px;
    font-size: 2.2rem;
}

.legal-page h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.legal-page h3 {
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-page p,
.legal-page li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-page ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    font-weight: 500;
    color: var(--primary);
}

.legal-back:hover {
    gap: 12px;
}

/* --- Why Me Section --- */
.why-me {
    background: var(--bg-light);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.comparison-item {
    background: var(--bg-white);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.comparison-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(27, 79, 138, 0.15);
}

.comparison-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(27, 79, 138, 0.08), rgba(74, 154, 237, 0.08));
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--primary);
}

.comparison-item h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.comparison-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* --- Foerderungen Section --- */
.foerderungen {
    background: var(--bg-white);
}

.foerderung-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 750px;
    margin: 0 auto;
}

.foerderung-card {
    background: var(--bg-light);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.foerderung-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(27, 79, 138, 0.15);
}

.foerderung-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(27, 79, 138, 0.08), rgba(74, 154, 237, 0.08));
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    color: var(--primary);
}

.foerderung-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.foerderung-card p {
    color: var(--text-body);
    font-size: 0.95rem;
    flex-grow: 1;
}

.foerderung-link {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.foerderung-link:hover {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .foerderung-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.foerderung-hinweis {
    text-align: center;
    margin-top: 40px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(27, 79, 138, 0.04), rgba(74, 154, 237, 0.04));
    border-radius: var(--radius-md);
    border: 1px solid rgba(27, 79, 138, 0.1);
    font-size: 0.95rem;
    color: var(--text-body);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Google Starter Card (separate, horizontal) --- */
.google-starter-card {
    max-width: 1000px;
    margin: 0 auto 48px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 32px 36px;
    transition: all var(--transition);
}

.google-starter-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(27, 79, 138, 0.15);
}

.google-starter-content {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 24px;
    align-items: center;
}

.google-starter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(27, 79, 138, 0.06), rgba(74, 154, 237, 0.06));
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}

.google-starter-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 4px;
}

.google-starter-text h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}

.google-starter-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.google-starter-price small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}

.google-starter-text p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.google-starter-features {
    margin: 0;
}

.google-starter-features li {
    font-size: 0.85rem;
}

.google-starter-content > .btn {
    align-self: center;
    white-space: nowrap;
}

/* --- Website packages sub-header --- */
.website-packages-header {
    text-align: center;
    margin-bottom: 36px;
}

.website-packages-header h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
}

/* --- Dark Mode --- */
@media (prefers-color-scheme: dark) {
    :root {
        --primary: #4A9AED;
        --primary-light: #7CB8F2;
        --primary-dark: #3178C6;
        --accent: #9DC8F5;
        --accent-light: #B8D8F8;
        --bg-light: #0F1A2E;
        --bg-white: #121E33;
        --bg-dark: #080E1B;
        --text-dark: #E8EDF4;
        --text-body: #B8C4D4;
        --text-light: #8899AD;
        --text-white: #FFFFFF;
        --border: #1E2D44;
        --border-light: #1A2840;
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
        --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
        --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.3);
        --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.35);
    }

    body {
        background: var(--bg-dark);
    }

    .text-gradient {
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero {
        background: linear-gradient(165deg, #0A1628 0%, #0F1A2E 30%, #121E33 100%);
    }

    .navbar {
        background: rgba(18, 30, 51, 0.95);
        backdrop-filter: blur(10px);
    }

    .navbar.scrolled {
        background: rgba(18, 30, 51, 0.98);
    }

    .nav-menu {
        background: var(--bg-white);
    }

    .nav-dropdown-menu {
        background: var(--bg-dark);
        border-color: var(--border);
    }

    .nav-dropdown-menu li a {
        color: var(--text-body);
    }

    .nav-dropdown-menu li a:hover {
        background: rgba(74, 154, 237, 0.1);
    }

    .hero-image-accent {
        border-color: rgba(74, 154, 237, 0.2);
    }

    .section-label {
        background: linear-gradient(135deg, rgba(74, 154, 237, 0.1), rgba(156, 200, 245, 0.1));
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        box-shadow: 0 4px 15px rgba(74, 154, 237, 0.3);
    }

    .btn-primary:hover {
        box-shadow: 0 8px 25px rgba(74, 154, 237, 0.4);
    }

    .btn-outline {
        border-color: var(--primary);
        color: var(--primary);
    }

    .btn-outline:hover {
        background: rgba(74, 154, 237, 0.08);
    }

    .pain-card {
        background: var(--bg-white);
        border-color: var(--border);
    }

    .pain-card .pain-icon {
        background: rgba(74, 154, 237, 0.1);
    }

    .google-starter-card {
        background: var(--bg-white);
        border-color: var(--border);
    }

    .google-starter-icon {
        background: linear-gradient(135deg, rgba(74, 154, 237, 0.1), rgba(124, 184, 242, 0.1));
    }

    .service-card {
        background: var(--bg-white);
        border-color: var(--border);
    }

    .service-card:hover {
        border-color: rgba(74, 154, 237, 0.3);
    }

    .service-card.featured {
        border-color: var(--primary);
        background: linear-gradient(180deg, var(--bg-white) 0%, rgba(74, 154, 237, 0.04) 100%);
    }

    .service-icon,
    .care-icon {
        background: linear-gradient(135deg, rgba(74, 154, 237, 0.1), rgba(124, 184, 242, 0.1));
    }

    .care-card {
        background: var(--bg-white);
        border-color: var(--border);
    }

    .care-card:hover {
        border-color: rgba(74, 154, 237, 0.3);
    }

    .care-card.care-featured {
        border-color: var(--primary);
    }

    .comparison-item {
        background: var(--bg-white);
        border-color: var(--border);
    }

    .comparison-item:hover {
        border-color: rgba(74, 154, 237, 0.3);
    }

    .comparison-icon {
        background: linear-gradient(135deg, rgba(74, 154, 237, 0.1), rgba(124, 184, 242, 0.1));
    }

    .why-me {
        background: var(--bg-light);
    }

    .foerderung-card {
        background: var(--bg-white);
        border-color: var(--border);
    }

    .foerderung-card:hover {
        border-color: rgba(74, 154, 237, 0.3);
    }

    .foerderung-icon {
        background: linear-gradient(135deg, rgba(74, 154, 237, 0.1), rgba(124, 184, 242, 0.1));
    }

    .foerderung-hinweis {
        background: linear-gradient(135deg, rgba(74, 154, 237, 0.06), rgba(124, 184, 242, 0.06));
        border-color: rgba(74, 154, 237, 0.15);
    }

    .portfolio-launch-badge {
        background: linear-gradient(135deg, rgba(74, 154, 237, 0.1), rgba(124, 184, 242, 0.1));
        border-color: rgba(74, 154, 237, 0.2);
        color: var(--primary);
    }

    .portfolio-details-header .portfolio-site-badge {
        background: rgba(74, 154, 237, 0.1);
    }

    .portfolio-preview-screenshots {
        background: var(--bg-white);
    }

    .portfolio-screenshot-main {
        border-color: var(--border);
    }

    .process {
        background: var(--bg-light);
    }

    .step-number {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    }

    .trust-bar {
        background: var(--bg-light);
    }

    .services-bg {
        background: var(--bg-light);
    }

    .testimonial-card {
        background: var(--bg-white);
        border-color: var(--border);
    }

    .portfolio-browser {
        border-color: var(--border);
    }

    .browser-bar {
        background: var(--bg-light);
        border-color: var(--border);
    }

    .browser-url {
        background: var(--bg-white);
        border-color: var(--border);
    }

    .browser-dots span { background: var(--border); }
    .browser-dots span:first-child { background: #EF4444; }
    .browser-dots span:nth-child(2) { background: #F59E0B; }
    .browser-dots span:last-child { background: #22C55E; }

    .faq-item {
        border-color: var(--border);
    }

    .faq-question {
        color: var(--text-dark);
    }

    .booking-embed {
        background: var(--bg-white);
        border-color: var(--border);
    }

    .contact-form-wrapper {
        background: var(--bg-white);
        border-color: var(--border);
    }

    .contact-form input,
    .contact-form textarea {
        background: var(--bg-light);
        border-color: var(--border);
        color: var(--text-dark);
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(74, 154, 237, 0.15);
    }

    .footer {
        background: var(--bg-dark);
    }

    .about-image-frame {
        border-color: rgba(74, 154, 237, 0.15);
    }

    .hero-wave svg path {
        fill: var(--bg-light);
    }

    .cta-banner-overlay {
        background: linear-gradient(135deg, rgba(8, 14, 27, 0.95) 0%, rgba(15, 26, 46, 0.92) 100%);
    }

    .btn-white {
        background: var(--bg-white);
        color: var(--text-dark);
    }

    .value-item svg,
    .booking-highlight-item svg {
        stroke: var(--primary);
    }

    .legal-page {
        background: var(--bg-dark);
    }

    .legal-page .legal-content {
        color: var(--text-body);
    }

    .legal-page h1,
    .legal-page h2,
    .legal-page h3 {
        color: var(--text-dark);
    }

    .legal-page a {
        color: var(--primary);
    }
}
