/* ============================================
   Design System - Style Apple
   ============================================ */
:root {
    --primary: #0979b1;
    --primary-light: #1a8ac4;
    --accent: #ff9000;
    --text: #1d1d1f;
    --text-secondary: #86868b;
    --bg: #ffffff;
    --bg-secondary: #f5f5f7;
    --border: #d2d2d7;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

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

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-menu a:hover {
    opacity: 1;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    opacity: 1 !important;
}

.nav-cta:hover {
    background: var(--primary-light);
}

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

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #0a5a7f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-caption {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

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

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

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

.btn-full {
    width: 100%;
    text-align: center;
}

/* ============================================
   Trust Badges
   ============================================ */
.trust-badges {
    padding: 60px 24px;
    background: var(--bg-secondary);
}

.trust-badges .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px;
    background: var(--bg);
    border-radius: 24px;
    border: 2px solid rgba(9, 121, 177, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.trust-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.badge-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.badge-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.badge-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

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

    .badge-item {
        padding: 20px;
    }
}

/* ============================================
   Intro
   ============================================ */
.intro {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.intro-text {
    font-size: 21px;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
}

.intro-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   Certifications
   ============================================ */
.certifications {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.cert-card {
    background: var(--bg);
    padding: 40px 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

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

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
}

.cert-icon.sesam {
    background: #ffffff;
}

.cert-icon.scor {
    background: #ffffff;
}

.cert-icon.adri {
    background: #ffffff;
}

.cert-icon.apcv {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.cert-logo {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}

.cert-icon.sesam .cert-logo {
    max-width: 160px;
    max-height: 160px;
}

.cert-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cert-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   Section Titles
   ============================================ */
.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 21px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 64px;
}

/* ============================================
   Features
   ============================================ */
.features {
    padding: 120px 24px;
    background: var(--bg-secondary);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 32px;
    background: var(--bg);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-block:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon {
    font-size: 120px;
    opacity: 0.9;
    color: var(--primary);
}

.visual-icon svg {
    width: 96px;
    height: 96px;
}

.platform-icons {
    display: flex;
    gap: 32px;
    font-size: 80px;
}

.feature-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.feature-text p {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.feature-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 17px;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 20px;
}

/* ============================================
   Pricing
   ============================================ */
.pricing {
    padding: 120px 24px;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    margin-top: 64px;
}

.pricing-card {
    background: var(--bg);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow);
    position: relative;
}

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

.pricing-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.pricing-card h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.pricing-features {
    margin-bottom: 32px;
}

.feature-group {
    margin-bottom: 32px;
}

.feature-group h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.pricing-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 20px;
    font-weight: 900;
}

.pricing-options {
    display: grid;
    gap: 16px;
}

.option-card {
    background: var(--bg);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.option-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.option-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.option-card li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 16px;
    color: var(--text-secondary);
}

.option-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900;
}

/* ============================================
   Team
   ============================================ */
.team {
    padding: 120px 24px;
    background: var(--bg);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 64px;
    align-items: center;
}

.team-row {
    display: flex;
    justify-content: space-evenly;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.member-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 56px rgba(9, 121, 177, 0.3);
}

.user-icon {
    width: 70px;
    height: 70px;
    color: white;
}

.photo-placeholder {
    font-size: 64px;
    font-weight: 800;
    color: white;
}

.photo-silhouette {
    font-size: 80px;
}

.team-member h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-member p {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.team-support {
    text-align: center;
    padding: 48px;
    background: var(--bg-secondary);
    border-radius: 24px;
}

.team-support p {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.team-support strong {
    color: var(--text);
}

/* ============================================
   Contact
   ============================================ */
.contact {
    padding: 120px 24px;
    background: var(--bg-secondary);
}

.contact-form {
    background: var(--bg);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 48px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition);
    background: var(--bg);
    color: var(--text);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230979b1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-group select option {
    padding: 10px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(9, 121, 177, 0.1);
}

.contact-info {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
}

.contact-item span {
    font-size: 24px;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text);
    color: white;
    padding: 64px 24px 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.footer-logo {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ============================================
   Legal Page
   ============================================ */
.legal-page {
    padding: 120px 24px 80px;
    background: var(--bg);
    min-height: calc(100vh - 400px);
}

.legal-content {
    background: var(--bg-secondary);
    padding: 48px;
    border-radius: 24px;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text);
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.back-link {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-block {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 24px;
        padding: 32px 24px;
    }

    .feature-block.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: var(--bg);
        flex-direction: column;
        padding: 32px 24px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

    /* Hero section */
    .hero {
        padding: 80px 24px 60px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Sections */
    section {
        padding: 60px 24px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 48px;
    }

    /* Feature icons - reduce size on mobile */
    .visual-icon svg {
        width: 64px;
        height: 64px;
    }

    .feature-block {
        padding: 24px 20px;
        margin-bottom: 20px;
    }

    .feature-title {
        font-size: 22px;
    }

    /* Certifications */
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cert-card {
        padding: 24px 20px;
    }

    /* Trust badges */
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .badge-item {
        padding: 20px;
    }

    .badge-icon svg {
        width: 40px;
        height: 40px;
    }

    /* Pricing */
    .pricing-card {
        padding: 32px 24px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 32px;
    }

    .member-photo {
        width: 120px;
        height: 120px;
    }

    .photo-placeholder {
        font-size: 48px;
    }

    /* Contact form */
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 32px 24px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 480px) {
    /* Hero - smaller text on very small screens */
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* Sections - reduce padding further */
    section {
        padding: 48px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .trust-title {
        font-size: 16px;
    }

    /* Feature icons - even smaller on tiny screens */
    .visual-icon svg {
        width: 56px;
        height: 56px;
    }

    .feature-title {
        font-size: 20px;
    }

    /* Certifications */
    .cert-card h3 {
        font-size: 20px;
    }

    .cert-card p {
        font-size: 15px;
    }

    /* Trust badges */
    .badge-icon svg {
        width: 36px;
        height: 36px;
    }

    /* Pricing */
    .pricing-card {
        padding: 24px 20px;
    }

    .price {
        font-size: 32px;
    }

    /* Team */
    .team-support {
        padding: 24px 20px;
    }

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

    /* Contact form */
    .contact-form {
        padding: 24px 20px;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ============================================
   TeamViewer Floating Button & Modal
   ============================================ */

/* Bouton flottant TeamViewer */
.teamviewer-floating-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #0979b1;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(9, 121, 177, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
}

.teamviewer-floating-btn:hover {
    background: #075d8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(9, 121, 177, 0.5);
}

.teamviewer-floating-btn svg {
    stroke: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 24px;
    padding: 48px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.modal-close svg {
    stroke: var(--text);
}

.modal-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.modal-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--bg-secondary);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.download-btn:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.download-btn > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.download-btn strong {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.download-btn span {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Responsive TeamViewer Button */
@media (max-width: 768px) {
    .teamviewer-floating-btn {
        display: none;
    }

    .modal-content {
        padding: 32px 24px;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    .download-btn {
        padding: 16px 20px;
        gap: 16px;
    }

    .download-btn svg {
        width: 40px;
        height: 40px;
    }

    .download-btn strong {
        font-size: 16px;
    }
}
