:root {
    --petrol-950: #0A2426;
    --petrol-900: #0E3032;
    --petrol-850: #123C3F;
    --petrol-800: #18494C;
    --petrol-750: #1F595C;
    --petrol-700: #276A6D;

    --text-primary: #EAF4F4;
    --text-secondary: #B7C9C9;
    --text-muted: #8EA6A6;

    --accent: #FF7043; /* Refined Orange */
    --accent-hover: #F4511E;

    --border: rgba(234, 244, 244, 0.12);
    --border-hover: rgba(234, 244, 244, 0.24);

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    --font-main: 'Inter', sans-serif;
    --container-width: 1100px;
    --section-padding: 100px 24px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    hyphens: auto;
}

html, body {
    max-width: 100vw;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--petrol-950);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 600;
    hyphens: none;
    word-break: normal;
}

h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
p { color: var(--text-secondary); margin-bottom: 1rem; }

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 106, 77, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 30, 32, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background: rgba(6, 30, 32, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    height: 70px;
    border-bottom-color: var(--accent);
}

body {
    padding-top: 80px; /* Space for fixed header */
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    margin-left: -10px;
    display: flex;
    align-items: center;
}

.logo-link img { 
    height: 45px; 
    width: auto; 
    object-fit: contain;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

@media (max-width: 768px) { 
    .logo-link img { 
        height: 35px; 
    } 
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    margin-right: 8px;
}

.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

.mobile-calendly-btn {
    background: none;
    border: none;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--petrol-950);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-overlay .close-menu {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-menu-overlay a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-menu-overlay a:hover {
    color: var(--accent);
}

/* Honeypot */
.hp-field {
    display: none !important;
    visibility: hidden !important;
}

/* Placeholder Contrast Fix */
::placeholder {
    color: #666666 !important;
    opacity: 1;
}
:-ms-input-placeholder {
    color: #666666 !important;
}
::-ms-input-placeholder {
    color: #666666 !important;
}

.form-label {
    display: block;
    color: #333333;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: left;
}

/* Custom Checkbox Style */
input[type="checkbox"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
}

/* New Hero for Subpages */
.hero-subpage {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background-color: var(--petrol-950);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 36, 38, 0.3) 0%,
        rgba(10, 36, 38, 0.6) 70%,
        #0A2426 100%
    );
    z-index: 1;
}

.hero-subpage .container {
    position: relative;
    z-index: 2;
    color: white;
}

/* Unified Hero Section */
.hero-unified {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-align: center;
    padding: 120px 0 80px;
}

.hero-unified .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 36, 38, 0.65);
    z-index: 1;
}

.hero-unified .container {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-unified h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: white;
}

.hero-unified p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
}

@media (max-width: 768px) {
    .hero-unified {
        min-height: 350px;
        padding: 100px 0 60px;
    }
    .hero-unified h1 {
        font-size: 2.5rem;
    }
}

/* Index Section Updates */
.section-target.with-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-target.with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 36, 38, 0.85);
    z-index: 0;
}

.section-target.with-bg .container {
    position: relative;
    z-index: 1;
}

.section-questionnaire.with-bg {
    position: relative;
    background-size: cover;
    background-position: center;
}

.section-questionnaire.with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 36, 38, 0.4); /* Subtle overlay for questionnaire */
    z-index: 0;
}

.section-questionnaire.with-bg .container {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 36, 38, 0.4),
        rgba(10, 36, 38, 0.8)
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 2.5rem;
    justify-content: center;
}

/* Problem Awareness */
.section-problem {
    background-color: var(--petrol-800);
    padding: var(--section-padding);
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-box {
    margin-top: 2rem;
    padding: 2rem;
    border-left: 4px solid var(--accent);
    background: var(--glass-bg);
    text-align: left;
    border-radius: 0 12px 12px 0;
}

.quote-box p {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

/* Target Groups */
.section-target {
    background-color: var(--petrol-900);
    padding: var(--section-padding);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

/* Material Symbols Configuration */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 40;
    display: inline-block;
    line-height: 1;
}

.icon-wrapper, .benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(255, 112, 67, 0.1);
    margin: 0 auto 20px;
    color: var(--accent);
}

.icon-wrapper .material-symbols-outlined,
.benefit-icon .material-symbols-outlined {
    font-size: 36px;
}

.process-card .benefit-icon {
    margin: 0 0 20px 0; /* Left align in process cards if they are not centered */
}

/* Ensure process cards content is aligned correctly if needed */
.process-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.target-card {
    padding: 24px;
    /* min-height removed to make boxes only as big as text initially */
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.target-card h3 {
    font-size: 1.2rem;
    margin: 0;
    transition: transform 0.3s ease;
}

.target-desc {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Desktop Hover */
@media (min-width: 769px) {
    .target-card:hover {
        border-color: var(--accent);
        box-shadow: 0 0 15px rgba(255, 106, 77, 0.1);
    }
    .target-card:hover h3 {
        transform: translateY(-5px);
        color: var(--accent);
    }
    .target-card:hover .target-desc {
        opacity: 1;
        max-height: 100px;
        margin-top: 10px;
    }
}

/* Mobile Interaction handled via JS class 'active' */
.target-card.active {
    border-color: var(--accent);
}
.target-card.active h3 {
    color: var(--accent);
    margin-bottom: 10px;
}
.target-card.active .target-desc {
    opacity: 1;
    max-height: 100px;
}

/* Misconceptions (Accordion) */
.section-misconceptions {
    background-color: var(--petrol-800);
    padding: var(--section-padding);
}

.accordion-item, .faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header, .faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
}

.accordion-header:hover, .faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.accordion-content, .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
}

.accordion-content p, .faq-answer p {
    padding: 20px 24px;
    margin: 0;
}

.accordion-item.active .accordion-icon, .faq-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content, .faq-item.active .faq-answer {
    max-height: 200px; /* Approximate max height */
}

/* Process */
.section-process {
    background-color: var(--petrol-900);
    padding: var(--section-padding);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

.process-card {
    padding: 30px 24px;
    position: relative;
    text-align: left;
}

.process-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 10px;
    right: 20px;
    transition: all 0.3s ease;
    line-height: 1;
}

.process-card:hover .process-number {
    color: rgba(255, 106, 77, 0.1);
    transform: scale(1.1);
}

.process-card:hover {
    border-color: var(--accent);
}

/* Social Proof */
.section-social {
    background-color: var(--petrol-800);
    padding: var(--section-padding);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Questionnaire */
.section-questionnaire {
    background-color: var(--petrol-700);
    padding: var(--section-padding);
}

.questionnaire-container {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(0, 56, 68, 0.8); /* Petrol #003844 with 80% opacity */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 50px 40px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 40px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    width: 33%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.question-step {
    display: none;
    animation: fadeIn 0.5s ease;
    text-align: center;
}

.question-step h3 {
    color: #FFFFFF;
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.question-step.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.question-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.option-btn {
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    color: #FFFFFF;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.option-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.option-btn.selected {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 112, 67, 0.4);
}

.question-step[data-step="result"] h2 {
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.question-step[data-step="result"] p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#callback-container {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
}

.callback-form input, .callback-form select, .callback-form textarea {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #FFFFFF !important;
}

.callback-form input::placeholder, .callback-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Contact / Short Funnel */
.section-contact {
    background-color: var(--petrol-900);
    padding: var(--section-padding);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.profile-card {
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--petrol-700);
    object-fit: cover;
}

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-main);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* Footer */
footer {
    background-color: var(--petrol-900);
    border-top: 1px solid var(--border);
    padding: 60px 24px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-nav {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 2px 0;
}

.footer-links a:hover {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Remove hover effects on touch devices */
@media (hover: none) {
    .btn:hover, .glass-card:hover, .option-btn:hover, .accordion-header:hover, .footer-links a:hover, .nav-links a:hover {
        transform: none !important;
        box-shadow: none !important;
        background-color: inherit !important;
        border-color: var(--border) !important;
    }
    
    .btn-primary:hover {
        background-color: var(--accent) !important;
    }
    
    .btn-secondary:hover {
        background-color: transparent !important;
    }

    .target-card:hover h3 {
        transform: none !important;
        color: inherit !important;
    }
    
    .target-card:hover .target-desc {
        opacity: 0 !important;
        max-height: 0 !important;
        margin-top: 0 !important;
    }
    
    .target-card.active h3 {
        color: var(--accent) !important;
    }
    
    .target-card.active .target-desc {
        opacity: 1 !important;
        max-height: 100px !important;
        margin-top: 10px !important;
    }
}

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

    header.scrolled {
        height: 65px;
    }

    h1 { 
        font-size: 2.2rem !important; 
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    h2 { font-size: 1.75rem !important; }
    
    section {
        padding: 40px 15px !important;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }

    .mobile-calendly-btn {
        display: flex !important;
    }

    .mobile-menu-btn { 
        display: block; 
        margin-right: -8px;
    }

    .nav-links { display: none !important; } 
    
    .header-inner { 
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .logo-link {
        margin-left: -5px;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header-cta {
        display: inline-block !important;
        padding: 8px 12px !important;
        font-size: 0.85rem !important;
        border-radius: 6px !important;
        margin: 0 !important;
        height: auto !important;
        line-height: 1.2 !important;
        white-space: nowrap;
    }

    .mobile-calendly-btn {
        display: none !important;
    }
    .hero-actions, .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 400px;
        margin: 0 auto;
    }
    .hero-actions .btn, .hero-buttons .btn {
        width: 100% !important;
        padding: 16px 24px !important;
        font-size: 1.1rem !important;
        white-space: normal !important; /* Erlaubt sauberen Textfluss */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Alle Grids auf einspaltig zwingen */
    .target-grid, .process-grid, .social-grid { 
        grid-template-columns: 1fr !important; 
        gap: 20px;
        display: grid !important;
    }

    .footer-grid, .contact-layout, .matrix-grid, .contact-main-card { 
        grid-template-columns: 1fr !important; 
        gap: 24px;
        text-align: center;
        display: grid !important;
    }

    .contact-form-panel, .contact-info-panel {
        padding: 30px 20px !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .target-card, .process-card {
        margin: 0 auto;
        width: 100% !important;
        max-width: 100% !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid var(--border);
    }

    .is-active-focus { 
        border-color: var(--accent) !important; 
        transform: scale(1.03); 
        box-shadow: 0 10px 30px rgba(255, 112, 67, 0.2);
        background: rgba(255, 255, 255, 0.08) !important;
    }

    .target-card h3, .target-card p, .process-card h3, .process-card p {
        hyphens: none !important;
        word-break: normal !important;
    }

    .glass-card {
        margin: 0 auto;
        width: 100%;
    }

    h3 {
        font-size: 1.3rem !important;
        margin-bottom: 10px;
    }
    
    .footer-grid { 
        text-align: center; 
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .footer-nav, .footer-col { 
        flex-direction: column; 
        align-items: center;
        text-align: center;
        gap: 12px; 
    }

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

    .profile-card {
        flex-direction: column;
        text-align: center;
    }
    .hide-mobile { display: none !important; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 9999;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 1000px;
    border-radius: 16px;
    background: rgba(14, 48, 50, 0.95);
    border: 1px solid var(--accent);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10% !important;
        left: 5%;
        right: 5%;
        width: 90%;
        transform: none;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        z-index: 99999;
        border-radius: 16px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-actions .btn {
        width: 100%;
    }
}

/* Calendly Custom Modal Overlay */
.calendly-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 36, 38, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    padding: 20px;
}

.calendly-modal-content {
    background: white;
    width: 100%;
    max-width: 1000px;
    height: 85vh;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.calendly-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    color: #333;
    transition: all 0.2s ease;
}

.calendly-close-btn:hover {
    background: #f5f5f5;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .calendly-modal-content {
        height: 90vh;
        border-radius: 12px;
    }
    .calendly-modal-overlay {
        padding: 10px;
    }
}

/* Expertise Page Specifics */
.expertise-hero {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.expertise-featured-row {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.expertise-featured-row .expertise-card {
    width: 100%;
    max-width: calc(50% - 16px); /* Matches exactly one column width in a 2-col grid with 32px gap */
}

.featured-highlight {
    border: 2px solid var(--accent) !important;
    box-shadow: 0 0 20px rgba(255, 112, 67, 0.1) !important;
}

.expertise-standard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch; /* Ensures cards in the same row have equal height on desktop */
}

.expertise-card {
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure cards fill the grid row height */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.card-main {
    padding: 32px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

.card-preview {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.expand-icon {
    position: absolute;
    bottom: 20px;
    right: 24px;
    color: var(--accent);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card.active .expand-icon {
    transform: rotate(180deg);
}

.card-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 32px;
    opacity: 0;
}

.expertise-card.active .card-details {
    max-height: 1000px;
    padding-bottom: 32px;
    opacity: 1;
}

.card-details p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.card-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.card-details li {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-cta-wrapper {
    margin-top: 24px;
}

.btn-card-cta {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
    border-radius: 12px;
    background-color: var(--accent);
    color: white;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-card-cta:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 112, 67, 0.3);
}

@media (max-width: 768px) {
    .expertise-standard-grid {
        grid-template-columns: 1fr !important;
    }
    .expertise-featured-row .expertise-card {
        max-width: 100% !important;
    }
    .expertise-hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    .expertise-hero .hero-content {
        text-align: center !important;
    }
    .insider-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    /* Disable hover expansion on mobile */
    .expertise-card:hover .card-details {
        max-height: 0;
        padding-bottom: 0;
        opacity: 0;
    }
    .expertise-card.active .card-details {
        max-height: 1200px;
        padding-bottom: 32px;
        opacity: 1;
    }
    .expertise-card:hover .expand-icon {
        transform: none;
    }
    .expertise-card.active .expand-icon {
        transform: rotate(180deg);
    }
}

/* Final CTA Section */
.section-final-cta {
    border-top: 1px solid var(--border);
}
