    :root {
        --primary-color: #2563EB;
        /* Vibrant Blue */
        --primary-dark: #1E40AF;
        --primary-light: #60A5FA;
        --secondary-color: #F3F4F6;
        --text-color: #1F2937;
        --text-light: #6B7280;
        --white: #FFFFFF;
        --success: #10B981;
        --border-radius: 12px;
        --container-width: 1200px;
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

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

    body {
        font-family: 'Inter', sans-serif;
        color: var(--text-color);
        line-height: 1.6;
        background-color: #F9FAFB;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s;
    }

    ul {
        list-style: none;
    }

    .container {
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    /* Typography */
    h1,
    h2,
    h3,
    h4,
    h5 {
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    @media (max-width: 768px) {
        h1 {
            font-size: 2rem;
        }

        h2 {
            font-size: 1.75rem;
        }
    }

    /* Utilities */
    .btn {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: var(--border-radius);
        font-weight: 500;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn--primary {
        background-color: var(--primary-color);
        color: var(--white);
        box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
    }

    .btn--primary:hover {
        background-color: var(--primary-dark);
        transform: translateY(-1px);
    }

    .btn--lg {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }

    .btn--icon {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
    }

    .btn--icon svg {
        transition: transform 0.3s ease;
    }

    .btn--icon:hover svg {
        transform: translateX(4px);
    }

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

    .text-white {
        color: var(--white);
    }

    .btn--white {
        background-color: white;
        color: var(--primary-color);
        border: 2px solid white;
        font-weight: 600;
    }

    .btn--white:hover {
        background-color: transparent;
        color: white;
        transform: translateY(-1px);
    }

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

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

    /* Header */
    .header {
        background-color: var(--white);
        border-bottom: 1px solid #E5E7EB;
        position: sticky;
        top: 0;
        z-index: 100;
        padding: 1rem 0;
    }

    .header__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--primary-color);
    }

    .nav__list {
        display: flex;
        gap: 2rem;
    }

    .nav__link {
        font-weight: 500;
        color: var(--text-light);
    }

    .nav__link:hover {
        color: var(--primary-color);
    }

    @media (max-width: 768px) {
        .nav {
            display: none;
        }

        /* Simplified mobile for now */
        /* .header__btn kept visible */
    }

    /* Hero Section */
    .hero {
        padding: 5rem 0;
        background: radial-gradient(circle at top right, #DBEAFE, transparent 40%),
            radial-gradient(circle at bottom left, #E0E7FF, transparent 40%);
        overflow: hidden;
    }

    .hero__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .hero__title {
        font-size: 3.5rem;
        color: #111827;
        margin-bottom: 1.5rem;
        letter-spacing: -0.05em;
    }

    .hero__subtitle {
        font-size: 1.25rem;
        color: var(--text-light);
        margin-bottom: 2rem;
        max-width: 540px;
        margin-left: 0;
        text-align: left;
    }

    .hero__note {
        font-size: 0.875rem;
        color: var(--primary-color);
        margin-top: 1rem;
        font-weight: 600;
    }

    .hero__benefits {
        margin-top: 3rem;
        display: flex;
        gap: 2rem;
        color: var(--text-light);
    }


    .benefit {
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        font-size: 0.9rem;
    }

    .benefit .icon {
        color: var(--primary-color);
        font-weight: bold;
        margin-right: 0.5rem;
    }

    @media (max-width: 900px) {
        .hero__container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero__subtitle {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .hero__benefits {
            justify-content: center;
        }

        .hero__visual {
            margin-top: 2rem;
        }
    }

    /* Hero Image Visual */
    .hero__visual {
        position: relative;
        perspective: 1000px;
        display: flex;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        max-width: 800px;
        /* Adjust based on image quality/size */
        border-radius: 20px;
        box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.25);
        transform: rotateY(-10deg) rotateX(5deg);
        transition: transform 0.5s ease;
        object-fit: contain;
        background: white;
        /* Optional safety background */
    }

    .hero-image:hover {
        transform: rotateY(0) rotateX(0);
    }

    /* Sections */
    .section {
        padding: 5rem 0;
    }

    .section--light {
        background-color: white;
    }

    .section--primary {
        background-color: var(--primary-color);
        background: linear-gradient(rgba(37, 99, 235, 0.85), rgba(30, 64, 175, 0.9)), url('../assets/images/pricing-bg.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        /* Optional: classic parallax feel */
        color: white;
    }

    /* Utilities Addition */
    .text-primary {
        color: var(--primary-color);
    }

    .text-underline {
        text-decoration: underline;
        text-decoration-color: #DC2626;
        /* Red underline */
        text-decoration-thickness: 2px;
    }

    .section__title--lg {
        font-size: 2.5rem;
    }

    .section__header {
        text-align: center;
        margin-bottom: 4rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .section__title {
        font-weight: 800;
        color: #111827;
        letter-spacing: -0.02em;
    }

    .section--primary .section__title {
        color: var(--white);
    }

    .section__desc {
        font-size: 1.25rem;
        color: var(--text-light);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 1rem;
    }

    /* Requirements Card */
    .requirements-card {
        background: white;
        border: 2px solid #E5E7EB;
        border-radius: 16px;
        padding: 3rem;
        box-shadow: var(--shadow-md);
        max-width: 900px;
        margin: 0 auto;
    }

    .requirements-text {
        font-size: 1.25rem;
        color: var(--text-color);
        margin-bottom: 2rem;
        line-height: 1.8;
    }

    .alert-box--danger {
        background-color: #FEF2F2;
        border: 2px solid #FCA5A5;
        color: #991B1B;
        padding: 1.5rem;
        border-radius: 12px;
        font-size: 1.1rem;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

    .alert-box--danger strong {
        /* Deprecated, kept for safety or remove if unused */
        color: #DC2626;
        font-weight: 800;
        text-transform: uppercase;
    }

    .alert-icon {
        flex-shrink: 0;
        color: #DC2626;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .alert-content {
        display: flex;
        flex-direction: column;
    }

    .mt-2 {
        margin-top: 0.5rem;
    }

    /* Steps */
    .steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 6rem;
    }

    .step-card {
        background: white;
        padding: 2.5rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
        border-top: 5px solid var(--primary-color);
        transition: transform 0.3s ease;
    }

    .step-card:hover {
        transform: translateY(-5px);
    }

    .step-card__number {
        font-size: 5rem;
        font-weight: 900;
        color: rgba(37, 99, 235, 0.1);
        position: absolute;
        top: 10px;
        right: 20px;
        line-height: 1;
    }

    .step-card__title {
        position: relative;
        margin-bottom: 1rem;
        color: var(--primary-color);
        font-size: 1.5rem;
        max-width: 80%;
        /* Ensure text doesn't overlap number if responsive wrap fails */
    }

    .step-card__text {
        position: relative;
        color: var(--text-light);
        font-size: 1.1rem;
    }

    /* Pricing */
    .pricing-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pricing-cards {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        justify-content: center;
        margin-top: 5rem;
    }

    @media (min-width: 900px) {
        .pricing-cards {
            flex-direction: row;
            align-items: stretch;
        }
    }

    .pricing-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--white);
        padding: 3rem;
        border-radius: 24px;
        width: 100%;
        max-width: 450px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    /* Glass shine effect */
    .pricing-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
        pointer-events: none;
    }

    .pricing-card__title {
        text-align: left;
        font-size: 2.5rem;
        /* Larger like the reference */
        font-family: 'Times New Roman', serif;
        /* Trying to match the sleek serif vibe from reference if desired, or stick to Inter but bolder. Let's stick to Inter for consistency but make it thin/elegant or just Bold. The reference URL had a serif 'Startup'. Let's keep Inter for brand consistency but make it large. */
        font-family: 'Inter', sans-serif;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 0.5rem;
        letter-spacing: -0.02em;
    }

    .pricing-card__desc {
        text-align: left;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .pricing-card__features {
        margin-top: 2rem;
    }

    .pricing-card__features-title {
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--white);
    }

    .pricing-card__features ul li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .pricing-price {
        font-size: 2rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 0.5rem;
    }

    .pricing-note {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .pricing-card__action {
        margin-top: 2.5rem;
        text-align: center;
    }

    .pricing-coming-soon {
        display: block;
        width: 100%;
        background: rgba(255, 255, 255, 0.2);
        color: var(--white);
        padding: 1rem;
        border-radius: 12px;
        font-weight: 600;
        transition: background 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .pricing-coming-soon:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    /* FAQ */
    #faq {
        padding-bottom: 1rem;
    }

    .faq-accordion {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: var(--secondary-color);
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
        padding: 1rem;
    }

    .faq-item__question {
        font-weight: 600;
        cursor: pointer;
        list-style: none;
        /* Hide default triangle */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-item__question::-webkit-details-marker {
        display: none;
    }

    .faq-item__answer {
        margin-top: 1rem;
        color: var(--text-light);
        padding-top: 1rem;
        border-top: 1px solid #E5E7EB;
    }

    /* Page Content (Legal Pages) */
    .page-content {
        padding: 4rem 1.5rem;
        max-width: 800px;
        margin: 0 auto;
        background: white;
        min-height: 60vh;
    }

    .page-content h1 {
        color: var(--primary-color);
        margin-bottom: 2rem;
    }

    .page-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        color: var(--text-color);
    }

    .page-content p {
        margin-bottom: 1rem;
        color: var(--text-light);
    }

    .page-content ul {
        list-style: disc;
        padding-left: 2rem;
        margin-bottom: 1rem;
        color: var(--text-light);
    }

    .page-content ul {
        list-style: disc;
        padding-left: 2rem;
        margin-bottom: 1rem;
        color: var(--text-light);
    }

    .styled-list {
        list-style-position: outside;
        padding-left: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-light);
    }

    .styled-list li {
        margin-bottom: 0.5rem;
        padding-left: 0.5rem;
    }

    /* CTA Card */
    .cta-card {
        background: radial-gradient(circle, #2563EB 0%, #1E40AF 100%);
        color: white;
        padding: 3rem;
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        max-width: 800px;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
        text-align: center;
    }

    .text-white-opacity {
        color: rgba(255, 255, 255, 0.9);
    }

    .cta-form {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .cta-input {
        padding: 1rem;
        border-radius: var(--border-radius);
        border: none;
        width: 300px;
        font-size: 1rem;
    }

    .legal-text {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
    }

    /* Footer with Wave */
    .footer {
        background: transparent;
        color: white;
        padding: 0;
        margin-top: 0;
        position: relative;
    }

    .footer__wave {
        width: 100%;
        line-height: 0;
        background-color: transparent;
        margin-bottom: -1px;
    }

    .footer__wave svg {
        display: block;
        width: 100%;
        height: auto;
    }

    .footer__container {
        background-color: #2563EB;
        max-width: 100%;
        padding: 0 1.5rem 4rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin: 0;
        padding-top: 1rem;
    }

    /* Ensure FAQ section looks distinct if needed, but section--light handles it */
    .section--light {
        background-color: #F9FAFB;
    }

    /* We need a wrapper for centered content inside the full-width blue container if desired, 
   but strictly speaking the user wants centered footer content. 
   The layout is: Wave -> Blue Block with Content. */

    .footer__socials {
        display: flex;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .footer__socials a {
        color: rgba(255, 255, 255, 0.8);
        transition: color 0.3s, transform 0.3s;
        background: rgba(255, 255, 255, 0.1);
        padding: 0.75rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer__socials a:hover {
        color: white;
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.2);
    }

    /* Specific LinkedIn Full Logo Styling */
    .linkedin-logo {
        display: flex;
        align-items: center;
        gap: 2px;
        /* Close gap like the logo */
        background: transparent !important;
        /* Override default circle bg */
        padding: 0 !important;
        /* Remove padding */
        border-radius: 0 !important;
        /* Remove circle */
        text-decoration: none;
    }

    .linkedin-logo:hover {
        transform: translateY(-2px);
        background: transparent !important;
    }

    .linkedin-text {
        font-size: 24px;
        font-weight: 700;
        color: white;
        font-family: Arial, sans-serif;
        /* Fallback to a simple bold sans for logo look */
        line-height: 1;
        letter-spacing: -0.5px;
    }

    .linkedin-icon {
        width: 34px !important;
        /* Slightly larger to match text height visually */
        height: 34px !important;
        display: block;
    }

    .footer__nav {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    .footer__nav a {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        font-size: 1rem;
    }

    .footer__nav a:hover {
        color: white;
        text-decoration: underline;
    }

    .footer__copyright {
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.875rem;
        margin-top: 1rem;
    }

    /* Mobile RWD Improvements */
    @media (max-width: 900px) {
        .hero__container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 3rem;
        }

        .hero__subtitle {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .hero__benefits {
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem 2rem;
        }

        .hero__visual {
            margin-top: 2rem;
        }
    }

    @media (max-width: 768px) {

        /* Typography Scaling */
        h1 {
            font-size: 2.25rem;
        }

        h2 {
            font-size: 1.75rem;
        }

        .section__title--lg {
            font-size: 2rem;
        }

        .hero__title {
            font-size: 2.5rem;
        }

        .step-card__number {
            font-size: 4rem;
            top: 5px;
            right: 15px;
        }

        /* Spacing Reduction */
        .section {
            padding: 3rem 0;
            /* Reduced from 5rem */
        }

        .hero {
            padding: 3rem 0;
        }

        .hero__container {
            gap: 2rem;
        }

        .section__header {
            margin-bottom: 2.5rem;
        }

        /* Cards & Layout */
        .steps-grid {
            /* Allow smaller columns for mobile */
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            margin-bottom: 4rem;
        }

        .requirements-card,
        .pricing-card,
        .step-card {
            padding: 1.5rem;
        }

        .pricing-card {
            margin-top: 3rem;
            border-radius: 16px;
        }

        .pricing-card__title {
            font-size: 2rem;
        }

        /* Alert Box */
        .alert-box--danger {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 1rem;
            gap: 0.5rem;
        }

        .alert-icon {
            margin-bottom: 0.5rem;
        }

        /* Footer */
        .footer__container {
            padding-bottom: 2rem;
        }

        .footer__nav {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
            align-items: center;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 1rem;
        }

        .hero__title {
            font-size: 2rem;
        }

        .hero__actions {
            flex-direction: column;
            gap: 1rem;
            width: 100%;
        }

        /* Only full width for main call to action buttons, not header */
        .hero__actions .btn,
        .pricing-card .btn,
        .cta-form .btn {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        /* Header adjustments for mobile */
        .header__container {
            padding: 0 1rem;
        }

        .header__btn {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
        }

        .benefit {
            font-size: 0.85rem;
            white-space: normal;
            /* Allow text wrap if needed */
        }

        .hero__benefits {
            flex-direction: column;
            /* Stack benefits on very small screens? Or just wrap better */
            align-items: center;
            gap: 0.5rem;
        }

        .pricing-card {
            padding: 1.5rem 1rem;
        }
    }

    /* FAQ Icon */
    .faq-icon {
        width: 80px;
        height: 80px;
        color: var(--primary-color);
        opacity: 0.2;
        margin-bottom: 1.5rem;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .footer__nav-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    /* =============================================
       INSTRUCTION PAGE STYLES
       ============================================= */

    /* Hero banner for instruction page */
    .instruction-hero {
        background: linear-gradient(135deg, #EEF2FF 0%, #DBEAFE 100%);
        padding: 3rem 0;
        text-align: center;
        border-bottom: 1px solid #E5E7EB;
    }

    .instruction-hero h1 {
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }

    .instruction-hero p {
        color: var(--text-light);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Instruction content wrapper */
    .instruction-content {
        padding: 3rem 1.5rem;
        max-width: 900px;
        margin: 0 auto;
        background: #F9FAFB;
        min-height: 60vh;
    }

    /* Table of Contents Card */
    .toc-card {
        background: white;
        border-radius: var(--border-radius);
        padding: 2rem;
        margin-bottom: 3rem;
        box-shadow: var(--shadow-md);
        border-left: 4px solid var(--primary-color);
    }

    .toc-card h2 {
        font-size: 1.25rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .toc-card ol {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 0.75rem;
    }

    .toc-card ol li {
        counter-increment: toc-counter;
    }

    .toc-card ol li a {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        background: var(--secondary-color);
        border-radius: 8px;
        color: var(--text-color);
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .toc-card ol li a::before {
        content: counter(toc-counter);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        font-size: 0.875rem;
        font-weight: 600;
        margin-right: 0.75rem;
        flex-shrink: 0;
    }

    .toc-card ol li a:hover {
        background: var(--primary-light);
        color: white;
        transform: translateX(4px);
    }

    .toc-card ol li a:hover::before {
        background: white;
        color: var(--primary-color);
    }

    /* Instruction Section Cards */
    .instruction-section {
        background: white;
        border-radius: var(--border-radius);
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: var(--shadow-sm);
        border: 1px solid #E5E7EB;
    }

    .instruction-section h2 {
        font-size: 1.5rem;
        color: var(--text-color);
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--primary-light);
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .instruction-section h2 .section-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .instruction-section h3 {
        font-size: 1.125rem;
        color: var(--primary-dark);
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .instruction-section p {
        color: var(--text-light);
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    /* Ordered lists in instruction */
    .instruction-section ol {
        list-style: none;
        padding: 0;
        margin: 1rem 0;
        counter-reset: step-counter;
    }

    .instruction-section ol > li {
        counter-increment: step-counter;
        padding: 0.75rem 0 0.75rem 3rem;
        position: relative;
        border-bottom: 1px solid #F3F4F6;
        color: var(--text-color);
    }

    .instruction-section ol > li:last-child {
        border-bottom: none;
    }

    .instruction-section ol > li::before {
        content: counter(step-counter);
        position: absolute;
        left: 0;
        top: 0.75rem;
        width: 24px;
        height: 24px;
        background: var(--secondary-color);
        color: var(--primary-color);
        border-radius: 50%;
        font-size: 0.8rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Unordered lists in instruction */
    .instruction-section ul {
        list-style: none;
        padding: 0;
        margin: 0.75rem 0;
    }

    .instruction-section ul li {
        padding: 0.5rem 0 0.5rem 1.5rem;
        position: relative;
        color: var(--text-light);
    }

    .instruction-section ul li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 1rem;
        width: 6px;
        height: 6px;
        background: var(--primary-color);
        border-radius: 50%;
    }

    /* Nested lists */
    .instruction-section ol ul,
    .instruction-section ul ul {
        margin-left: 0.5rem;
        margin-top: 0.5rem;
        padding-left: 0;
    }

    .instruction-section ol ul li::before,
    .instruction-section ul ul li::before {
        background: var(--primary-light);
        width: 5px;
        height: 5px;
    }

    /* Email template box */
    .email-template {
        background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
        border: 1px solid #BAE6FD;
        border-radius: 8px;
        padding: 1.25rem;
        margin: 1rem 0;
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .email-template strong {
        color: var(--primary-dark);
    }

    /* Instruction images */
    .instruction-section figure {
        margin: 1.5rem 0;
        text-align: center;
    }

    .instruction-img {
        max-width: 100%;
        border-radius: 8px;
        box-shadow: var(--shadow-md);
        border: 1px solid #E5E7EB;
    }

    .instruction-section figcaption {
        font-size: 0.875rem;
        color: var(--text-light);
        margin-top: 0.75rem;
        font-style: italic;
    }

    /* Note/Warning boxes */
    .instruction-note {
        background: #FFFBEB;
        border: 1px solid #FCD34D;
        border-radius: 8px;
        padding: 1rem 1.25rem;
        margin: 1rem 0;
        color: #92400E;
        font-size: 0.95rem;
    }

    .instruction-note em {
        font-style: normal;
    }

    /* Code elements */
    .instruction-section code {
        background: var(--secondary-color);
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        font-family: 'Courier New', monospace;
        font-size: 0.9em;
        color: var(--primary-dark);
    }

    /* Code block for multi-line code */
    .code-block {
        background: #1F2937;
        border-radius: 8px;
        padding: 1.25rem;
        margin: 1rem 0;
        overflow-x: auto;
    }

    .code-block code {
        background: transparent;
        color: #E5E7EB;
        padding: 0;
        font-family: 'Courier New', Consolas, monospace;
        font-size: 0.85rem;
        line-height: 1.6;
        white-space: pre;
        display: block;
    }

    /* Links in instruction sections */
    .instruction-section a {
        color: var(--primary-color);
        text-decoration: underline;
        text-decoration-color: var(--primary-light);
        text-underline-offset: 2px;
    }

    .instruction-section a:hover {
        color: var(--primary-dark);
        text-decoration-color: var(--primary-dark);
    }

    /* Mobile adjustments for instruction page */
    @media (max-width: 768px) {
        .instruction-hero {
            padding: 2rem 1rem;
        }

        .instruction-content {
            padding: 1.5rem 1rem;
        }

        .toc-card {
            padding: 1.5rem;
        }

        .toc-card ol {
            grid-template-columns: 1fr;
        }

        .instruction-section {
            padding: 1.5rem;
        }

        .instruction-section h2 {
            font-size: 1.25rem;
        }

        .instruction-section ol > li {
            padding-left: 2.5rem;
        }
    }

    /* =============================================
       INSTRUCTIONS HUB PAGE
       ============================================= */

    /* Breadcrumb link */
    .breadcrumb-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--primary-dark);
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 1rem;
        opacity: 0.8;
        transition: opacity 0.2s ease;
    }

    .breadcrumb-link:hover {
        opacity: 1;
    }

    .breadcrumb-link svg {
        transition: transform 0.2s ease;
    }

    .breadcrumb-link:hover svg {
        transform: translateX(-3px);
    }

    /* Instructions hub section */
    .instructions-hub {
        padding: 3rem 0 5rem;
        background: #F9FAFB;
    }

    /* Articles grid */
    .articles-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    /* Article card */
    .article-card {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: var(--shadow-sm);
        border: 1px solid #E5E7EB;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        position: relative;
        transition: all 0.3s ease;
        text-decoration: none;
        color: inherit;
    }

    .article-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
        border-color: var(--primary-light);
    }

    .article-card__icon {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, #EEF2FF 0%, #DBEAFE 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
    }

    .article-card__content {
        flex: 1;
    }

    .article-card__tag {
        display: inline-block;
        background: var(--secondary-color);
        color: var(--primary-color);
        font-size: 0.75rem;
        font-weight: 600;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.75rem;
    }

    .article-card__title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-color);
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .article-card__desc {
        color: var(--text-light);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .article-card__topics {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .article-card__topics li {
        font-size: 0.8rem;
        color: var(--text-light);
        background: #F9FAFB;
        padding: 0.35rem 0.75rem;
        border-radius: 6px;
        border: 1px solid #E5E7EB;
    }

    .article-card__arrow {
        position: absolute;
        top: 2rem;
        right: 2rem;
        color: var(--primary-light);
        transition: all 0.3s ease;
    }

    .article-card:hover .article-card__arrow {
        color: var(--primary-color);
        transform: translateX(4px);
    }

    /* Help CTA */
    .help-cta {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        box-shadow: var(--shadow-sm);
        border: 1px solid #E5E7EB;
    }

    .help-cta__content h3 {
        font-size: 1.25rem;
        color: var(--text-color);
        margin-bottom: 0.25rem;
    }

    .help-cta__content p {
        color: var(--text-light);
        margin: 0;
    }

    .help-cta .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
    }

    /* Mobile adjustments for hub */
    @media (max-width: 768px) {
        .articles-grid {
            grid-template-columns: 1fr;
        }

        .article-card {
            padding: 1.5rem;
        }

        .article-card__arrow {
            top: 1.5rem;
            right: 1.5rem;
        }

        .help-cta {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
    }

    /* =========================================
       Announcement Bar (Beta)
       ========================================= */

    .announcement-bar {
        background: #0f172a;
        color: #e2e8f0;
        padding: 0.625rem 1rem;
        text-align: center;
    }

    .announcement-bar__container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .announcement-bar__badge {
        background: var(--success);
        color: #fff;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        padding: 0.2rem 0.6rem;
        border-radius: 999px;
        text-transform: uppercase;
        flex-shrink: 0;
    }

    .announcement-bar__text {
        font-size: 0.875rem;
        margin-bottom: 0;
    }

    .announcement-bar__text strong {
        color: #fff;
    }

    .announcement-bar__link {
        color: var(--primary-light);
        font-weight: 600;
        margin-left: 0.5rem;
        white-space: nowrap;
        transition: color 0.2s;
    }

    .announcement-bar__link:hover {
        color: #fff;
    }

    @media (max-width: 640px) {
        .announcement-bar__container {
            flex-direction: column;
            gap: 0.4rem;
        }
    }

    /* =========================================
       Pricing card — Beta state
       ========================================= */

    .pricing-card__price-block {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 0.25rem;
    }

    .pricing-card__price-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }

    .pricing-card__price-row--after {
        opacity: 0.75;
    }

    .pricing-card__beta-badge,
    .pricing-card__after-badge {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        padding: 0.25rem 0.7rem;
        border-radius: 999px;
        text-transform: uppercase;
        flex-shrink: 0;
        min-width: 4.5rem;
        text-align: center;
    }

    .pricing-card__beta-badge {
        background: var(--success);
        color: #fff;
    }

    .pricing-card__after-badge {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
    }

    .pricing-price--free {
        font-size: 2rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0;
        line-height: 1;
    }

    .pricing-price--after {
        font-size: 1.1rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 0;
    }