/* ============================================================
   NEUE WEBSEITEN - Custom Styles
   Basierend auf Picco CSS Framework
   Agentur: expAIrience GmbH | Berlin
   ============================================================ */

/* Logo im Header – Styles sind im HEADER-Bereich unten definiert */

/* --- CSS Variablen / Custom Properties --- */
:root {
    --nw-primary: #ff1d5d;
    --nw-primary-dark: #d91a4f;
    --nw-dark-blue: #064072;
    --nw-darker-blue: #091c32;
    --nw-body-color: #666666;
    --nw-heading-color: #000000;
    --nw-light-text: #999999;
    --nw-lighter-text: #aaaaaa;
    --nw-footer-heading: lightsteelblue;
    --nw-footer-text: lightslategray;
    --nw-light-bg: #fafafa;
    --nw-border-light: #f1f1f1;
    --nw-green: #4CAF50;
    --nw-white: #ffffff;
    --nw-black: #000000;

    --nw-font-body: system-ui, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, 'Helvetica Neue', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    --nw-font-heading-h1: system-ui, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, 'Helvetica Neue', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    --nw-font-heading: system-ui, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, 'Helvetica Neue', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    
    --nw-transition: 0.3s ease;
}

/* --- Picco CSS Override --- */
body {
    font-family: var(--nw-font-body);
    color: var(--nw-body-color);
    background-color: var(--nw-white);
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--nw-heading-color);
    font-family: var(--nw-font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-family: var(--nw-font-heading-h1);
    font-size: 41px;
    font-weight: 700;
    letter-spacing: initial;
}

h2 {
    font-size: 34px;
    font-weight: 700;
}

h3 {
    font-size: 22px;
    font-weight: 500;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

a {
    color: var(--nw-black);
    text-decoration: none;
    transition: color var(--nw-transition);
}

a:hover {
    color: var(--nw-primary);
}

a.secondary {
    color: var(--nw-body-color);
}

a.secondary:hover {
    color: var(--nw-primary);
}

/* Buttons */
.button, 
button.secondary,
a[role="button"] {
    transition: all var(--nw-transition);
}

.btn-primary {
    background-color: var(--nw-primary);
    color: var(--nw-white);
    border: 2px solid var(--nw-primary);
    padding: 10px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    transition: all var(--nw-transition);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--nw-primary-dark);
    border-color: var(--nw-primary-dark);
    color: var(--nw-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--nw-white);
    border: 2px solid var(--nw-white);
    padding: 10px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    transition: all var(--nw-transition);
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--nw-white);
    color: var(--nw-black);
}

.btn-dark {
    background-color: var(--nw-black);
    color: var(--nw-white);
    border: 2px solid var(--nw-black);
    padding: 10px 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    transition: all var(--nw-transition);
    cursor: pointer;
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--nw-black);
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent;
    padding: 8px 0;
    transition: all 0.35s ease;
    border: none;
    box-shadow: none;
    margin: 0;
}

/* Pico CSS override: prevent framework from styling our header */
header#site-header > .container {
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 auto;
}
header#site-header nav,
header#site-header ul,
header#site-header li {
    background: none;
    border: none;
    box-shadow: none;
}

/* Pico CSS override: prevent nav ul flex from affecting dropdowns */
header#site-header .main-nav .dropdown-menu,
header#site-header .main-nav .dropdown-menu li {
    display: block !important;
}
header#site-header .main-nav .dropdown-menu {
    background: #fff !important;
}
header#site-header .main-nav .dropdown-menu li a {
    display: block !important;
    width: 100%;
}

#site-header.sticky {
    position: fixed;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 4px 0;
}

/* ---------- Header Inner ---------- */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* ---------- Logo ---------- */
.logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 56px;
    width: auto;
    border: none;
    transition: opacity 0.3s ease;
}

/* Light logo (default on dark hero background) */
.logo .logo-light {
    display: block;
}
.logo .logo-dark {
    display: none;
}

/* Sticky: switch to dark logo */
#site-header.sticky .logo .logo-light {
    display: none;
}
#site-header.sticky .logo .logo-dark {
    display: block;
}

/* ---------- Desktop Navigation ---------- */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.nav-list > li {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.dropdown-arrow {
    font-size: 9px;
    transition: transform 0.25s ease;
}

/* Sticky nav colors */
#site-header.sticky .nav-link {
    color: var(--nw-body-color);
}
#site-header.sticky .nav-link:hover,
#site-header.sticky .nav-link.active {
    color: var(--nw-primary);
    background: rgba(255, 29, 93, 0.06);
}

/* ---------- Dropdown ---------- */
.main-nav .dropdown {
    position: relative;
}

.main-nav .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    min-width: 240px;
    padding: 8px 0;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1000;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    /* Pico CSS override: prevent flex layout */
    display: block !important;
    margin: 0;
    list-style: none;
}

.main-nav .dropdown:hover .dropdown-menu,
.main-nav .dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.main-nav .dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu li {
    display: block;
    padding: 0;
    margin: 0;
    /* Pico CSS override */
    list-style: none;
    background: transparent;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--nw-body-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    color: var(--nw-primary);
    background: rgba(255, 29, 93, 0.04);
}

/* ---------- Header Actions ---------- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Social Icons */
.header-socials {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.header-socials a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

/* Sticky social colors */
#site-header.sticky .header-socials a {
    color: var(--nw-light-text);
}
#site-header.sticky .header-socials a:hover {
    color: var(--nw-primary);
    background: rgba(255, 29, 93, 0.08);
}

/* CTA Button */
.header-cta {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--nw-primary);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--nw-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 29, 93, 0.35);
}

#site-header.sticky .header-cta:hover {
    box-shadow: 0 4px 12px rgba(255, 29, 93, 0.3);
}

/* ---------- Hamburger (3-line) ---------- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 8px;
    gap: 5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger → X animation */
.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

#site-header.sticky .menu-toggle {
    background: rgba(0, 0, 0, 0.05);
}
#site-header.sticky .hamburger-line {
    background: var(--nw-heading-color);
}
#site-header.sticky .menu-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* ---------- Mobile Nav (Full-screen Overlay) ---------- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    z-index: 9995;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav-panel.open {
    right: 0;
}

/* Mobile nav header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--nw-border-light);
}

.mobile-logo img {
    height: 40px;
    width: auto;
    border: none;
}

.mobile-nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--nw-light-bg);
    border-radius: 10px;
    font-size: 20px;
    color: var(--nw-body-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-nav-close:hover {
    background: var(--nw-border-light);
    color: var(--nw-heading-color);
}

/* Mobile nav body */
.mobile-nav-body {
    flex: 1;
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid var(--nw-border-light);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--nw-heading-color);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--nw-primary);
}

.mobile-nav-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Mobile submenu */
.mobile-submenu {
    display: none;
    list-style: none;
    padding: 0 0 8px 16px;
    margin: 0;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu li {
    border-bottom: none;
}

.mobile-submenu li a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 400;
    color: var(--nw-body-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-submenu li a:hover {
    color: var(--nw-primary);
}

/* Mobile nav footer */
.mobile-nav-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--nw-border-light);
}

.mobile-socials {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.mobile-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--nw-light-bg);
    color: var(--nw-light-text);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mobile-socials a:hover {
    background: var(--nw-primary);
    color: #fff;
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: var(--nw-primary);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mobile-cta:hover {
    background: var(--nw-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 29, 93, 0.3);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .main-nav,
    .header-socials,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (min-width: 1025px) {
    .menu-toggle {
        display: none !important;
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    background-color: var(--nw-dark-blue);
    background-image: url('../images/hero-webdesign-berlin-agentur.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--nw-white);
    padding: 120px 0 80px;
}

.hero-slogan {
    font-family: var(--nw-font-heading-h1);
    font-size: 75px;
    font-weight: bold;
    color: #ecf2f5;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.5);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 10px;
}

.hero-sub-slogan {
    font-size: 22px;
    font-weight: 500;
    color: #366BAA;
    text-align: center;
    margin-bottom: 40px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
    background-color: var(--nw-white);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform var(--nw-transition), box-shadow var(--nw-transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card img {
    margin-bottom: 20px;
}

.service-card h3 {
    color: #366BAA;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--nw-border-light);
    font-size: 15px;
}

.service-card ul li:last-child {
    border-bottom: none;
}

.service-card ul li a {
    color: var(--nw-body-color);
}

.service-card ul li a:hover {
    color: var(--nw-primary);
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--nw-white);
}

.portfolio-overlay h3 {
    color: var(--nw-white);
    margin: 0;
    font-size: 20px;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.reviews-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* ============================================================
   TRUSTED BY / LOGOS
   ============================================================ */
.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
}

.trusted-logos img {
    max-height: 80px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--nw-transition);
}

.trusted-logos img:hover {
    opacity: 1;
}

/* CTA form success */
.cta-success {
    text-align: center;
    padding: 40px 20px;
}
.cta-success h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background-color: var(--nw-dark-blue);
    color: var(--nw-white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--nw-white);
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    color: #ecf2f5;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .overline {
    font-size: 16px;
    color: var(--nw-body-color);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 600;
    color: var(--nw-heading-color);
    line-height: 1.1;
}

/* ============================================================
   SECTION SPACING
   ============================================================ */
.section-padding {
    padding: 100px 0;
}

.section-padding-top {
    padding-top: 100px;
}

.section-padding-bottom {
    padding-bottom: 100px;
}

/* ============================================================
   BACKGROUND VARIANTS
   ============================================================ */
.bg-light {
    background-color: var(--nw-light-bg);
}

.bg-dark-blue {
    background-color: var(--nw-dark-blue);
    color: var(--nw-white);
}

.bg-dark-blue h1,
.bg-dark-blue h2,
.bg-dark-blue h3,
.bg-dark-blue h4,
.bg-dark-blue h5 {
    color: var(--nw-white);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    background-color: var(--nw-black);
    color: var(--nw-footer-text);
    padding-top: 60px;
    font-size: 16px;
}

.footer-widgets {
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-widget h4 {
    color: lightsteelblue;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-widget ul {
    list-style: none;
    padding: 0 0 0 18px;
    margin: 0;
}

.footer-widget ul li {
    padding: 5px 0;
}

.footer-widget ul li a {
    color: var(--nw-footer-text);
    font-size: 15px;
    transition: color var(--nw-transition);
}

.footer-widget ul li a:hover {
    color: var(--nw-white);
}

#site-footer .footer-address p,
#site-footer .footer-address a {
    color: var(--nw-footer-text);
}

#site-footer .footer-address a:hover {
    color: var(--nw-white);
}

.footer-address p {
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--nw-footer-text);
}

.footer-copyright a {
    color: lightsteelblue;
}

.footer-copyright a:hover {
    color: var(--nw-white);
}

.footer-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    font-size: 14px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-menu li a {
    color: var(--nw-footer-text);
    font-size: 14px;
}

.footer-menu li a:hover {
    color: var(--nw-white);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: var(--nw-footer-text);
    font-size: 18px;
}

.footer-socials a:hover {
    color: var(--nw-white);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 500;
    color: var(--nw-heading-color);
    margin-bottom: 5px;
    display: block;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-family: var(--nw-font-body);
    font-size: 16px;
    transition: border-color var(--nw-transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--nw-primary);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    color: inherit;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-group label a {
    color: var(--nw-primary);
    text-decoration: underline;
}

/* ============================================================
   PAGE HEADER (Inner Pages)
   ============================================================ */
.page-header-inner {
    background-color: var(--nw-dark-blue);
    color: var(--nw-white);
    padding: 150px 0 80px;
    text-align: center;
}

.page-header-inner h1 {
    color: var(--nw-white);
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header-inner p {
    color: #ecf2f5;
    font-size: 18px;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-card {
    border: 1px solid var(--nw-border-light);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all var(--nw-transition);
    background-color: var(--nw-white);
}

.pricing-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--nw-primary);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Empfohlen';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--nw-primary);
    color: var(--nw-white);
    padding: 4px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 700;
    color: var(--nw-heading-color);
    margin: 20px 0;
}

.pricing-card .price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--nw-body-color);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--nw-border-light);
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--nw-green);
    margin-right: 10px;
    font-weight: 700;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .hero-slogan {
        font-size: 50px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-slogan {
        font-size: 36px;
        line-height: 1.1;
    }

    .hero-sub-slogan {
        font-size: 18px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-header-inner h1 {
        font-size: 32px;
    }

    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-slogan {
        font-size: 28px;
    }
}

/* Light borders to all images */
img {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

/* But exclude logo images from border */
.logo img,
#site-footer img {
    border: none;
    border-radius: 0;
}

/* ============================================================
   HELPER / EXTRAS
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--nw-white);
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner .cookie-btn {
    background-color: var(--nw-primary);
    color: var(--nw-white);
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--nw-primary);
    color: var(--nw-white);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--nw-transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--nw-primary-dark);
    color: var(--nw-white);
}

/* Grid enhancement for Picco - responsive columns */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 25px; }

@media (max-width: 992px) {
    .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}



#site-header.sticky .menu-toggle {
    color: var(--nw-black);
}

/* Hero section with overlay effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
        background: linear-gradient(135deg, rgba(6, 64, 114, 0.55) 0%, rgba(9, 28, 50, 0.7) 100%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}
