﻿/* ===========================================
   GigManager Shared Styles
   =========================================== */

:root {
    --primary: #007872;
    --primary-dark: #005f5a;
    --primary-light: #e6f4f3;
    --accent: #ff6b35;
    --text-dark: #1a2b3c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #f8fafa;
    --bg-gradient: linear-gradient(135deg, #f8fafa 0%, #e6f4f3 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,120,114,0.1);
    --shadow-lg: 0 10px 40px rgba(0,120,114,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* ===========================================
   Navigation
   =========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,120,114,0.1);
    padding: 0 2rem;
    transition: all 0.3s ease;
    overflow: visible;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    z-index: 1002;
}
    .logo img {
        height: 45px;
        width: auto;
    }
    .logo .logoimg2 {
        height: 50px;
        width: auto;
    }

        .navbar .logo-text {
            font-family: 'Outfit', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
        }

        .logo-text span:first-child {
            color: var(--primary);
        }

        .logo-text span:last-child {
            color: var(--text-dark);
        }
        /* Desktop Navigation */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

            .nav-links li {
                list-style: none;
            }

            .nav-links a {
                text-decoration: none;
                color: var(--text-medium);
                font-weight: 500;
                font-size: 0.95rem;
                transition: color 0.2s;
            }

                .nav-links a:hover {
                    color: var(--primary);
                }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-btn {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--primary);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: var(--radius-sm);
            font-weight: 500;
            cursor: pointer;
            border: none;
            font-size: 0.95rem;
            transition: all 0.2s;
            font-family: 'Source Sans 3', sans-serif;
        }

            .nav-dropdown-btn:hover {
                background: var(--primary-dark);
            }

            .nav-dropdown-btn svg {
                width: 16px;
                height: 16px;
                transition: transform 0.2s;
            }

        .nav-dropdown:hover .nav-dropdown-btn svg {
            transform: rotate(180deg);
        }

        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 0.5rem;
            background: white;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s;
            overflow: hidden;
            z-index: 1001;
        }

        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 0.8rem 1.2rem;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s;
            border-bottom: 1px solid var(--bg-light);
        }

            .nav-dropdown-menu a:last-child {
                border-bottom: none;
            }

            .nav-dropdown-menu a:hover {
                background: var(--primary-light);
                color: var(--primary);
            }
        /* Hamburger Menu Button - Hidden on Desktop */
        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1002;
            -webkit-tap-highlight-color: transparent;
        }

        .hamburger-line {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-dark);
            border-radius: 2px;
            transition: all 0.3s ease;
            pointer-events: none;
        }

            .hamburger-line:nth-child(1) {
                margin-bottom: 6px;
            }

            .hamburger-line:nth-child(3) {
                margin-top: 6px;
            }
        /* Hamburger animation when open */
        .nav-toggle-open .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .nav-toggle-open .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle-open .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        /* Mobile overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

            .nav-overlay.overlay-visible {
                opacity: 1;
                visibility: visible;
            }
        /* ===========================================
   Mobile Navigation Panel
   =========================================== */

        .nav-mobile-panel {
            display: none;
            position: fixed;
            top: 64px;
            right: 0;
            bottom: 0;
            width: 280px;
            max-width: 85vw;
            background: white;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
            box-shadow: -4px 0 20px rgba(0,0,0,0.15);
            z-index: 999;
            border-top: 1px solid rgba(0,120,114,0.1);
        }

            .nav-mobile-panel.nav-mobile-open {
                transform: translateX(0);
            }

        .nav-mobile-links {
            list-style: none;
            margin: 0;
            padding: 1rem 0 2rem 0;
        }

            .nav-mobile-links li {
                border-bottom: 1px solid #edf2f7;
            }

                .nav-mobile-links li:last-child {
                    border-bottom: none;
                    padding: 0.5rem 1.5rem 0;
                }

            .nav-mobile-links > li > a {
                display: block;
                padding: 1rem 1.5rem;
                font-size: 1.1rem;
                color: var(--text-dark);
                text-decoration: none;
                font-weight: 500;
                transition: background 0.2s, color 0.2s;
            }

                .nav-mobile-links > li > a:hover {
                    background: var(--primary-light);
                    color: var(--primary);
                }
        /* Mobile dropdown */
        .nav-mobile-dropdown {
            padding: 0 1.5rem;
        }

            .nav-mobile-dropdown .nav-dropdown-btn {
                width: 100%;
                justify-content: center;
                padding: 1rem;
                font-size: 1rem;
                margin: 0.5rem 0;
            }

        .nav-mobile-dropdown-menu {
            background: var(--bg-light);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            margin: 0 -1.5rem;
        }

            .nav-mobile-dropdown-menu.dropdown-open {
                max-height: 400px;
            }

            .nav-mobile-dropdown-menu a {
                display: block;
                padding: 0.875rem 1.5rem;
                font-size: 0.95rem;
                color: var(--text-dark);
                text-decoration: none;
                border-bottom: 1px solid #e2e8f0;
                transition: background 0.2s, color 0.2s;
            }

                .nav-mobile-dropdown-menu a:last-child {
                    border-bottom: none;
                }

                .nav-mobile-dropdown-menu a:hover {
                    background: var(--primary-light);
                    color: var(--primary);
                }

        .nav-dropdown-btn.dropdown-btn-open svg {
            transform: rotate(180deg);
        }
        /* ===========================================
   Language Flags
   =========================================== */

        .lang-flags {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            margin-right: 0.5rem;
        }

            .lang-flags a {
                display: block;
                opacity: 0.5;
                transition: opacity 0.2s, transform 0.2s;
                line-height: 0;
            }

                .lang-flags a:hover {
                    opacity: 0.8;
                    transform: scale(1.1);
                }

                .lang-flags a.active {
                    opacity: 1;
                }

            .lang-flags img {
                width: 20px;
                height: 13px;
                display: block;
                border-radius: 2px;
                box-shadow: 0 1px 2px rgba(0,0,0,0.1);
            }
        /* Mobile Language Flags */
        .lang-flags-mobile {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            margin-right: 0.75rem;
        }

            .lang-flags-mobile a {
                display: block;
                opacity: 0.5;
                transition: opacity 0.2s;
                line-height: 0;
            }

                .lang-flags-mobile a.active {
                    opacity: 1;
                }

            .lang-flags-mobile img {
                width: 18px;
                height: 13px;
                display: block;
                border-radius: 2px;
                box-shadow: 0 1px 2px rgba(0,0,0,0.1);
            }
        /* Mobile actions container - hidden on desktop */
        .nav-mobile-actions {
            display: none;
            align-items: center;
            gap: 0.5rem;
        }
        /* ===========================================
   Buttons
   =========================================== */

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 1.8rem;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
            font-family: 'Source Sans 3', sans-serif;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 14px rgba(0,120,114,0.3);
        }

            .btn-primary:hover {
                background: var(--primary-dark);
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(0,120,114,0.35);
            }

        .btn-secondary {
            background: white;
            color: var(--text-dark);
            border: 2px solid #e2e8f0;
        }

            .btn-secondary:hover {
                border-color: var(--primary);
                color: var(--primary);
            }
        /* ===========================================
   Section Headers
   =========================================== */

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .section-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-medium);
        }
        /* ===========================================
   Page Header (for subpages)
   =========================================== */

        .page-header {
            padding: 8rem 2rem 4rem;
            background: var(--bg-gradient);
            text-align: center;
        }

            .page-header h1 {
                font-size: 3rem;
                color: var(--text-dark);
                margin-bottom: 1rem;
            }

            .page-header p {
                font-size: 1.2rem;
                color: var(--text-medium);
                max-width: 600px;
                margin: 0 auto;
            }
        /* ===========================================
   Hero Section
   =========================================== */

        .hero {
            min-height: calc(100vh - 50px);
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            background: var(--bg-gradient);
            position: relative;
            overflow: hidden;
        }

            .hero::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -20%;
                width: 80%;
                height: 150%;
                background: radial-gradient(ellipse, rgba(0,120,114,0.08) 0%, transparent 70%);
                pointer-events: none;
            }

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--primary);
            box-shadow: var(--shadow-sm);
            margin-bottom: 1.5rem;
        }

            .hero-badge::before {
                content: '';
                width: 8px;
                height: 8px;
                background: var(--accent);
                border-radius: 50%;
            }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

            .hero h1 span {
                color: var(--primary);
            }

        .hero-description {
            font-size: 1.2rem;
            color: var(--text-medium);
            margin-bottom: 2rem;
            max-width: 520px;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-visual {
            position: relative;
        }

        .hero-image-container {
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            padding: 1.5rem;
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
            transition: transform 0.4s ease;
        }

            .hero-image-container:hover {
                transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
            }
        /* Hero Screenshot / Agenda */
        .hero-screenshot {
            width: 100%;
            background: white;
            border-radius: var(--radius-md);
            position: relative;
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }

        .agenda-header {
            padding: 0.875rem 1rem;
            background: var(--bg-light);
            border-bottom: 1px solid #e2e8f0;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .agenda-item {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid #f0f4f4;
        }

            .agenda-item:last-child {
                border-bottom: none;
            }

        .agenda-date {
            text-align: center;
            min-width: 42px;
        }

            .agenda-date .day {
                font-family: 'Outfit', sans-serif;
                font-size: 1.2rem;
                font-weight: 700;
                color: var(--text-dark);
                line-height: 1;
            }

            .agenda-date .month {
                font-size: 0.65rem;
                color: var(--text-light);
                text-transform: uppercase;
                letter-spacing: 0.02em;
            }

        .agenda-color {
            width: 4px;
            height: 36px;
            border-radius: 2px;
            flex-shrink: 0;
        }

        .agenda-details {
            flex: 1;
            min-width: 0;
        }

            .agenda-details h5 {
                font-size: 0.8rem;
                font-weight: 600;
                color: var(--text-dark);
                margin-bottom: 0.1rem;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .agenda-details p {
                font-size: 0.7rem;
                color: var(--text-light);
            }

        .agenda-time {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-medium);
            flex-shrink: 0;
        }

        .agenda-status {
            font-size: 0.6rem;
            padding: 0.2rem 0.5rem;
            border-radius: 20px;
            font-weight: 600;
            flex-shrink: 0;
        }

            .agenda-status.signed {
                background: #d1fae5;
                color: #065f46;
            }

            .agenda-status.pending {
                background: #fef3c7;
                color: #92400e;
            }
        /* Floating Cards */
        .floating-card {
            position: absolute;
            background: white;
            border-radius: var(--radius-md);
            padding: 1rem 1.2rem;
            box-shadow: var(--shadow-md);
            animation: float 3s ease-in-out infinite;
        }

        .floating-card-1 {
            top: -20px;
            right: -30px;
            animation-delay: 0s;
        }

        .floating-card-2 {
            bottom: 40px;
            left: -40px;
            animation-delay: 1.5s;
        }

        .floating-card-icon {
            width: 32px;
            height: 32px;
            background: var(--primary-light);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .floating-card-text {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .floating-card-sub {
            font-size: 0.7rem;
            color: var(--text-light);
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }
        /* ===========================================
   Trusted By Section
   =========================================== */

        .trusted-by {
            padding: 3rem 2rem;
            background: white;
            border-bottom: 1px solid #edf2f7;
        }

        .trusted-by-inner {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .trusted-by-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 2rem;
        }

        .trusted-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }

            .trusted-logos a {
                opacity: 0.6;
                filter: grayscale(100%);
                transition: all 0.3s;
            }

                .trusted-logos a:hover {
                    opacity: 1;
                    filter: grayscale(0%);
                }

        .trusted-logo {
            height: 75px;
            width: auto;
            object-fit: contain;
            max-width: 140px;
        }
        /* ===========================================
   Who It's For / Audience Section
   =========================================== */

        .audience {
            padding: 5rem 2rem;
            background: white;
        }

        .audience-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .audience-card {
            text-align: center;
            padding: 2.5rem 2rem;
            background: var(--bg-light);
            border-radius: var(--radius-md);
            border: 2px solid transparent;
            transition: all 0.3s;
        }

            .audience-card:hover {
                border-color: var(--primary-light);
                background: white;
                box-shadow: var(--shadow-md);
            }

        .audience-icon {
            width: 64px;
            height: 64px;
            background: var(--primary);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
        }

        .audience-card h3 {
            font-size: 1.25rem;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }

        .audience-card p {
            color: var(--text-medium);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        /* ===========================================
   Features Section
   =========================================== */

        .features {
            padding: 6rem 2rem;
            background: white;
        }

        .features-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: var(--bg-light);
            border-radius: var(--radius-md);
            padding: 2rem;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

            .feature-card:hover {
                background: white;
                border-color: var(--primary-light);
                box-shadow: var(--shadow-md);
                transform: translateY(-4px);
            }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: var(--primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }

        .feature-card p {
            color: var(--text-medium);
            font-size: 0.95rem;
        }
        /* ===========================================
   Benefits Section
   =========================================== */

        .benefits {
            padding: 6rem 2rem;
            background: var(--bg-gradient);
        }

        .benefits-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .benefits-content h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

            .benefits-content h2 span {
                color: var(--primary);
            }

        .benefits-list {
            list-style: none;
        }

            .benefits-list li {
                display: flex;
                align-items: flex-start;
                gap: 1rem;
                margin-bottom: 1.5rem;
            }

        .benefit-check {
            width: 24px;
            height: 24px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

            .benefit-check svg {
                width: 14px;
                height: 14px;
                color: white;
            }

        .benefit-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            color: var(--text-dark);
        }

        .benefit-text p {
            color: var(--text-medium);
            font-size: 0.95rem;
        }

        .benefits-visual {
            background: white;
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-lg);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .stat-card {
            text-align: center;
            padding: 1.5rem;
            background: var(--bg-light);
            border-radius: var(--radius-md);
        }

        .stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-medium);
        }
        /* ===========================================
   Testimonials
   =========================================== */

        .testimonials {
            padding: 6rem 2rem;
            background: white;
        }

        .testimonials-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--bg-light);
            border-radius: var(--radius-md);
            padding: 2rem;
            position: relative;
        }

        .testimonial-quote {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .testimonial-info h4 {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 0.2rem;
        }

        .testimonial-info p {
            font-size: 0.85rem;
            color: var(--text-light);
        }
        /* ===========================================
   CTA Section
   =========================================== */

        .cta {
            padding: 6rem 2rem;
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }

            .cta::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 40%);
            }

        .cta-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1rem;
        }

        .cta p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
        }

        .cta .btn-primary {
            background: white;
            color: var(--primary);
        }

            .cta .btn-primary:hover {
                background: #f8fafa;
            }
        /* ===========================================
   Footer
   =========================================== */

        .footer {
            padding: 4rem 2rem 2rem;
            background: var(--text-dark);
            color: rgba(255,255,255,0.7);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-brand .logo-text {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

            .footer-brand .logo-text span:first-child {
                color: #4fd1c5;
            }

            .footer-brand .logo-text span:last-child {
                color: white;
            }

        .footer-brand p {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .footer-heading {
            color: white;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

            .footer-links li {
                margin-bottom: 0.75rem;
            }

            .footer-links a {
                color: rgba(255,255,255,0.7);
                text-decoration: none;
                font-size: 0.9rem;
                transition: color 0.2s;
            }

                .footer-links a:hover {
                    color: white;
                }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }

            .footer-legal a {
                color: rgba(255,255,255,0.5);
                text-decoration: none;
                transition: color 0.2s;
            }

                .footer-legal a:hover {
                    color: white;
                }
        /* ===========================================
   Responsive - Tablet
   =========================================== */

        @media (max-width: 992px) {
            .hero-inner,
            .benefits-inner {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .features-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .audience-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-top {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        /* ===========================================
   Responsive - Mobile
   =========================================== */

        @media (max-width: 768px) {
            .navbar {
                padding: 0 1rem;
            }
            .logo img {
                height: 30px;
                width: auto;
            }
            .navbar-inner {
                height: 64px;
            }
            /* Show hamburger button on mobile */
            .nav-toggle {
                display: flex;
            }
            /* Hide desktop navigation on mobile */
            .nav-desktop {
                display: none !important;
            }
            /* Show overlay on mobile */
            .nav-overlay {
                display: block;
            }
            /* Show mobile panel on mobile screens */
            .nav-mobile-panel {
                display: block;
            }
            /* Show mobile actions (flags + hamburger) */
            .nav-mobile-actions {
                display: flex;
            }
            /* Hide desktop language flags on mobile */
            .lang-flags {
                display: none;
            }
            /* Hero mobile */
            .hero {
                padding: 6rem 1.5rem 3rem;
                min-height: auto;
            }

            .hero-inner {
                display: flex;
                flex-direction: column;
                gap: 2rem;
            }
            /* Use display:contents to allow reordering nested elements */
            .hero-content {
                display: contents;
            }
            /* Order: badge, title, description, then calendar, then buttons */
            .hero-badge {
                order: 0;
                margin-left: auto;
                margin-right: auto;
            }

            .hero h1 {
                order: 1;
                font-size: 2rem;
                text-align: center;
            }

            .hero-description {
                order: 2;
                font-size: 1rem;
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-visual {
                order: 3;
            }

            .hero-cta {
                order: 4;
                flex-direction: column;
                align-items: center;
            }

                .hero-cta .btn {
                    width: 100%;
                    max-width: 300px;
                    justify-content: center;
                }
            /* Make calendar preview smaller on mobile */
            .hero-image-container {
                transform: none;
                padding: 1rem;
                max-width: 340px;
                margin: 0 auto;
            }

                .hero-image-container:hover {
                    transform: none;
                }
            /* Hide floating cards on mobile */
            .floating-card {
                display: none;
            }

            .agenda-header {
                font-size: 0.8rem;
                padding: 0.75rem 1rem;
            }

            .agenda-item {
                padding: 0.6rem 0.75rem;
                gap: 0.6rem;
            }

            .agenda-date .day {
                font-size: 1rem;
            }

            .agenda-date .month {
                font-size: 0.6rem;
            }

            .agenda-details h5 {
                font-size: 0.75rem;
            }

            .agenda-details p {
                font-size: 0.65rem;
            }

            .agenda-time {
                font-size: 0.7rem;
            }

            .agenda-status {
                font-size: 0.55rem;
                padding: 0.15rem 0.4rem;
            }
            /* Section adjustments */
            .section-header {
                margin-bottom: 2rem;
            }

            .section-label {
                font-size: 0.75rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }
            /* Trusted logos mobile */
            .trusted-by {
                padding: 2rem 1.5rem;
            }

            .trusted-by-label {
                font-size: 0.75rem;
                margin-bottom: 1.5rem;
            }

            .trusted-logos {
                gap: 1.25rem 1.5rem;
            }

            .trusted-logo {
                height: 32px;
                max-width: 100px;
            }
            /* Audience section mobile */
            .audience {
                padding: 3rem 1.5rem;
            }

            .audience-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .audience-card {
                padding: 1.5rem;
                text-align: left;
                display: flex;
                gap: 1rem;
                align-items: flex-start;
            }

            .audience-icon {
                width: 48px;
                height: 48px;
                margin: 0;
                flex-shrink: 0;
            }

                .audience-icon svg {
                    width: 24px;
                    height: 24px;
                }

            .audience-card h3 {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }

            .audience-card p {
                font-size: 0.9rem;
            }
            /* Features section mobile */
            .features-section {
                overflow-x: hidden;
                max-width: 100vw;
            }
            .features {
                padding: 3rem 1.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                max-width: 100%;
                padding: 0 1rem;
            }

            .feature-card {
                max-width: 100%;
                min-width: 0;
                word-wrap: break-word;
            }

                .feature-card:hover {
                    transform: none;
                }

            .feature-icon {
                width: 48px;
                height: 48px;
                margin-bottom: 0;
                flex-shrink: 0;
            }

                .feature-icon svg {
                    width: 24px;
                    height: 24px;
                }

            .feature-card h3 {
                font-size: 1.1rem;
                margin-bottom: 0.5rem;
            }

            .feature-card p {
                font-size: 0.9rem;
            }
            .section-inner {
                max-width: 100%;
                padding: 0 1rem;
            }
            /* Benefits section mobile */
            .benefits {
                padding: 3rem 1.5rem;
            }

            .benefits-inner {
                gap: 2.5rem;
            }

            .benefits-content h2 {
                font-size: 1.5rem;
                text-align: center;
            }

            .benefits-list li {
                margin-bottom: 1.25rem;
            }

            .benefit-text h4 {
                font-size: 1rem;
            }

            .benefit-text p {
                font-size: 0.9rem;
            }

            .benefits-visual {
                padding: 1.5rem;
            }

            .stats-grid {
                gap: 1rem;
            }

            .stat-card {
                padding: 1.25rem 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.85rem;
            }
            /* Testimonials mobile */
            .testimonials {
                padding: 3rem 1.5rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .testimonial-quote {
                font-size: 1rem;
                margin-bottom: 1.25rem;
            }

            .testimonial-avatar {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .testimonial-info h4 {
                font-size: 0.95rem;
            }

            .testimonial-info p {
                font-size: 0.8rem;
            }
            /* CTA mobile */
            .cta {
                padding: 3rem 1.5rem;
            }

                .cta h2 {
                    font-size: 1.5rem;
                }

                .cta p {
                    font-size: 1rem;
                    margin-bottom: 1.5rem;
                }

                .cta .btn {
                    width: 100%;
                    max-width: 300px;
                    justify-content: center;
                }
            /* Footer mobile */
            .footer {
                padding: 3rem 1.5rem 2rem;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-brand {
                text-align: center;
            }

                .footer-brand .logo-text {
                    justify-content: center;
                }

            .footer-contact-item {
                justify-content: center;
            }

            .footer-heading {
                margin-bottom: 1rem;
            }

            .footer-links li {
                margin-bottom: 0.5rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }
            /* Page header mobile */
            .page-header {
                padding: 6rem 1.5rem 3rem;
            }

                .page-header h1 {
                    font-size: 1.75rem;
                }

                .page-header p {
                    font-size: 1rem;
                }
        }
        /* ===========================================
   Responsive - Small Mobile
   =========================================== */

        @media (max-width: 480px) {
            .navbar {
                padding: 0 0.75rem;
            }

                .navbar .logo-text {
                    font-size: 1.5rem;
                }

            .hero {
                padding: 5.5rem 1rem 2.5rem;
            }

                .hero h1 {
                    font-size: 1.6rem;
                }

            .hero-description {
                font-size: 0.95rem;
            }

            .hero-badge {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }

            .section-title {
                font-size: 1.35rem;
            }

            .audience,
            .features,
            .benefits,
            .testimonials {
                padding: 2.5rem 1rem;
            }

            .audience-card,
            .feature-card,
            .testimonial-card {
                padding: 1.25rem;
            }

            .benefits-content h2,
            .cta h2 {
                font-size: 1.35rem;
            }

            .stat-number {
                font-size: 1.75rem;
            }

            .cta {
                padding: 2.5rem 1rem;
            }

            .footer {
                padding: 2.5rem 1rem 1.5rem;
            }

            .page-header {
                padding: 5.5rem 1rem 2.5rem;
            }

                .page-header h1 {
                    font-size: 1.5rem;
                }
        }

        .announcement-banner {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border-bottom: 2px solid var(--primary);
            padding: 12px 20px;
            font-size: 0.95rem;
            line-height: 1.5;
            position: fixed;
            top: 72px; /* Höjden på navbar */
            left: 0;
            right: 0;
            z-index: 999;
        }
/* Demo button - accent color */
.btn-demo {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}

    .btn-demo:hover {
        background: #e55a2b;
        border-color: #e55a2b;
        color: white;
    }