    <style>

    /* Reset & Base */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --background: #fafafa;
        --foreground: #171717;
        --card: #ffffff;
        --card-foreground: #171717;
        --primary: #027E6F;
        --primary-hover: #015E52;
        --primary-foreground: #ffffff;
        --secondary: #f5f5f5;
        --secondary-foreground: #171717;
        --muted: #f5f5f5;
        --muted-foreground: #737373;
        --accent: #f0f0f0;
        --accent-foreground: #171717;
        --border: #e5e5e5;
        --input: #e5e5e5;
        --ring: #15803d;
        --chart-2: #ca8a04;
        --chart-4: #eab308;
        --chart-5: #ea580c;
        --radius: 0.75rem;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', system-ui, sans-serif;
        background-color: var(--background);
        color: var(--foreground);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    button {
        font-family: inherit;
        cursor: pointer;
        border: none;
        background: none;
    }

    input {
        font-family: inherit;
    }

    /* Utility Classes */
    .container {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    @media (min-width: 640px) {
        .container {
            padding: 0 1.5rem;
        }
    }

    @media (min-width: 1024px) {
        .container {
            padding: 0 2rem;
        }
    }

    @media (max-width: 600px) {
        .container {
            padding: 0;
        }
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        font-weight: 500;
        border-radius: var(--radius);
        transition: all 0.2s;
    }

    .btn-primary {
        background-color: var(--primary);
        color: var(--primary-foreground);
    }

    .btn-primary:hover {
        background-color: var(--primary-hover);
    }

    .btn-outline {
        background-color: transparent;
        border: 1px solid var(--border);
        color: var(--foreground);
    }

    .btn-outline:hover {
        background-color: var(--muted);
    }

    .btn-ghost {
        background-color: transparent;
        color: var(--muted-foreground);
    }

    .btn-ghost:hover {
        background-color: var(--muted);
        color: var(--foreground);
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .btn-secondary {
        background-color: var(--secondary);
        color: var(--secondary-foreground);
    }

    .btn-secondary:hover {
        background-color: var(--accent);
    }

    /* Header */
    .header {
        position: sticky;
        top: 0;
        z-index: 50;
        width: 100%;
        border-bottom: 1px solid var(--border);
        background-color: rgba(250, 250, 250, 0.95);
        backdrop-filter: blur(8px);
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 4rem;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .logo-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        border-radius: 0.5rem;
        background-color: var(--primary);
        color: var(--primary-foreground);
        font-weight: 700;
        font-size: 1.125rem;
    }

    .logo-text {
        font-size: 1.25rem;
        font-weight: 700;
        letter-spacing: -0.025em;
    }

    .nav {
        display: none;
        align-items: center;
        gap: 2rem;
    }

    @media (min-width: 768px) {
        .nav {
            display: flex;
        }
    }

    .nav-link {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--muted-foreground);
        transition: color 0.2s;
    }

    .nav-link:hover {
        color: var(--foreground);
    }

    .header-actions {
        display: none;
        align-items: center;
        gap: 1rem;
    }

    @media (min-width: 768px) {
        .header-actions {
            display: flex;
        }
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
    }

    @media (min-width: 768px) {
        .mobile-menu-btn {
            display: none;
        }
    }

    .mobile-menu {
        display: none;
        border-top: 1px solid var(--border);
        padding: 1rem;
        background-color: var(--background);
    }

    .mobile-menu.active {
        display: block;
    }

    @media (min-width: 768px) {
        .mobile-menu {
            display: none !important;
        }
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .mobile-nav-link {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--muted-foreground);
    }

    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 1rem;
        margin-top: 1rem;
        border-top: 1px solid var(--border);
    }

    /* Hero Section */
    .hero {
        position: relative;
        overflow: hidden;
        padding: 4rem 0;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: -1;
    }

    .hero-bg-gradient {
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 1200px;
        height: 600px;
        border-radius: 50%;
        background: rgba(21, 128, 61, 0.05);
        filter: blur(100px);
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    @media (min-width: 1024px) {
        .hero-grid {
            gap: 2rem;
        }
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        margin-bottom: 0;
        font-size: 2.25rem;
        font-weight: 700;
        letter-spacing: -0.025em;
        line-height: 1.1;
        text-wrap: balance;
        text-align: center;
    }

    @media (min-width: 640px) {
        .hero-title {
            font-size: 3rem;
        }
    }

    @media (min-width: 1024px) {
        .hero-title {
            font-size: 3.75rem;
        }
    }

    .hero-title-accent {
        color: var(--primary);
    }

    .hero-description {
        margin-top: 1.5rem;
        font-size: 1.125rem;
        line-height: 1.75;
        color: var(--muted-foreground);
        text-align: center;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hero-note {
        margin-top: 1rem;
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .hero-form-wrapper {
        padding-left: 0;
    }


    .hero-form {
        position: relative;
        max-width: 28rem;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 1rem;
        border: 1px solid var(--border);
        background-color: var(--card);
        padding: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    @media (min-width: 1024px) {
        .hero-form {
            margin: 0;
        }
    }

    .form-step {
        display: none;
    }

    .form-step.active {
        display: block;
        animation: fadeUp 0.6s ease-out forwards;
    }

    @keyframes fadeUp {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .form-header h2 {
        font-size: 1.25rem;
        font-weight: 600;
    }

    .form-header p {
        margin-top: 0.25rem;
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .form-group {
        margin-top: 1.5rem;
    }

    .form-label {
        display: block;
        font-size: 0.875rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .form-input {
        width: 100%;
        height: 3rem;
        padding: 0 0 0 1rem;
        font-size: 0.875rem;
        border: 1px solid var(--input);
        border-radius: var(--radius);
        background-color: var(--background);
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    .form-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.1);
    }

    .form-hint {
        margin-top: 0.5rem;
        font-size: 0.75rem;
        color: var(--muted-foreground);
    }

    .form-examples {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
        font-size: 0.75rem;
        color: var(--muted-foreground);
    }

    .form-example-btn {
        color: var(--primary);
        transition: text-decoration 0.2s;
    }

    .form-example-btn:hover {
        text-decoration: underline;
    }

    .form-submit {
        margin-top: 1.5rem;
        width: 100%;
    }

    .channel-preview {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        border-radius: 0.75rem;
        border: 1px solid var(--border);
        background-color: var(--muted);
        margin-top: 1.5rem;
    }

    .channel-avatar {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 50%;
        background-color: rgba(21, 128, 61, 0.1);
        color: var(--primary);
        font-weight: 700;
        font-size: 1.25rem;
    }

    .channel-info {
        flex: 1;
    }

    .channel-name {
        font-weight: 600;
    }

    .channel-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 0.25rem;
        font-size: 0.75rem;
        color: var(--muted-foreground);
    }

    .channel-stat {
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .form-buttons {
        display: flex;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .form-buttons .btn:last-child {
        flex: 1;
    }

    .verify-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 4rem;
        height: 4rem;
        margin: 0 auto;
        border-radius: 50%;
        background-color: rgba(21, 128, 61, 0.1);
    }

    .verify-content {
        text-align: center;
    }

    .verify-content h2 {
        margin-top: 1.5rem;
        font-size: 1.25rem;
        font-weight: 600;
    }

    .verify-content p {
        margin-top: 0.5rem;
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .verify-note {
        margin-top: 1rem;
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .verify-note strong {
        color: var(--primary);
    }

    .google-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
        margin-top: 1.5rem;
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background-color: var(--card);
        font-weight: 500;
        transition: background-color 0.2s;
    }

    .google-btn:hover {
        background-color: var(--muted);
    }

    .google-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .hero-invite-note {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 0.75rem;
        border: 1px solid rgba(21, 128, 61, 0.2);
        background-color: rgba(21, 128, 61, 0.05);
        text-align: center;
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .hero-invite-note strong {
        color: var(--foreground);
    }

    /* Stats Section */
    .stats {
        padding: 4rem 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        background-color: rgba(245, 245, 245, 0.3);
    }

    .stats-label {
        margin-bottom: 2.5rem;
        text-align: center;
        font-size: 0.875rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--muted-foreground);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    @media (min-width: 1024px) {
        .stats-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .stat-item {
        text-align: center;
    }

    .stat-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        margin: 0 auto 1rem;
        border-radius: 50%;
        background-color: rgba(21, 128, 61, 0.1);
    }

    .stat-value {
        font-size: 1.875rem;
        font-weight: 700;
        letter-spacing: -0.025em;
    }

    @media (min-width: 640px) {
        .stat-value {
            font-size: 2.25rem;
        }
    }

    .stat-label {
        margin-top: 0.25rem;
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    /* How It Works */
    .how-it-works {
        padding: 5rem 0;
    }

    @media (min-width: 1024px) {
        .how-it-works {
            padding: 7rem 0;
        }
    }

    .section-header {
        max-width: 42rem;
        margin: 0 auto;
        text-align: center;
    }

    .section-title {
        font-size: 1.875rem;
        font-weight: 700;
        letter-spacing: -0.025em;
    }

    @media (min-width: 640px) {
        .section-title {
            font-size: 2.25rem;
        }
    }

    .section-description {
        margin-top: 1rem;
        font-size: 1.125rem;
        color: var(--muted-foreground);
    }

    .steps-grid {
        display: grid;
        gap: 2rem;
        margin-top: 4rem;
    }

    @media (min-width: 1024px) {
        .steps-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    .step-card {
        position: relative;
        padding: 2rem;
        border-radius: 1rem;
        border: 1px solid var(--border);
        background-color: var(--card);
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    .step-card:hover {
        border-color: rgba(21, 128, 61, 0.5);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .step-number {
        position: absolute;
        top: -1rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background-color: var(--primary);
        color: var(--primary-foreground);
        font-size: 0.875rem;
        font-weight: 700;
    }

    .step-content {
        margin-top: 1rem;
    }

    .step-title {
        font-size: 1.25rem;
        font-weight: 600;
    }

    .step-description {
        margin-top: 0.75rem;
        color: var(--muted-foreground);
        line-height: 1.6;
    }

    .step-arrow {
        display: none;
        position: absolute;
        right: -30px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--border);
    }

    @media (min-width: 1024px) {
        .step-arrow {
            display: block;
        }
    }

    /* Features Section */
    .features {
        padding: 5rem 0;
        background-color: rgba(245, 245, 245, 0.2);
    }

    @media (min-width: 1024px) {
        .features {
            padding: 7rem 0;
        }
    }

    .feature-row {
        display: grid;
        gap: 3rem;
        align-items: center;
    }

    @media (min-width: 1024px) {
        .feature-row {
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
    }

    .feature-row+.feature-row {
        margin-top: 6rem;
    }

    .feature-content {
        max-width: 32rem;
    }

    .feature-badge {
        display: inline-block;
        padding: 0.375rem 1rem;
        border-radius: 9999px;
        font-size: 0.875rem;
        font-weight: 500;
    }

    .feature-badge-primary {
        background-color: rgba(21, 128, 61, 0.1);
        color: var(--primary);
    }

    .feature-badge-secondary {
        background-color: rgba(202, 138, 4, 0.2);
        color: var(--chart-2);
    }

    .feature-title {
        margin-top: 1.5rem;
        font-size: 1.875rem;
        font-weight: 700;
        letter-spacing: -0.025em;
    }

    @media (min-width: 640px) {
        .feature-title {
            font-size: 2.25rem;
        }
    }

    .feature-description {
        margin-top: 1rem;
        font-size: 1.125rem;
        line-height: 1.6;
        color: var(--muted-foreground);
    }

    .feature-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
        color: var(--primary);
        font-weight: 500;
        transition: gap 0.2s;
    }

    .feature-link:hover {
        gap: 0.75rem;
    }

    .feature-visual {
        border-radius: 1rem;
        border: 1px solid var(--border);
        background-color: var(--card);
        padding: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .feature-visual-alt {
        background-color: rgba(21, 128, 61, 0.05);
    }

    .visual-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .visual-card {
        padding: 1.25rem;
        border-radius: 0.75rem;
        border: 1px solid var(--border);
        background-color: rgba(245, 245, 245, 0.3);
    }

    .visual-card-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .visual-card-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 0.5rem;
    }

    .visual-card-icon-primary {
        background-color: rgba(21, 128, 61, 0.1);
        color: var(--primary);
    }

    .visual-card-icon-secondary {
        background-color: rgba(202, 138, 4, 0.2);
        color: var(--chart-2);
    }

    .visual-card-label {
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .visual-card-value {
        margin-top: 0.75rem;
        font-size: 1.5rem;
        font-weight: 700;
    }

    .visual-card-trend {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        margin-top: 0.25rem;
        font-size: 0.875rem;
        color: #16a34a;
    }

    .visual-card-progress {
        margin-top: 0.75rem;
        height: 0.5rem;
        border-radius: 9999px;
        background-color: var(--muted);
        overflow: hidden;
    }

    .visual-card-progress-bar {
        height: 100%;
        border-radius: 9999px;
        background: linear-gradient(to right, var(--primary), rgba(21, 128, 61, 0.6));
    }

    .visual-card-progress-bar-secondary {
        background: linear-gradient(to right, var(--chart-2), var(--chart-4));
    }

    .visual-card-full {
        grid-column: span 2;
    }

    .visual-chart {
        display: flex;
        align-items: flex-end;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .visual-chart-bar {
        flex: 1;
        background-color: rgba(21, 128, 61, 0.2);
        border-radius: 0.25rem 0.25rem 0 0;
        transition: background-color 0.2s;
    }

    .visual-chart-bar:hover {
        background-color: rgba(21, 128, 61, 0.4);
    }

    .visual-card-inner {
        padding: 1.25rem;
        border-radius: 0.75rem;
        border: 1px solid var(--border);
        background-color: var(--card);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .visual-card-inner-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .visual-card-inner-label {
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .visual-card-inner-trend {
        font-size: 0.875rem;
        font-weight: 500;
        color: #16a34a;
    }

    .visual-card-inner-value {
        margin-top: 0.5rem;
        font-size: 1.875rem;
        font-weight: 700;
    }

    .visual-card-inner-sublabel {
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .feature-row-reverse .feature-content {
        order: 1;
    }

    @media (min-width: 1024px) {
        .feature-row-reverse .feature-content {
            order: 2;
        }

        .feature-row-reverse .feature-visual {
            order: 1;
        }
    }

    /* Categories */
    .categories {
        padding: 5rem 0;
    }

    @media (min-width: 1024px) {
        .categories {
            padding: 7rem 0;
        }
    }

    .categories-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 4rem;
    }

    @media (min-width: 640px) {
        .categories-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .categories-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .category-card {
        padding: 1.5rem;
        border-radius: 1rem;
        border: 1px solid var(--border);
        background-color: var(--card);
        transition: border-color 0.2s, box-shadow 0.2s;
    }

    .category-card:hover {
        border-color: rgba(21, 128, 61, 0.5);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .category-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        border-radius: 0.75rem;
    }

    .category-title {
        margin-top: 1rem;
        font-weight: 600;
    }

    .category-description {
        margin-top: 0.5rem;
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    /* Trust Section */
    .trust {
        padding: 4rem 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        background-color: rgba(245, 245, 245, 0.3);
    }

    .trust-label {
        margin-bottom: 2.5rem;
        text-align: center;
        font-size: 0.875rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--muted-foreground);
    }

    .trust-marquee-wrapper {
        position: relative;
        overflow: hidden;
    }

    .trust-marquee {
        display: flex;
        gap: 4rem;
        animation: marquee 30s linear infinite;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .trust-brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1.25rem;
        font-weight: 600;
        color: rgba(115, 115, 115, 0.6);
        white-space: nowrap;
    }

    .trust-brand-icon {
        font-size: 28px;
        font-weight: 700;
    }

    /* Testimonial */
    .testimonial {
        padding: 5rem 0;
    }

    @media (min-width: 1024px) {
        .testimonial {
            padding: 7rem 0;
        }
    }

    .testimonial-card {
        max-width: 56rem;
        margin: 0 auto;
        padding: 2rem;
        border-radius: 1.5rem;
        border: 1px solid var(--border);
        background-color: var(--card);
        text-align: center;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    @media (min-width: 640px) {
        .testimonial-card {
            padding: 3rem;
        }
    }

    @media (min-width: 1024px) {
        .testimonial-card {
            padding: 4rem;
        }
    }

    .testimonial-stars {
        display: flex;
        justify-content: center;
        gap: 0.25rem;
    }

    .testimonial-star {
        fill: var(--primary) !important;
        color: var(--primary);
    }

    .testimonial-quote {
        margin-top: 2rem;
        font-size: 1.25rem;
        font-weight: 500;
        line-height: 1.6;
    }

    @media (min-width: 640px) {
        .testimonial-quote {
            font-size: 1.5rem;
        }
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .testimonial-avatar {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 50%;
        background-color: rgba(21, 128, 61, 0.1);
        color: var(--primary);
        font-size: 1.125rem;
        font-weight: 700;
    }

    .testimonial-info {
        text-align: left;
    }

    .testimonial-name {
        font-weight: 600;
    }

    .testimonial-role {
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    /* FAQ */
    .faq {
        padding: 5rem 0;
        background-color: rgba(245, 245, 245, 0.2);
    }

    @media (min-width: 1024px) {
        .faq {
            padding: 7rem 0;
        }
    }

    .faq-inner {
        max-width: 48rem;
        margin: 0 auto;
    }

    .faq-list {
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .faq-item {
        border-radius: 0.75rem;
        border: 1px solid var(--border);
        background-color: var(--card);
        overflow: hidden;
        transition: border-color 0.2s;
    }

    .faq-item:hover {
        border-color: rgba(21, 128, 61, 0.3);
    }

    .faq-button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1.5rem;
        text-align: left;
        font-weight: 500;
    }

    .faq-button span {
        flex: 1;
    }

    .faq-icon {
        transition: transform 0.2s;
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }

    .faq-answer {
        display: none;
        padding: 0 1.5rem 1.5rem;
        border-top: 1px solid var(--border);
        color: var(--muted-foreground);
    }

    .faq-item.active .faq-answer {
        display: block;
        padding-top: 1rem;
    }

    /* CTA */
    .cta {
        padding: 5rem 0;
        background-color: var(--primary);
    }

    @media (min-width: 1024px) {
        .cta {
            padding: 7rem 0;
        }
    }

    .cta-inner {
        max-width: 56rem;
        margin: 0 auto;
        text-align: center;
    }

    .cta-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 4rem;
        height: 4rem;
        margin: 0 auto;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .cta-title {
        margin-top: 2rem;
        font-size: 1.875rem;
        font-weight: 700;
        letter-spacing: -0.025em;
        color: var(--primary-foreground);
    }

    @media (min-width: 640px) {
        .cta-title {
            font-size: 2.25rem;
        }
    }

    .cta-description {
        margin-top: 1rem;
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .cta-actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .cta-actions span {
        color: rgba(255, 255, 255, 0.6);
    }

    .btn-cta-outline {
        border-color: rgba(255, 255, 255, 0.3);
        color: var(--primary-foreground);
        background-color: transparent;
    }

    .btn-cta-outline:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .cta-note {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
    }

    /* Footer */
    .footer {
        border-top: 1px solid var(--border);
        background-color: var(--background);
    }

    .footer-inner {
        padding: 3rem 0;
    }

    @media (min-width: 1024px) {
        .footer-inner {
            padding: 4rem 0;
        }
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    @media (min-width: 640px) {
        .footer-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (min-width: 1024px) {
        .footer-grid {
            grid-template-columns: repeat(6, 1fr);
        }
    }

    .footer-brand {
        grid-column: span 2;
    }

    @media (min-width: 640px) {
        .footer-brand {
            grid-column: span 3;
        }
    }

    @media (min-width: 1024px) {
        .footer-brand {
            grid-column: span 1;
        }
    }

    .footer-tagline {
        margin-top: 1rem;
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .footer-col h3 {
        font-size: 0.875rem;
        font-weight: 600;
    }

    .footer-col ul {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        list-style: none;
        padding-left: 0;
    }

    .footer-col a {
        font-size: 0.875rem;
        color: var(--muted-foreground);
        transition: color 0.2s;
    }

    .footer-col a:hover {
        color: var(--foreground);
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding-top: 2rem;
        margin-top: 3rem;
        border-top: 1px solid var(--border);
    }

    @media (min-width: 640px) {
        .footer-bottom {
            flex-direction: row;
        }
    }

    .footer-copyright {
        font-size: 0.875rem;
        color: var(--muted-foreground);
    }

    .footer-legal {
        display: flex;
        gap: 1.5rem;
    }

    .footer-legal a {
        font-size: 0.875rem;
        color: var(--muted-foreground);
        transition: color 0.2s;
    }

    .footer-legal a:hover {
        color: var(--foreground);
    }

    /* Icons (SVG inline) */
    .icon {
        width: 1.5rem;
        height: 1.5rem;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .icon-sm {
        width: 1rem;
        height: 1rem;
    }

    .icon-lg {
        width: 2rem;
        height: 2rem;
    }

    .icon-fill {
        fill: currentColor;
        stroke: none;
    }

    </style>