    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
        line-height: 1.6;
        color: #333;
        background: #f5f5f5;
    }

    button {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header */
    header {
        background: rgba(255, 255, 255, 0.8);
        padding: 20px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 100;
        backdrop-filter: blur(5px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;

        text-decoration: none;
    }

    .logo__image {
        max-width: 100px;
    }

    nav {
        display: flex;
        gap: 30px;
    }

    nav a {
        text-decoration: none;
        color: #666;
        font-weight: 500;
        transition: color 0.3s;
    }

    nav a:hover {
        color: #1a1a1a;
    }

    /* Hero Section */
    .hero {
        /* background: #f7f7f7; */
        background-image: linear-gradient(#f4f4f4, #fefefe);
        padding: 80px 0;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero-content img,
    .audience-content img {
        height: 500px !important;
        object-fit: cover !important;
    }

    .hero-left {
        padding-right: 40px;
    }

    .trust-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #dfdfdf;
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 30px;
    }

    .hero h1 {
        font-size: 56px;
        line-height: 1.1;
        margin-bottom: 20px;
        color: #1a1a1a;
    }

    .hero-description {
        font-size: 18px;
        color: #666;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .cta-buttons {
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
    }

    .btn {
        padding: 16px 32px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        text-decoration: none;
        display: inline-block;
    }

    .btn-primary {
        /* background: #1a1a1a; */
        background-image: linear-gradient(#005df4, #0d6cfc);
        color: white;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .btn-secondary {
        background: white;
        color: #1a1a1a;
        border: 1px solid #e0e0e0;
    }

    .btn-secondary:hover {
        border-color: #1a1a1a;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .btn.btn--google {
        padding: 8px 16px;
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        color: rgba(0, 0, 0, 0.7);

        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 2em;

        transition: .3s;
    }

    .btn--google:hover {
        opacity: .75;
    }

    .features {
        display: flex;
        gap: 20px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #666;
    }

    .feature-item svg {
        width: 20px;
    }

    .hero-image {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .hero-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Stats Section */
    .stats {
        background: #fcfcfc;
        padding: 60px 0;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        text-align: center;
    }

    .stat-item h3 {
        font-size: 48px;
        font-weight: bold;
        color: #1a1a1a;
    }

    .stat-item p {
        color: #666;
        font-size: 16px;
    }

    /* How It Works section styles */
    .how-it-works {
        background: #fff;
        padding: 100px 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-header h2 {
        font-size: 48px;
        margin-bottom: 15px;
        color: #1a1a1a;
    }

    .section-header p {
        font-size: 20px;
        color: #666;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .step-card {
        background: white;
        padding: 40px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        transition: .3s;
        border: 1px solid #e5e5e5;
    }

    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid #a7a7a7;
    }

    .step-number {
        width: 60px;
        height: 60px;
        /* background: #e7e7e7; */
        /* color: #000; */
        background-color: #0069ff;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: bold;
        margin: 0 auto 25px;
    }

    .step-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
        color: #1a1a1a;
    }

    .step-card p {
        color: #666;
        font-size: 16px;
        line-height: 1.6;
    }

    /* Why Choose Brandly section styles */
    .why-choose {
        background: #fcfcfc;
        padding: 100px 0;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .feature-card {
        text-align: center;
        padding: 30px 20px;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background: #f0f0f0;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        margin: 0 auto 20px;
        transition: background 0.3s;
    }

    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #1a1a1a;
    }

    .feature-card p {
        color: #666;
        font-size: 15px;
    }

    /* For Creators/Brands section styles */
    .target-audience {
        background: #f9f9f9;
        padding: 100px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .audience-section {
        margin-bottom: 80px;
    }

    .audience-section:last-child {
        margin-bottom: 0;
    }

    .audience-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .audience-content.reverse {
        direction: rtl;
    }

    .audience-content.reverse>* {
        direction: ltr;
    }

    .audience-text h2 {
        font-size: 42px;
        margin-bottom: 20px;
        color: #1a1a1a;
    }

    .audience-text p {
        font-size: 18px;
        color: #666;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .benefits-list {
        margin-bottom: 30px;
    }

    .benefit-item {
        display: flex;
        align-items: start;
        gap: 15px;
        margin-bottom: 20px;
    }

    .benefit-icon {
        width: 24px;
        height: 24px;
        background: #10b981;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .benefit-item h4 {
        font-size: 18px;
        margin-bottom: 5px;
        color: #1a1a1a;
    }

    .benefit-item p {
        font-size: 15px;
        color: #666;
        margin: 0;
    }

    .audience-image {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .audience-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Testimonials section styles */
    .testimonials {
        background: white;
        padding: 100px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .testimonial-card {
        background: #f9f9f9;
        padding: 40px;
        border-radius: 16px;
        transition: transform 0.3s, box-shadow 0.3s;
        border: 1px solid #e5e5e5;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .stars {
        margin-bottom: 20px;

        display: flex;
        gap: 5px;
    }

    .stars img {
        width: 20px;
    }

    .quote {
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        margin-bottom: 25px;
    }

    .author {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        background: #1a1a1a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 16px;
    }

    .author img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 100%;
    }

    .author-info h4 {
        font-size: 16px;
        margin-bottom: 3px;
        color: #1a1a1a;
    }

    .author-info p {
        font-size: 14px;
        color: #666;
    }

    /* Final CTA section styles */
    .final-cta {
        /* background: linear-gradient(135deg, #1a1a1a 0%, #333 100%); */
        background: linear-gradient(135deg, #333 0%, #005df4 50%, #333 100%);
        padding: 100px 0;
        text-align: center;
        color: white;
    }

    .final-cta h2 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .final-cta p {
        font-size: 20px;
        margin-bottom: 40px;
        opacity: 0.9;
    }

    .final-cta .cta-buttons {
        justify-content: center;
    }

    .final-cta .btn-primary {
        background: white;
        color: #1a1a1a;
    }

    .final-cta .btn-primary:hover {
        background: #f0f0f0;
    }

    .final-cta .btn-secondary {
        background-color: transparent;
        border-color: white;
        color: white;
    }

    .final-cta .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .wrapper {
        min-height: 100dvh;

        display: flex;
        flex-direction: column;
    }

    .success-section {
        margin-top: auto;
    }

    .success-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .success-content .success-icon {
        margin-bottom: 0;
    }

    /* Form Modal */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1000;
        overflow-y: auto;
        padding: 20px;
    }

    .modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-content {
        background: white;
        border-radius: 20px;
        padding: 50px;
        max-width: 600px;
        width: 100%;
        position: relative;
        animation: slideUp 0.3s ease-out;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .close-modal {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #f0f0f0;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        font-size: 20px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s;
        padding-bottom: 5px;
    }

    .close-modal:hover {
        background: #e0e0e0;
    }

    .modal-content h2 {
        font-size: 32px;
        margin-bottom: 10px;
        color: #1a1a1a;
    }

    .modal-content .subtitle {
        color: #666;
        margin-bottom: 40px;
        font-size: 16px;
    }

    .form-step {
        display: none;
    }

    .form-step.active {
        display: block;
        animation: fadeIn 0.3s;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .form-group {
        margin-bottom: 30px;
    }

    .form-group label {
        display: flex;
        margin-bottom: 10px;
        font-weight: 600;
        color: #1a1a1a;
        font-size: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 16px;
        transition: border-color 0.3s;
        font-family: inherit;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #1a1a1a;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .radio-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .radio-option {
        padding: 14px 16px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .radio-option--disabled {
        opacity: .35;
    }

    .radio-option:hover {
        border-color: #1a1a1a;
        background: #f9f9f9;
    }

    .radio-option input[type="radio"],
    .radio-option input[type="checkbox"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .radio-option.selected {
        border-color: #1a1a1a;
        background: #f5f5f5;
    }

    .form-navigation {
        display: flex;
        gap: 15px;
        margin-top: 30px;
    }

    .form-navigation button {
        flex: 1;
    }

    .btn-back {
        background: #f0f0f0;
        color: #1a1a1a;
    }

    .btn-back:hover {
        background: #e0e0e0;
    }

    .progress-bar {
        height: 4px;
        background: #e0e0e0;
        border-radius: 2px;
        margin-bottom: 30px;
        overflow: hidden;
    }

    .progress-fill {
        height: 100%;
        background: #1a1a1a;
        transition: width 0.3s;
    }

    /* Success Page */
    .success-page {
        display: none;
        text-align: center;
        padding: 60px 20px;
    }

    .success-page.active {
        display: block;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        background: #10b981;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        font-size: 40px;
        color: white;
    }

    .success-page h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .success-page p {
        font-size: 18px;
        color: #666;
        margin-bottom: 30px;
    }

    /* Mobile Notice */
    .mobile-notice {
        display: none;
        background: #fff3cd;
        padding: 20px;
        border-radius: 8px;
        margin-top: 20px;
        color: #856404;
        text-align: center;
    }

    /* Responsive */
    @media (max-width: 968px) {

        .hero-content img,
        .audience-content img {
            height: unset !important;
            object-fit: unset !important;
        }

        .hero-content,
        .audience-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .hero h1,
        .audience-text h2 {
            font-size: 42px;
        }

        .stats-grid,
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .steps-grid,
        .testimonials-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        nav {
            display: none;
        }

        .modal-content {
            padding: 30px;
        }

        .audience-content.reverse {
            direction: ltr;
        }
    }

    @media (max-width: 640px) {
        .hero h1 {
            font-size: 36px;
        }

        .section-header h2,
        .final-cta h2 {
            font-size: 36px;
        }

        .cta-buttons {
            flex-direction: column;
        }

        .stats-grid,
        .features-grid {
            grid-template-columns: 1fr;
        }

        .stat-item h3 {
            font-size: 36px;
        }
    }

    .footer {
        margin-top: auto;
        background-color: #f8f8f8;
        padding: 60px 20px 20px 20px;
        border-top: 1px solid #e0e0e0;
        font-family: "Inter", sans-serif;
        color: #333;
    }

    .footer__container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer__column {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer__column--brand {
        max-width: 300px;
    }

    .footer__logo {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
    }

    .footer__logo-icon {
        background: linear-gradient(135deg, #3b82f6, #9333ea);
        color: #fff;
        font-weight: bold;
        font-size: 18px;
        border-radius: 8px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer__logo-text {
        font-weight: 700;
        font-size: 20px;
        color: #111;
    }

    .footer__description {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-top: 8px;
    }

    .footer__title {
        font-weight: 600;
        font-size: 16px;
        color: #111;
    }

    .footer__list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer__link {
        text-decoration: none;
        color: #666;
        font-size: 14px;
        transition: color 0.2s ease;
    }

    .footer__link:hover {
        color: #111;
    }

    .footer__bottom {
        border-top: 1px solid #e0e0e0;
        padding-top: 20px;
        text-align: center;
    }

    .footer__copyright {
        font-size: 13px;
        color: #999;
    }