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

:root {
    /* PRODOC Color Palette */
    --primary-blue: #1E3A8A;
    --accent-purple: #6B00B5;
    --accent-cyan: #1EF5F1;
    --accent-magenta: #C71585;
    --text-header: #3A0CA2;
    --text-body: #272525;
    --warning-orange: #FF6B35;
    --success-green: #10B981;
    --trust-gold: #F59E0B;
    
    /* Typography */
    --font-primary: 'Raleway';
    --font-secondary: 'Roboto';
    
    /* Legacy/Compatibility */
    --primary-gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    --primary-color: var(--accent-purple);
    --secondary-color: var(--accent-cyan);
    --text-dark: var(--text-body);
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo .logo-svg:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

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

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

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

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

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

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

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    background: url('../Hero-Banner-Homepage.png') center/cover no-repeat;
    position: relative;
    padding: 120px 0 80px 0;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle-line {
    font-size: 0.4em;
    font-weight: 400;
    color: var(--accent-cyan);
    display: block;
    margin-top: 0.5rem;
    line-height: 1.3;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Value Proposition Section */
.value-proposition {
    padding: 4rem 0;
    background: var(--white);
}

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

.emotional-appeal {
    margin-bottom: 3rem;
}

.emotional-appeal h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-header);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.emotional-appeal p {
    font-size: 1.2rem;
    color: var(--text-body);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

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

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.benefit-item i {
    color: var(--accent-cyan);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-header);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.5;
}

.trust-section {
    text-align: center;
}

.trust-section h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-header);
    margin-bottom: 2rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-body);
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    text-align: left;
}

.trust-item i {
    color: var(--success-green);
    flex-shrink: 0;
}

/* Original Button Styles from Hero */
.btn-primary {
    background: linear-gradient(135deg, var(--trust-gold) 0%, var(--warning-orange) 100%);
    color: white;
    box-shadow: var(--shadow);
}

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

.btn-secondary {
    background: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background: var(--accent-cyan);
    color: var(--primary-blue);
}

/* Pain Points Section */
.pain-points-section {
    background: #E8E8E8;
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-tagline {
    font-size: 1.8rem;
    color: var(--text-body);
    font-style: italic;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.emotional-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--warning-orange);
}

.emotional-intro h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--text-header);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.emotional-intro p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.situation-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.situation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.situation-image {
    background: linear-gradient(135deg, var(--warning-orange) 0%, var(--accent-magenta) 100%);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.situation-icon {
    font-size: 3rem;
    color: white;
    opacity: 0.9;
}

.situation-content {
    padding: 2rem;
}

.situation-content h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--text-header);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.problem-block,
.feeling-block {
    margin-bottom: 1.5rem;
}

.problem-block strong,
.feeling-block strong {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.problem-block p,
.feeling-block p {
    color: var(--text-body);
    line-height: 1.6;
    font-size: 0.95rem;
}

.feeling-block p {
    font-style: italic;
    color: var(--text-light);
}

.cost-analysis {
    margin: 4rem 0;
    text-align: center;
}

.cost-analysis h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-header);
    margin-bottom: 2rem;
    font-weight: 600;
}

.cost-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.cost-stat {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: left;
}

.cost-stat h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cost-stat ul {
    list-style: none;
    padding: 0;
}

.cost-stat li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-body);
}

.self-test {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 4rem 0;
    text-align: center;
}

.self-test h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 600;
}

.self-test h4 {
    font-size: 1.3rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    font-weight: 500;
}

.checkbox-list {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
}

.checkbox-list label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    cursor: pointer;
    color: var(--text-body);
}

.checkbox-list input[type="checkbox"] {
    margin-right: 0.8rem;
    transform: scale(1.2);
}

.test-evaluation {
    margin-top: 2rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.test-evaluation h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--text-header);
    margin-bottom: 1rem;
}

.test-evaluation ul {
    list-style: none;
    padding: 0;
}

.test-evaluation li {
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* New Problem Header Styles */
.problems-header {
    text-align: center;
    margin: 2rem 0 3rem 0;
}

.problems-header h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 600;
}

.problems-header h3 i {
    margin-right: 0.5rem;
    color: var(--accent-purple);
}

/* Updated Problem Block Styles */
.actual-problem {
    margin-bottom: 1.5rem;
}

.actual-problem strong {
    color: var(--primary-blue);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.actual-problem strong i {
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

.actual-problem p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
}

.problem-block strong i {
    margin-right: 0.5rem;
    color: var(--warning-orange);
}

.feeling-block strong i {
    margin-right: 0.5rem;
    color: var(--accent-magenta);
}

/* Solution Vision Styles */
.solution-vision {
    text-align: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(31, 243, 241, 0.1) 100%);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin: 4rem 0 2rem 0;
    border: 2px solid var(--success-green);
}

.solution-vision h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-vision h3 i {
    margin-right: 0.5rem;
    color: var(--trust-gold);
}

.solution-vision h4 {
    font-size: 1.3rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    font-weight: 500;
}

.solution-vision .solution-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.solution-vision .solution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.solution-vision .solution-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.solution-vision .solution-item span {
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--text-body);
    font-weight: 500;
}

.solution-conclusion {
    font-size: 1.2rem;
    color: var(--text-header);
    font-weight: 600;
    margin-top: 2rem;
}

.solution-preview {
    text-align: center;
    background: linear-gradient(135deg, var(--success-green) 0%, var(--accent-cyan) 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    margin: 4rem 0;
}

.solution-preview h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-preview h4 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.solution-preview .solution-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.solution-preview .solution-list li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.solution-preview .solution-list li strong {
    color: white;
}

.solution-preview p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Solution Vision and Transition Container for Desktop Layout */
.solution-transition-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
    align-items: start;
}

.solution-vision {
    text-align: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(31, 243, 241, 0.1) 100%);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin: 0;
    border: 2px solid var(--success-green);
}

.transition-to-demos {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary-blue) 100%);
    border-radius: var(--border-radius);
    color: white;
    margin: 0;
    height: fit-content;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .solution-transition-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-vision {
        margin-bottom: 2rem;
    }
}

.transition-to-demos h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.transition-to-demos h3 i {
    margin-right: 0.5rem;
    color: var(--accent-cyan);
}

.transition-to-demos p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-transition {
    display: inline-block;
    background: var(--accent-cyan);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    transition: var(--transition);
}

.btn-transition:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}


.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.placeholder-visual {
    text-align: center;
    opacity: 0.3;
}

.placeholder-visual i {
    display: block;
    margin-bottom: 1rem;
}

.placeholder-visual p {
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--light-bg);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-text p {
    color: var(--text-light);
}

.features-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.data-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.data-point {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.data-point.active {
    opacity: 1;
}

.data-point:nth-child(2) {
    animation-delay: 0.5s;
}

.data-point:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.expertise-points {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.point {
    text-align: center;
}

.point strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.point span {
    color: var(--text-light);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #495057;
    opacity: 0.8;
}

/* Responsive Design */
/* Tablet Breakpoint - avoid 2+1 layout */
@media (max-width: 1024px) {
    .situations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-profiles {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
    }

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

    .nav-menu li {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 60px 0 40px 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }


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

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Value Proposition Mobile */
    .value-proposition {
        padding: 3rem 0;
    }

    .emotional-appeal h2 {
        font-size: 2rem;
    }

    .emotional-appeal p {
        font-size: 1.1rem;
    }

    .benefit-item {
        padding: 1.2rem;
    }

    /* Pain Points Mobile */
    .pain-points-section {
        padding: 3rem 0;
    }

    .emotional-intro {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }

    .emotional-intro h3 {
        font-size: 1.5rem;
    }

    .situations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .situation-image {
        height: 100px;
    }

    .situation-icon {
        font-size: 2.5rem;
    }

    .situation-content {
        padding: 1.5rem;
    }

    .cost-analysis h3 {
        font-size: 1.8rem;
    }

    .cost-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cost-stat {
        padding: 1.5rem;
    }

    .self-test {
        padding: 2rem;
    }

    .self-test h3 {
        font-size: 1.8rem;
    }

    .solution-preview {
        padding: 2rem;
    }

    .solution-preview h3 {
        font-size: 1.8rem;
    }

    .btn-primary, .btn-secondary {
        display: block;
        text-align: center;
        margin-bottom: 1rem;
        margin-right: 0;
    }

    /* Features Mobile */
    .features-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-points {
        gap: 2rem;
        justify-content: space-around;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-visual {
        height: 300px;
    }

    .placeholder-visual i {
        font-size: 6rem !important;
    }
}

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

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }




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

    .service-icon i {
        font-size: 2.5rem;
    }

    .expertise-points {
        flex-direction: column;
        gap: 1.5rem;
    }

    .social-proof {
        padding: 1rem;
    }

    .social-proof p {
        font-size: 1rem;
    }

    .hero-visual {
        height: 250px;
    }

    .placeholder-visual i {
        font-size: 4rem !important;
    }

    .placeholder-visual p {
        font-size: 1rem;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .btn-primary {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Live Demos Section */
.demos-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.demos-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.demos-intro h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-header);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.demos-intro p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.important-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(107, 0, 181, 0.1) 0%, rgba(31, 243, 241, 0.1) 100%);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-purple);
    font-size: 1rem;
    color: var(--text-body);
}

.important-note i {
    color: var(--accent-purple);
    font-size: 1.2rem;
}

/* Demos Grid */
.demos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.demo-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(107, 0, 181, 0.1);
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.demo-header {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.demo-icon {
    margin-bottom: 1rem;
}

.demo-icon i {
    font-size: 3rem;
    opacity: 0.9;
}

.demo-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.demo-tagline {
    font-size: 1rem;
    font-style: italic;
    opacity: 0.9;
}

.demo-content {
    padding: 2rem;
}

.demo-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

/* Demo Widgets */
.demo-widget {
    background: var(--bg-light);
    border: 2px dashed var(--accent-purple);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.widget-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.widget-placeholder i {
    color: var(--accent-purple);
    opacity: 0.7;
}

.widget-placeholder p {
    margin: 0;
    color: var(--text-body);
}

/* Voice and Avatar Demo Styles */
.demo-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.option-a, .option-b {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-purple);
}

.option-b {
    border-left-color: var(--accent-cyan);
}

.voice-demo-btn, .avatar-demo-btn, .phone-demo-btn {
    background: var(--bg-gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    justify-content: center;
    margin: 1rem auto;
}

.voice-demo-btn:hover, .avatar-demo-btn:hover, .phone-demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Phone Number Display */
.phone-number-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #C71585;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    box-shadow: var(--shadow-hover);
}

.phone-number-display i {
    font-size: 1.2rem;
    opacity: 0.9;
}

.phone-number {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.phone-hours {
    font-size: 0.9rem;
    color: var(--success-green);
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.phone-hours i {
    color: var(--success-green);
}

/* Demo Details Grid - Responsive Layout */
.demo-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 1200px) {
    .demo-details-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .demo-details-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .perfect-for,
    .phone-perfect-for {
        grid-column: 1 / -1;
    }
}

/* Features Lists */
.demo-features h4,
.demo-questions h4,
.perfect-for h4,
.phone-scenarios h4,
.phone-capabilities h4,
.phone-perfect-for h4 {
    font-size: 1.2rem;
    color: var(--text-header);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-features h4 i,
.demo-questions h4 i,
.perfect-for h4 i,
.phone-scenarios h4 i,
.phone-capabilities h4 i,
.phone-perfect-for h4 i {
    color: var(--accent-purple);
}

.features-list,
.capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item,
.capability-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 3px solid transparent;
}

.feature-item {
    border-left-color: var(--success-green);
}

.capability-item {
    border-left-color: var(--primary-blue);
}

.feature-item i,
.capability-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.use-cases {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.use-case {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.use-case i {
    color: var(--accent-purple);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.demo-questions ul,
.phone-scenarios ul {
    list-style: none;
    padding: 0;
}

.demo-questions li,
.phone-scenarios li {
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-cyan);
}

/* Demos Conclusion */
.demos-conclusion {
    margin-top: 4rem;
}

.local-ai-comparison {
    margin-bottom: 4rem;
}

.local-ai-comparison h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-header);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.local-ai-comparison h3 i {
    color: var(--trust-gold);
    margin-right: 0.5rem;
}

.local-ai-comparison h4 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-body);
    margin-bottom: 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-bad,
.comparison-good {
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.comparison-bad {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 2px solid var(--error-red);
}

.comparison-good {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 2px solid var(--success-green);
}

.comparison-bad h4,
.comparison-good h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-bad h4 {
    color: var(--error-red);
}

.comparison-good h4 {
    color: var(--success-green);
}

.comparison-bad ul,
.comparison-good ul {
    list-style: none;
    padding: 0;
}

.comparison-bad li,
.comparison-good li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.comparison-bad li i {
    color: var(--error-red);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.comparison-good li i {
    color: var(--success-green);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
    border-radius: var(--border-radius);
    color: white;
}

.final-cta h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.final-cta h3 i {
    color: var(--accent-cyan);
    margin-right: 0.5rem;
}

.final-cta p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* Responsive Design for Demos */
@media (max-width: 1024px) {
    .demos-grid {
        gap: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .demos-section {
        padding: 3rem 0;
    }
    
    .demos-intro h3 {
        font-size: 1.5rem;
    }
    
    .demo-header {
        padding: 1.5rem;
    }
    
    .demo-header h3 {
        font-size: 1.3rem;
    }
    
    .demo-content {
        padding: 1.5rem;
    }
    
    .demo-options {
        gap: 1.5rem;
    }
    
    .final-cta {
        padding: 2rem;
    }
    
    .final-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Trust & Expert Team Section */
.trust-section {
    background: #E8E8E8;
    padding: 5rem 0;
}

.trust-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-intro h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-header);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.trust-intro p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Team Profiles */
.team-section {
    margin-bottom: 5rem;
}

.team-section h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-header);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

.team-section h3 i {
    color: var(--accent-purple);
    margin-right: 0.5rem;
}

.team-profiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.team-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-purple);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.team-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.team-icon {
    font-size: 4rem;
}

.team-content {
    padding: 2rem;
}

.team-content h4 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--text-header);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-title {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.expertise-block,
.specialization-block,
.quote-block {
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.quote-block {
    border-bottom: none;
}

.expertise-block strong,
.specialization-block strong,
.quote-block strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-header);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.expertise-block strong i,
.specialization-block strong i,
.quote-block strong i {
    color: var(--accent-purple);
}

.expertise-block p,
.specialization-block p,
.quote-block p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-body);
    margin: 0;
}

.team-profile {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.team-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.profile-info h4 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--text-header);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.profile-title {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 1rem;
    font-weight: 500;
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.certification-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--trust-gold);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience-block,
.competence-block {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-purple);
}

.experience-block h5,
.competence-block h5 {
    font-size: 1.2rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.experience-block h5 i,
.competence-block h5 i {
    color: var(--accent-purple);
}

.competence-block ul {
    list-style: none;
    padding: 0;
}

.competence-block li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.competence-block li i {
    color: var(--success-green);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.personal-quote {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-cyan);
    position: relative;
}

.personal-quote blockquote {
    margin: 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-body);
    text-align: center;
}

.personal-quote i {
    color: var(--accent-cyan);
    font-size: 1.5rem;
}

/* Certifications Section */
.certifications-section {
    margin-bottom: 5rem;
}

.certifications-section h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-header);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

.certifications-section h3 i {
    color: var(--success-green);
    margin-right: 0.5rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.certification-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.certification-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--trust-gold) 0%, var(--warning-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.cert-icon i {
    font-size: 2rem;
    color: white;
}

.certification-card h4 {
    font-size: 1.3rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* DSGVO Guarantee */
.dsgvo-guarantee {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--success-green);
}

.dsgvo-guarantee h4 {
    font-size: 1.3rem;
    color: var(--text-header);
    margin-bottom: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dsgvo-guarantee h4 i {
    color: var(--success-green);
}

.dsgvo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dsgvo-explanation h5,
.dsgvo-guarantees h5 {
    font-size: 1.1rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 600;
}

.dsgvo-guarantees ul {
    list-style: none;
    padding: 0;
}

.dsgvo-guarantees li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.dsgvo-guarantees li i {
    color: var(--success-green);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Partner Network */
.partner-network-section {
    margin-bottom: 5rem;
}

.partner-network-section h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.partner-network-section h3 i {
    color: var(--accent-cyan);
    margin-right: 0.5rem;
}

.partner-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 3rem;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.partner-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.partner-icon i {
    font-size: 1.5rem;
    color: white;
}

.partner-card h4 {
    font-size: 1.2rem;
    color: var(--text-header);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.partner-role {
    font-size: 0.9rem;
    color: var(--accent-purple);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Local Advantage */
.local-advantage-section {
    margin-bottom: 5rem;
}

.local-advantage-section h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-header);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

.local-advantage-section h3 i {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.local-benefits,
.international-reach {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.local-benefits h4,
.international-reach h4 {
    font-size: 1.3rem;
    color: var(--text-header);
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.local-benefits h4 i {
    color: var(--primary-blue);
}

.international-reach h4 i {
    color: var(--success-green);
}

.local-benefits ul,
.international-reach ul {
    list-style: none;
    padding: 0;
}

.local-benefits li,
.international-reach li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.local-benefits li i {
    color: var(--primary-blue);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.international-reach li i {
    color: var(--success-green);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Trust Commitment */
.trust-commitment {
    margin-bottom: 4rem;
}

.trust-commitment h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.trust-commitment h3 i {
    color: var(--accent-magenta);
    margin-right: 0.5rem;
}

.trust-commitment > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 3rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.commitment-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.commitment-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.commitment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-magenta) 0%, var(--accent-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.commitment-icon i {
    font-size: 1.5rem;
    color: white;
}

.commitment-card h4 {
    font-size: 1.2rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 600;
}

.commitment-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.commitment-card li {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    color: var(--text-body);
}

/* Final Trust CTA */
.final-trust-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
    border-radius: var(--border-radius);
    color: white;
}

.final-trust-cta h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Responsive Design for Trust Section */
@media (max-width: 1024px) {
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dsgvo-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 3rem 0;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .final-trust-cta {
        padding: 2rem;
    }
    
    .final-trust-cta h3 {
        font-size: 1.5rem;
    }
}

/* ==========================
   Final CTA Section
   ========================== */

.final-cta-section {
    background: white;
    color: var(--text-dark);
    padding: 80px 0;
}

.honest-consultation {
    text-align: center;
    margin-bottom: 4rem;
}

.honest-consultation h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--text-header);
    margin-bottom: 3rem;
    font-weight: 600;
    text-align: center;
}

.consultation-benefits {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    margin: 3rem 0;
    width: 100%;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--accent-purple);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.benefit-item i {
    color: var(--accent-purple);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.benefit-item div {
    flex: 1;
}

.benefit-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-header);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Consultation Benefit Items */
.consultation-benefit-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e5e5e5;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.consultation-benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.consultation-benefit-item i {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    display: block;
    width: 100%;
}

.consultation-benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-header);
    text-align: center;
    width: 100%;
    font-weight: 600;
}

.consultation-benefit-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-body);
    text-align: center;
    width: 100%;
}

/* Consultation Note */
.consultation-note {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
}

.consultation-note h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: white;
}

.consultation-note p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    margin: 0;
}

/* Booking Widget */
.booking-container {
    background: white;
    color: var(--text-body);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.booking-container h3 {
    color: var(--text-header);
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
}

.cal-widget-container {
    border: 2px solid var(--accent-purple);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #D5D5D5 !important;
    padding: 20px;
}

.cal-widget-container div {
    background: #D5D5D5 !important;
}

#my-cal-inline-ki-assistenten-kennenlernen {
    background: #D5D5D5 !important;
}

.cal-widget-container iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.widget-fallback {
    text-align: center;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    display: none;
}

.widget-fallback .btn-secondary {
    background: var(--accent-purple);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: var(--transition);
}

.widget-fallback .btn-secondary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Email Alternative */
.email-alternative {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.email-alternative h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 600;
}

.email-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    border: 1px solid #e5e5e5;
}

.email-contact i {
    color: var(--accent-purple);
    font-size: 1.2rem;
}

.email-contact .email-address {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.email-contact .email-address:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Urgency Section */
.urgency-section {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary-blue) 100%);
    border-radius: var(--border-radius);
    color: white;
    margin: 3rem 0;
}

.urgency-section h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.urgency-section > p {
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.competitive-advantage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
}

.advantage-item i {
    color: var(--accent-purple);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.advantage-item span {
    color: var(--text-header);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Personal Contact */
.personal-contact {
    background: white;
    color: var(--text-body);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.personal-contact h3 {
    color: var(--text-header);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 600;
}

.personal-contact p {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 2rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-option {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--accent-purple);
    text-align: center;
}

.contact-option i {
    color: var(--accent-purple);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-option strong {
    display: block;
    color: var(--text-header);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.phone-number, .email-address {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin: 0.5rem 0;
    transition: var(--transition);
}

.phone-number:hover, .email-address:hover {
    color: var(--warning-orange);
    text-decoration: underline;
}

.availability {
    color: var(--success-green);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Footer */
.footer-section {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-main {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-company h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-company p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact i {
    color: var(--accent-cyan);
    width: 16px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-column h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--accent-cyan);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #1EF5F1;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.footer-column a:hover {
    color: #C71585;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 0.9rem;
}

.decisive-moment {
    text-align: center;
    margin: 3rem 0 4rem;
}

.decisive-moment h3 {
    font-size: 1.8rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 600;
}

.decisive-moment p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Consultation Overview */
.consultation-overview {
    margin: 4rem 0;
}

.consultation-overview h3 {
    font-size: 2rem;
    color: var(--text-header);
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.consultation-overview h3 i {
    color: var(--accent-purple);
}

.consultation-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 3rem;
    font-weight: 500;
}

.consultation-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.consultation-step {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-purple);
}

.consultation-step h4 {
    font-size: 1.3rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.consultation-step h4 i {
    color: var(--accent-purple);
    font-size: 0.8rem;
}

.consultation-step ul {
    list-style: none;
    padding: 0;
}

.consultation-step li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Promise Section */
.promise-section {
    margin: 4rem 0;
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
}

.promise-section h3 {
    font-size: 2rem;
    color: var(--text-header);
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.promise-section h3 i {
    color: var(--success-green);
}

.promise-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 3rem;
    font-weight: 500;
}

.promise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.promise-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.promise-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

.promise-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-cyan) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.promise-card h4 {
    font-size: 1.2rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.promise-card h4 i {
    color: var(--accent-purple);
    font-size: 0.8rem;
}

.promise-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.5;
}

/* Contact Options */
.contact-options {
    margin: 4rem 0;
}

.contact-options h3 {
    font-size: 2rem;
    color: var(--text-header);
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-options h3 i {
    color: var(--warning-orange);
}

.contact-options > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.contact-option {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.contact-option:hover {
    border-color: var(--accent-purple);
    transform: translateY(-3px);
}

.contact-option h4 {
    font-size: 1.4rem;
    color: var(--text-header);
    margin: 1rem 0 2rem;
    font-weight: 600;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--warning-orange) 0%, var(--trust-gold) 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.2rem;
}

.cal-widget-container {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    text-align: center;
}

.phone-number-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.availability {
    font-size: 1rem;
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.email-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.contact-benefits {
    text-align: left;
}

.contact-benefits h5 {
    font-size: 1.1rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-benefits ul {
    list-style: none;
    padding: 0;
}

.contact-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-benefits li i {
    color: var(--success-green);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    margin: 4rem 0;
}

.faq-section h3 {
    font-size: 2rem;
    color: var(--text-header);
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.faq-section h3 i {
    color: var(--warning-orange);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-purple);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-header);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--text-body);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Urgency Section */
.urgency-section {
    margin: 4rem 0;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary-blue) 100%);
    border-radius: var(--border-radius);
    color: white;
}

.urgency-section h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.urgency-section h3 i {
    color: var(--accent-cyan);
}

.urgency-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.urgency-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.urgency-point i {
    color: var(--warning-orange);
    font-size: 1.5rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.urgency-point h4 {
    font-size: 1.2rem;
    color: var(--text-header);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.urgency-point p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.5;
}

/* Next Steps */
.next-steps {
    margin: 4rem 0;
}

.next-steps h3 {
    font-size: 2rem;
    color: var(--text-header);
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.next-steps h3 i {
    color: var(--primary-blue);
}

.next-steps > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 3rem;
    font-weight: 500;
}

.next-step-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.scenario {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--success-green);
}

.scenario h4 {
    font-size: 1.3rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 600;
}

.scenario ul {
    list-style: none;
    padding: 0;
}

.scenario li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Final CTA */
.final-cta {
    margin: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 4rem 2rem;
    border-radius: var(--border-radius-lg);
}

.final-cta h3 {
    font-size: 2.2rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.final-cta h3 i {
    color: var(--warning-orange);
}

.final-cta > p {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    font-weight: 500;
}

.final-message {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-purple);
}

.final-message p {
    font-size: 1.1rem;
    color: var(--text-header);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.call-to-action-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-purple);
}

.final-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
}

.cta-primary, .cta-secondary, .cta-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 350px;
    justify-content: center;
}

.cta-primary {
    background: linear-gradient(45deg, var(--warning-orange), var(--trust-gold));
    color: white;
    border: none;
}

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

.cta-secondary {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.cta-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

.cta-tertiary {
    background: transparent;
    border: 2px solid var(--success-green);
    color: var(--success-green);
}

.cta-tertiary:hover {
    background: var(--success-green);
    color: white;
}

.ps-message {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--warning-orange), var(--trust-gold));
    color: white;
    border-radius: var(--border-radius);
    text-align: center;
}

.ps-message h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ps-message p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.final-line, .action-line {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design for Final CTA */
@media (max-width: 1024px) {
    /* Consultation benefits bleiben 3-spaltig bis 768px */
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 60px 0;
    }
    
    .honest-consultation h3 {
        font-size: 1.6rem;
    }
    
    .consultation-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking-container {
        padding: 2rem 1rem;
    }
    
    .booking-container h3 {
        font-size: 1.5rem;
    }
    
    .cal-widget-container iframe {
        height: 500px;
    }
    
    .urgency-section {
        padding: 1.5rem;
    }
    
    .urgency-section h3 {
        font-size: 1.5rem;
    }
    
    .competitive-advantage {
        grid-template-columns: 1fr;
    }
    
    .personal-contact {
        padding: 1.5rem;
    }
    
    .personal-contact h3 {
        font-size: 1.4rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .contact-option {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-item i {
        font-size: 2rem;
    }
    
    .booking-container {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .cal-widget-container iframe {
        height: 450px;
    }
    
    .urgency-section {
        padding: 1rem;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* ==========================
   Footer Section
   ========================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--accent-cyan);
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Spalte 1: PRODOC Digital */
.company-info p:first-child {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.company-info p:last-child {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.company-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.company-features li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.footer-main-link {
    color: #1EF5F1;
    text-decoration: underline;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-main-link:hover {
    color: #C71585;
}

/* Spalte 2: Unsere Experten */
.expert {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.expert:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.expert strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: white;
}

.expert p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.25rem 0;
}

.expert a {
    color: #1EF5F1;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.expert a:hover {
    color: #C71585;
}

.expert span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-style: italic;
}

/* Spalte 3: Ressourcen */
.resources-intro {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.resource {
    margin-bottom: 1rem;
}

.resource strong {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.resource a {
    color: #1EF5F1;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.resource a:hover {
    color: #C71585;
}

/* Spalte 4: Kontakt & Legal */
.contact-info,
.legal-info,
.region-info {
    margin-bottom: 1.5rem;
}

.contact-info strong,
.legal-info strong,
.region-info strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.contact-info a {
    color: #1EF5F1;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.contact-info a:hover {
    color: #C71585;
}

.phone-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.legal-info a {
    color: #1EF5F1;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.legal-info a:hover {
    color: #C71585;
}

.region-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-copyright p {
    margin-bottom: 0.5rem;
}

.footer-copyright p:first-child {
    color: white;
    font-size: 0.95rem;
}

.powered-by {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem 0;
    }
}

/* ==========================
   Footer Section
   ========================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.footer-content {
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100%;
}

.footer-column {
    /* Flexbox styles entfernt */
}

.footer-column h3 {
    color: var(--accent-cyan);
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Footer Column 1: PRODOC Digital */
.footer-company-info {
    margin-bottom: 1.5rem;
}

.footer-company-info p:first-child {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-company-info p:last-child {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    margin-bottom: 0;
}

.footer-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.footer-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

.footer-features i {
    color: var(--success-green);
    font-size: 0.8rem;
}

.footer-link-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-link-main:hover {
    color: white;
    text-decoration: underline;
}

/* Footer Column 2: Experten */
.expert-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expert-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.expert-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.expert-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: white;
}

.expert-item p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    margin: 0.25rem 0;
}

.expert-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #C71585;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.expert-link:hover {
    color: #1EF5F1;
    text-decoration: underline;
}

.expert-link-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Footer Column 3: Ressourcen */
.resources-subtitle {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.75rem;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.resource-item strong {
    color: white;
    font-size: 0.9rem;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #C71585;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.resource-link:hover {
    color: #1EF5F1;
    text-decoration: underline;
}

/* Footer Column 4: Kontakt & Legal */
.contact-section,
.legal-section,
.region-section {
    margin-bottom: 1.5rem;
}

.contact-section strong,
.legal-section strong,
.region-section strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-item i {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    width: 16px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.phone-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-links a {
    color: #1EF5F1;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.legal-links a:hover {
    color: #C71585;
}

.region-section p {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-copyright p {
    margin-bottom: 0.5rem;
}

.footer-copyright p:first-child {
    color: white;
    font-size: 0.95rem;
}

.powered-by {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
    }
    
    .expert-list {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-grid {
        gap: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* ==========================
   HeyGen Avatar Widget Styling
   ========================== */

/* Force HeyGen avatar to be inline instead of floating */
#heygen-streaming-embed {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    display: block !important;
    margin: 1rem auto !important;
    width: 300px !important;
    height: 300px !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: auto !important;
    transform: none !important;
}

/* Container for the avatar widget */
.option-b #heygen-streaming-embed {
    border: 2px solid var(--accent-cyan);
    border-radius: 15px;
}

