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

    h2 {
        font-size: 20px !important;
        line-height: 1.3;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
        background: #0f0f12;
        color: #e4e4e7;
        line-height: 1.6;
    }

    /* Navigation */
    .navbar {
        background: linear-gradient(to bottom, #111111, #18181b);
        border-bottom: 1px solid #27272a;
        padding: 16px 24px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

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

    .nav-logo {
        font-size: 24px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }

    .nav-logo i {
        color: #068fff;
    }

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

    .nav-links a {
        text-decoration: none;
        color: #a1a1a1;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: #fff;
    }

    .nav-buttons {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .btn {
        padding: 10px 20px;
        border-radius: 8px;
        border: none;
        font-weight: 600;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .btn-secondary {
        background: transparent;
        color: #a1a1a1;
        border: 1px solid #27272a;
    }

    .btn-secondary:hover {
        border-color: #3f3f46;
        color: #fff;
    }

    .btn-primary {
        background: linear-gradient(135deg, #ec4899, #8b5cf6, #06b6d4);
        color: #fff;
    }

    .btn-primary:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        background: linear-gradient(135deg, rgba(15, 15, 18, 0.85) 0%, rgba(15, 15, 18, 0.8) 50%, rgba(15, 15, 18, 0.85) 100%), url('guitar.jpg');
        background-size: cover;
        background-position: center right;
        background-attachment: fixed;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        padding: 80px 24px;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 20s ease-in-out infinite;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 25s ease-in-out infinite reverse;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-30px);
        }
    }

    .hero-content {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        padding-left:20px;
    }

    .hero-text h1 {
        font-size: 56px;
        font-weight: 800;
        margin-bottom: 24px;
        line-height: 1.2;
        background: linear-gradient(135deg, #fff 0%, #a1a1a1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-text p {
        font-size: 18px;
        color: #a1a1a1;
        margin-bottom: 32px;
        line-height: 1.8;
    }

    .hero-buttons {
        display: flex;
        gap: 16px;
        margin-bottom: 48px;
    }

    .hero-buttons .btn {
        padding: 14px 32px;
        font-size: 16px;
    }

    .hero-stats {
        display: flex;
        gap: 40px;
        margin-top: 48px;
        padding-top: 32px;
        border-top: 1px solid #27272a;
    }

    .stat-item h3 {
        font-size: 32px;
        font-weight: 700;
        background: linear-gradient(135deg, #ec4899, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 8px;
    }

    .stat-item p {
        color: #71717a;
        font-size: 14px;
    }

    .hero-visual {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-card {
        width: 320px;
        height: 420px;
        background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
        border: 1px solid #27272a;
        border-radius: 20px;
        padding: 32px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        position: relative;
        animation: slideUp 1s ease-out;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-card-icon {
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, #ec4899, #8b5cf6);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: #fff;
    }

    .hero-card h3 {
        font-size: 20px;
        font-weight: 700;
    }

    .hero-card p {
        color: #a1a1a1;
        font-size: 14px;
        line-height: 1.6;
    }

    /* Services Section */
    .services {
        padding: 120px 24px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(236, 72, 153, 0.03) 100%);
    }

    .section-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 80px;
    }

    .section-header h2 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 16px;
        background: linear-gradient(135deg, #fff 0%, #a1a1a1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-header p {
        font-size: 18px;
        color: #a1a1a1;
    }

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

    .service-card {
        background: linear-gradient(135deg, rgba(27, 27, 31, 0.8), rgba(39, 39, 42, 0.4));
        border: 1px solid #27272a;
        border-radius: 16px;
        padding: 40px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .service-card:hover {
        border-color: #3f3f46;
        transform: translateY(-8px);
        background: linear-gradient(135deg, rgba(27, 27, 31, 0.9), rgba(39, 39, 42, 0.6));
    }

    .service-icon {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, #ec4899, #8b5cf6);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #fff;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .service-card p {
        color: #a1a1a1;
        font-size: 14px;
        line-height: 1.6;
    }

    .service-card ul {
        margin-top: 16px;
        list-style: none;
    }

    .service-card li {
        color: #71717a;
        font-size: 13px;
        padding: 6px 0;
        padding-left: 20px;
        position: relative;
    }

    .service-card li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #06b6d4;
        font-weight: bold;
    }

    /* Features Section */
    .features {
        padding: 120px 24px;
        background: linear-gradient(135deg, rgba(15, 15, 18, 0.9) 0%, rgba(15, 15, 18, 0.88) 50%, rgba(15, 15, 18, 0.9) 100%), url('woman-singing.avif');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        position: relative;
    }

    .features-content {
        max-width: 1400px;
        margin: 0 auto;
    }

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

    .feature-item {
        background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(139, 92, 246, 0.05));
        border: 1px solid #27272a;
        border-radius: 12px;
        padding: 24px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        border-color: #3f3f46;
        background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    }

    .feature-icon {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .feature-item h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .feature-item p {
        color: #a1a1a1;
        font-size: 13px;
        line-height: 1.6;
    }

    /* App Promotion Section */
    .app-promotion-wrapper {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .app-promotion-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        margin-top: 80px;
    }

    .app-features-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .app-feature-item {
        display: flex;
        gap: 16px;
    }

    .app-feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
        flex-shrink: 0;
    }

    .app-feature-content h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #fff;
    }

    .app-feature-content p {
        color: #a1a1a1;
        font-size: 14px;
    }

    .app-download-buttons {
        margin-top: 48px;
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .app-download-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 24px;
        background: #000;
        border: 1px solid #27272a;
        border-radius: 12px;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .app-download-btn:hover {
        border-color: #3f3f46;
        background: #18181b;
    }

    .app-download-btn-text {
        text-align: left;
    }

    .app-download-btn-label {
        font-size: 10px;
        color: #71717a;
    }

    .app-phone-mockup-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .app-phone-frame {
        position: relative;
        width: 300px;
        height: 600px;
    }

    .app-phone-body {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        border-radius: 40px;
        border: 8px solid #000;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        overflow: hidden;
        position: relative;
    }

    .app-phone-notch {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 28px;
        background: #000;
        border-radius: 0 0 24px 24px;
        z-index: 10;
    }

    .app-phone-screen {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #18181b 0%, #0f0f12 100%);
        padding: 40px 16px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        overflow-y: auto;
    }

    /* CTA Section */
    .cta {
        padding: 120px 24px;
        background: linear-gradient(135deg, rgba(15, 15, 18, 0.92) 0%, rgba(15, 15, 18, 0.9) 50%, rgba(15, 15, 18, 0.92) 100%), url('ready-to-connect.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        text-align: center;
        position: relative;
    }

    .cta-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .cta h2 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #fff 0%, #a1a1a1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .cta p {
        font-size: 18px;
        color: #a1a1a1;
        margin-bottom: 40px;
    }

    .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Footer */
    .footer {
        background: linear-gradient(to bottom, #18181b, #111111);
        border-top: 1px solid #27272a;
        padding: 60px 24px 20px;
        color: #71717a;
    }

    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
        margin-top: 40px;
        padding-left:10px;
    }

    .footer-section h3 {
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .footer-section a {
        display: block;
        color: #71717a;
        text-decoration: none;
        font-size: 13px;
        margin-bottom: 10px;
        transition: color 0.3s ease;
    }

    .footer-section a:hover {
        color: #fff;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #27272a;
        font-size: 13px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .nav-content {
            justify-content: space-between;
            gap: 12px;
        }

        .nav-links {
            display: none;
        }

        .nav-buttons {
            gap: 8px;
        }

        .nav-buttons .btn {
            padding: 8px 14px;
            font-size: 12px;
        }

        .btn-secondary {
            display: inline-block;
        }

        .nav-buttons .btn-primary {
            display: inline-block;
        }

        .nav-buttons .btn-secondary {
            margin-right: 0;
        }

        .hero-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .hero-text h1 {
            font-size: 36px;
        }

        .section-header h2 {
            font-size: 32px;
        }

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

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

        .app-promotion-grid {
            grid-template-columns: 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .app-features-list {
            gap: 16px;
        }

        .app-feature-item {
            gap: 12px;
        }

        .app-feature-icon {
            width: 40px;
            height: 40px;
            font-size: 18px;
        }

        .app-feature-content h4 {
            font-size: 14px;
        }

        .app-feature-content p {
            font-size: 12px;
        }

        .app-download-buttons {
            margin-top: 24px;
            gap: 12px;
        }

        .app-download-btn {
            padding: 12px 16px;
            font-size: 12px;
            flex: 1;
            min-width: 120px;
        }

        .app-phone-frame {
            width: 200px;
            height: 400px;
        }

        .app-phone-body {
            border: 6px solid #000;
        }

        .app-phone-screen {
            padding: 24px 12px;
            gap: 12px;
        }

        .cta h2 {
            font-size: 32px;
        }

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

    @media (max-width: 480px) {
        .app-promotion-grid {
            grid-template-columns: 1fr;
            gap: 24px;
            margin-top: 24px;
        }

        .app-features-list {
            gap: 12px;
        }

        .app-feature-item {
            gap: 8px;
        }

        .app-feature-icon {
            width: 36px;
            height: 36px;
            font-size: 16px;
        }

        .app-feature-content h4 {
            font-size: 13px;
        }

        .app-feature-content p {
            font-size: 11px;
        }

        .app-download-buttons {
            margin-top: 16px;
            flex-direction: column;
            gap: 8px;
        }

        .app-download-btn {
            padding: 10px 12px;
            font-size: 11px;
            width: 100%;
        }

        .app-phone-frame {
            width: 160px;
            height: 320px;
        }

        .app-phone-body {
            border: 4px solid #000;
        }

        .app-phone-notch {
            width: 100px;
            height: 20px;
        }

        .app-phone-screen {
            padding: 16px 8px;
            gap: 8px;
        }
    }