/* Host42 - Swiss DevOps Hosting */

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

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:root {
    --primary-color: #e52d27;
    --secondary-color: #b31217;
    --dark-bg: #1a1a1a;
    --light-bg: #f5f5f5;
    --text-dark: #222;
    --text-light: #666;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #e52d27 0%, #b31217 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.logo .highlight {
    color: var(--primary-color);
}

.logo .tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -5px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.cta-btn-small {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 100px 0 120px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.hero-feature .icon {
    font-size: 1.5rem;
}

.cta-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: inline-block;
}

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

.cta-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    margin-top: -1.5rem;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.6s ease-out;
}

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

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

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

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

/* Packages Section */
.packages {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}

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

.package-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-bg);
}

.package-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.package-price {
    margin-bottom: 1rem;
}

.package-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.package-price .period {
    font-size: 1rem;
    color: var(--text-light);
}

.package-description {
    color: var(--text-light);
    font-size: 1rem;
}

.package-specs {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.package-specs li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.7rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-features .check,
.package-specs .spec-icon {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.2rem;
}

.package-btn {
    width: 100%;
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

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

/* API Demo Section */
.api-demo {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.api-demo .section-title,
.api-demo .section-subtitle {
    color: var(--white);
}

.api-demo .section-subtitle {
    color: #ccc;
}

.api-demo-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.api-description h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.api-description p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.api-benefits {
    list-style: none;
}

.api-benefits li {
    padding: 0.5rem 0;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.api-benefits .check {
    color: #22c55e;
    font-weight: 700;
}

.code-examples {
    background: #0d1117;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.code-tabs {
    display: flex;
    background: #161b22;
    border-bottom: 1px solid #30363d;
}

.code-tab {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: none;
    color: #8b949e;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.code-tab:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

.code-tab.active {
    color: var(--white);
    border-bottom-color: var(--primary-color);
    background: rgba(255,255,255,0.05);
}

.code-content {
    padding: 1.5rem;
    max-height: 500px;
    overflow-y: auto;
}

.code-block {
    display: none;
}

.code-block.active {
    display: block;
}

.code-block pre {
    margin: 0;
    padding: 0;
}

.code-block code {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #c9d1d9;
    white-space: pre;
    display: block;
}

@media (max-width: 968px) {
    .api-demo-content {
        grid-template-columns: 1fr;
    }
}

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

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

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.stat {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

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

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

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

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.contact-form label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    width: 100%;
    box-sizing: border-box;
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .cta-btn {
    margin-top: 1rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Form States */
.form-success {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.5s ease-in;
}

.form-success h3 {
    color: #22c55e;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.form-error {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.5s ease-in;
}

.form-error h3 {
    color: #ef4444;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-error p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.error-message {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.error-message.visible {
    display: block;
}

/* Loading Spinner */
.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

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

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p,
.footer-section a {
    color: #999;
    font-size: 0.95rem;
    line-height: 2;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Legal Sections */
.legal-section {
    padding: 5rem 0;
    background: var(--white);
    min-height: 60vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-content .back-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.legal-content .back-link:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}

.legal-updated {
    color: var(--text-light);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    position: relative;
    transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    left: 0;
    transition: transform 0.3s, top 0.3s;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle.nav-open .hamburger {
    background: transparent;
}

.nav-toggle.nav-open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.nav-open .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav-cta-mobile {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.nav-open {
        display: flex;
        right: 0;
    }

    .nav-menu li {
        list-style: none;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        color: var(--text-dark);
    }

    .nav-cta-desktop {
        display: none;
    }

    .nav-cta-mobile {
        display: block;
        border-bottom: none !important;
        margin-top: 1rem;
    }

    .nav-cta-mobile a {
        background: var(--gradient);
        color: var(--white) !important;
        border-radius: 25px;
        text-align: center;
        padding: 0.8rem 1.5rem !important;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .cta-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .package-price .price {
        font-size: 2.5rem;
    }
}

/* Blog Styles */
.page-header {
    background: var(--gradient);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header .lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-list {
    padding: 4rem 0;
    background: var(--light-bg);
    min-height: 60vh;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.blog-card h2 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h2 a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tag {
    background: var(--light-bg);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.read-more:hover {
    opacity: 0.8;
}

.no-posts {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    padding: 4rem 0;
}

/* Blog Post */
.blog-post-header {
    background: var(--gradient);
    color: var(--white);
    padding: 4rem 0 3rem;
}

.blog-post-header h1 {
    font-size: 2.2rem;
    margin: 1rem 0;
    line-height: 1.3;
}

.blog-post-header .lead {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
}

.blog-post-header .blog-meta {
    color: rgba(255,255,255,0.8);
}

.blog-post-header .blog-tags .tag {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.blog-post-image {
    margin-top: -2rem;
    margin-bottom: 2rem;
}

.blog-post-image img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.blog-post-content {
    padding: 3rem 0 4rem;
}

.prose {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.prose h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
}

.prose h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
    color: var(--text-dark);
}

.prose p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.prose ul, .prose ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
}

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

.prose code {
    background: var(--light-bg);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
}

.prose pre {
    background: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.prose pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.prose blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-light);
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

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

.prose th,
.prose td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid #ddd;
}

.prose th {
    font-weight: 600;
    color: var(--text-dark);
}

.prose tr:nth-child(even) {
    background: #fafafa;
}

.prose tr:hover {
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .prose table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .prose th,
    .prose td {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

.blog-post-footer {
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

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

    .page-header h1,
    .blog-post-header h1 {
        font-size: 1.8rem;
    }

    .prose {
        font-size: 1rem;
    }
}

/* ========================================
   NEW PROFESSIONAL STYLES
   ======================================== */

/* Logo Image */
.logo-img {
    display: block;
    height: 35px;
    width: auto;
}

.logo .tagline {
    margin-top: 2px;
}

/* Hero Badge (Swiss Quality) */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Social Proof Stats Banner */
.social-proof {
    background: var(--gradient);
    padding: 2rem 0;
}

.stats-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.stat-desc {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* Technology Partners */
.partners {
    background: var(--light-bg);
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.partners-title {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-icon {
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-logo:hover .partner-icon {
    filter: grayscale(0%);
}

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

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

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.testimonial-quote {
    margin-bottom: 1.5rem;
}

.testimonial-quote p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

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

.author-info strong {
    color: var(--text-dark);
}

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

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.process-step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-bg);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.2rem;
}

/* Alt Background */
.alt-bg {
    background: var(--light-bg);
}

/* CTA Button Outline Variant */
.cta-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 1rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
}

.cookie-content a {
    color: var(--primary-color);
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.cookie-btn-accept {
    background: var(--gradient);
    color: var(--white);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Active Nav Link */
.nav-link.active {
    color: var(--primary-color);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: #999;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* Footer Newsletter */
.footer-newsletter-text {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-newsletter {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.6rem 1rem;
    border: 1px solid #444;
    border-radius: 25px;
    background: #2a2a2a;
    color: var(--white);
    font-size: 0.9rem;
}

.footer-newsletter input::placeholder {
    color: #888;
}

.newsletter-btn {
    background: var(--gradient);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.3s;
}

.newsletter-btn:hover {
    transform: scale(1.1);
}

/* Footer Made With */
.footer-made-with {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #888;
}

/* Form Validation Styles */
.form-group {
    position: relative;
    margin-bottom: 0.5rem;
}

.form-error {
    display: none;
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    padding-left: 0.5rem;
}

.form-error.visible {
    display: block;
}

.contact-form input.error,
.contact-form textarea.error {
    border-color: #ef4444;
    background: #fef2f2;
}

/* Loading Button State */
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Success Icon */
.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #22c55e;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

/* 404 Error Page */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.error-content {
    text-align: center;
    max-width: 600px;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.error-message {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

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

.error-suggestions {
    text-align: left;
    background: var(--light-bg);
    padding: 1.5rem 2rem;
    border-radius: 12px;
}

.error-suggestions h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.error-suggestions ul {
    list-style: none;
}

.error-suggestions li {
    padding: 0.5rem 0;
}

.error-suggestions a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.error-suggestions a:hover {
    text-decoration: underline;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.5rem;
}

.breadcrumbs .current {
    color: var(--white);
}

/* Responsive Updates */
@media (max-width: 968px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-banner {
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }
}

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

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

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .partners-grid {
        gap: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .error-code {
        font-size: 5rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .stats-banner {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        padding: 0.5rem 0;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ========================================
   NEW PAGES & FEATURES - v7
   ======================================== */

/* Team Page */
.team-intro {
    padding: 4rem 0;
    background: var(--white);
}

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

.team-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.team-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.team-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-card-featured {
    border: 2px solid var(--primary-color);
}

.team-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.avatar-placeholder.avatar-ai {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    font-size: 3rem;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.expertise-tag {
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.team-social a {
    color: var(--text-light);
    transition: color 0.3s;
}

.team-social a:hover {
    color: var(--primary-color);
}

/* MyData Section */
.mydata-section {
    padding: 4rem 0;
}

.mydata-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.mydata-logo {
    text-align: center;
}

.company-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 0.5rem;
}

.mydata-logo h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.mydata-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mydata-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fact-icon {
    font-size: 1.2rem;
}

.fact-text {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.value-card {
    text-align: center;
    padding: 2rem;
}

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

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

/* Team CTA */
.team-cta {
    padding: 4rem 0;
    background: var(--light-bg);
}

.team-cta .cta-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.team-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.team-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

/* Case Studies Page */
.case-intro {
    padding: 3rem 0;
    background: var(--white);
}

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

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

.case-study {
    padding: 4rem 0;
}

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

.case-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.case-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.case-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.case-section {
    margin-bottom: 2rem;
}

.case-section h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.case-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.case-list {
    list-style: none;
    padding: 0;
}

.case-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.case-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.case-sidebar {
    position: sticky;
    top: 100px;
}

.case-facts,
.case-results {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.case-facts h4,
.case-results h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-bg);
}

.fact-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.fact-label {
    color: var(--text-light);
}

.fact-value {
    font-weight: 600;
    color: var(--text-dark);
}

.result-item {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-bg);
}

.result-item:last-child {
    border-bottom: none;
}

.result-item.highlight {
    background: var(--gradient);
    color: var(--white);
    margin: -1.5rem -1.5rem 1rem;
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
}

.result-item.highlight .result-value {
    color: var(--white);
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.result-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.result-item.highlight .result-label {
    color: rgba(255,255,255,0.8);
}

.case-quote {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
}

.case-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.case-quote cite {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Case Summary */
.case-summary {
    padding: 4rem 0;
    background: var(--gradient);
    color: var(--white);
}

.case-summary .section-title {
    color: var(--white);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.summary-item {
    text-align: center;
}

.summary-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.summary-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Client Logos */
.client-logos {
    padding: 4rem 0;
}

.client-logos .section-title {
    margin-bottom: 0.5rem;
}

.logos-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.logo-placeholder {
    width: 120px;
    height: 60px;
    background: var(--white);
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

.logos-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Customer Logos on Index */
.customer-logos {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.customer-logos .logos-title {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.customer-logos .logos-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.customer-logos .logo-placeholder {
    width: 100px;
    height: 50px;
    font-size: 0.75rem;
}

/* Case CTA */
.case-cta {
    padding: 4rem 0;
    background: var(--white);
}

.case-cta .cta-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Download Page */
.download-section {
    padding: 4rem 0;
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.download-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.download-info > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.checklist-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.feature-check {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.1rem;
}

.download-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.download-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.download-stats .stat-icon {
    font-size: 1.2rem;
}

.download-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.download-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.download-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.download-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
}

.checkbox-group input {
    margin-top: 0.2rem;
}

.download-btn {
    width: 100%;
    margin-top: 0.5rem;
}

.privacy-note {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-light);
}

.privacy-note a {
    color: var(--primary-color);
}

.download-success {
    text-align: center;
    padding: 2rem;
}

.download-success .success-icon {
    margin-bottom: 1rem;
}

.download-success h3 {
    color: #22c55e;
    margin-bottom: 1rem;
}

.download-success p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.success-cta {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Preview Section */
.preview-section {
    padding: 4rem 0;
}

.preview-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.preview-phase {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
}

.preview-phase h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.preview-phase li {
    padding: 0.25rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    padding-left: 1rem;
    position: relative;
}

.preview-phase li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Download Testimonial */
.download-testimonial {
    padding: 3rem 0;
    background: var(--white);
}

.testimonial-single {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-single blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-single cite {
    color: var(--text-light);
}

/* Landing Page Styles */
.landing-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 3rem 0 5rem;
}

.landing-hero .breadcrumbs a {
    color: rgba(255,255,255,0.7);
}

.landing-hero .breadcrumbs .current {
    color: var(--white);
}

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

.landing-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.info-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-features {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
}

.feature-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.feature-mini .icon {
    color: #22c55e;
    font-weight: 700;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-number {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

/* Landing CTA */
.landing-cta {
    padding: 4rem 0;
    background: var(--light-bg);
}

.landing-cta .cta-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.landing-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 1rem;
    color: var(--text-light);
}

/* VMware Migration Schweiz Page */
.problem-section {
    padding: 4rem 0;
    background: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.problem-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.problem-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.problem-list li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.problem-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.stat-box .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-box .stat-label {
    color: var(--text-light);
}

/* Local Section */
.local-section {
    padding: 4rem 0;
}

/* Regions Section */
.regions-section {
    padding: 4rem 0;
    background: var(--white);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.region-item {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.region-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

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

.regions-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Success Teaser */
.success-teaser {
    padding: 4rem 0;
}

/* Treuhand Industry Page */
.challenge-section {
    padding: 4rem 0;
    background: var(--white);
}

.challenge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.challenge-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.challenge-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.challenge-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.challenge-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    line-height: 1.6;
}

.challenge-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Expertise Section */
.expertise-section {
    padding: 4rem 0;
}

/* Case Teaser */
.case-teaser {
    padding: 4rem 0;
    background: var(--white);
}

.case-teaser-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.case-teaser-badge {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: var(--gradient);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.case-teaser-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.case-teaser-card > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.highlight {
    text-align: center;
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
}

.highlight .value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.highlight .label {
    font-size: 0.8rem;
    color: var(--text-light);
}

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

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

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Blog Tags Filter */
.blog-tags-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.filter-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 0.5rem;
}

.tag-filter {
    background: var(--white);
    color: var(--text-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    border: 1px solid #ddd;
}

.tag-filter:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tag-filter.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

.tag-count {
    opacity: 0.7;
    font-size: 0.8rem;
}

.tags-overflow {
    display: contents;
}

.tags-toggle {
    background: var(--white) !important;
    border: 2px dashed var(--primary-color) !important;
    color: var(--primary-color) !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 20px !important;
    font-size: 0.85rem !important;
    font-family: inherit !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    margin: 0.25rem !important;
    display: inline-block !important;
    line-height: 1.4 !important;
}

.tags-toggle:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
}

.filter-notice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.filter-notice p {
    margin: 0;
    color: var(--text-dark);
}

.clear-filter {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.blog-tags a.tag {
    text-decoration: none;
    transition: background 0.3s;
}

.blog-tags a.tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Related Posts */
.related-posts {
    padding: 3rem 0;
    background: var(--light-bg);
}

.related-posts h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.related-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.related-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.related-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.related-card h3 a:hover {
    color: var(--primary-color);
}

.related-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Blog CTA */
.blog-cta {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    text-align: center;
}

.blog-cta h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.blog-cta p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 0.75rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 999;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sticky-cta-text {
    font-size: 0.95rem;
}

.sticky-cta-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.sticky-cta-btn:hover {
    transform: translateY(-2px);
}

.sticky-cta-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.5rem;
    line-height: 1;
}

.sticky-cta-close:hover {
    color: var(--white);
}

/* Exit Intent Modal */
.exit-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.exit-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
}

.exit-modal-content {
    position: relative;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    max-width: 500px;
    margin: 1rem;
    text-align: center;
    animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.exit-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.exit-modal-close:hover {
    color: var(--text-dark);
}

.exit-modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.exit-modal-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.exit-modal-content > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.exit-modal-note {
    margin-top: 1rem;
    color: var(--text-light);
}

.exit-modal-note a {
    color: var(--primary-color);
}

/* Responsive Updates for New Pages */
@media (max-width: 968px) {
    .mydata-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .case-sidebar {
        position: static;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .challenge-grid {
        grid-template-columns: 1fr;
    }
    
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .landing-hero h1 {
        font-size: 2rem;
    }
    
    .preview-content {
        grid-template-columns: 1fr;
    }
    
    .mydata-facts {
        grid-template-columns: 1fr;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .exit-modal-content {
        padding: 2rem;
    }
    
    .exit-modal-content h2 {
        font-size: 1.5rem;
    }
}
