
    :root {
        --navy-deep: #0a1128;
        --navy-panel: #111e3d;
        --navy-light: #1c2e5a;
        --accent-blue: #3b82f6;
        --accent-teal: #14b8a6;
        --accent-green: #10b981;
        --text-bright: #f8fafc;
        --text-muted: #94a3b8;
        --border-glow: rgba(59, 130, 246, 0.2);
        --panel-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.1);
        --tactile-shadow: 0 4px 6px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
        --tactile-active: inset 0 2px 4px rgba(0, 0, 0, 0.6);
    }

    .cold-email-services-page {
        background-color: var(--navy-deep);
        color: var(--text-bright);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        line-height: 1.6;
        padding-bottom: 80px;
    }


    .section-spacing {
        padding: 100px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    @media (max-width: 992px) {
        .grid-3, .grid-4 {
            grid-template-columns: repeat(2, 1fr);
        }
        .grid-2 {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .grid-2, .grid-3, .grid-4 {
            grid-template-columns: 1fr;
        }
        .section-spacing {
            padding: 60px 0;
        }
    }


    .badge-pill {
        display: inline-block;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
        border: 1px solid var(--border-glow);
        color: var(--accent-teal);
        padding: 6px 16px;
        border-radius: 9999px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-bottom: 24px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .raised-panel {
        background: linear-gradient(145deg, var(--navy-panel) 0%, #0d1935 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        box-shadow: var(--panel-shadow);
        transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .raised-panel:hover {
        transform: translateY(-4px);
        border-color: rgba(59, 130, 246, 0.3);
        box-shadow: 0 15px 35px -10px rgba(59, 130, 246, 0.15), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    }

    .btn-tactile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 28px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        text-decoration: none;
        letter-spacing: 0.02em;
        border: none;
    }

    .btn-tactile-primary {
        background: linear-gradient(180deg, var(--accent-blue) 0%, #1d4ed8 100%);
        color: #ffffff;
        box-shadow: var(--tactile-shadow), 0 0 15px rgba(59, 130, 246, 0.3);
        border: 1px solid #3b82f6;
    }

    .btn-tactile-primary:hover {
        background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
        box-shadow: var(--tactile-shadow), 0 0 20px rgba(59, 130, 246, 0.5);
    }

    .btn-tactile-primary:active {
        box-shadow: var(--tactile-active);
        transform: translateY(1px);
    }

    .btn-tactile-secondary {
        background: linear-gradient(180deg, var(--navy-light) 0%, #152244 100%);
        color: var(--text-bright);
        box-shadow: var(--tactile-shadow);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .btn-tactile-secondary:hover {
        background: linear-gradient(180deg, #253b73 0%, #1a2a54 100%);
        border-color: rgba(255, 255, 255, 0.25);
    }

    .btn-tactile-secondary:active {
        box-shadow: var(--tactile-active);
        transform: translateY(1px);
    }


    .skeuomorphic-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        background: linear-gradient(180deg, var(--navy-panel) 0%, #0d1935 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        box-shadow: var(--panel-shadow);
        overflow: hidden;
    }

    .skeuomorphic-table th {
        background-color: rgba(255, 255, 255, 0.03);
        padding: 18px 24px;
        font-weight: 700;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        color: var(--text-bright);
    }

    .skeuomorphic-table td {
        padding: 18px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--text-muted);
        vertical-align: middle;
    }

    .skeuomorphic-table tr:last-child td {
        border-bottom: none;
    }

    .console-card {
        background: #070c1b;
        border: 1px solid rgba(59, 130, 246, 0.3);
        border-radius: 12px;
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(59, 130, 246, 0.1);
        padding: 30px;
        font-family: "Courier New", Courier, monospace;
    }

    .console-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 12px;
    }

    .console-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .console-dot.red { background-color: #ef4444; }
    .console-dot.yellow { background-color: #eab308; }
    .console-dot.green { background-color: var(--accent-green); }

    .console-line {
        margin-bottom: 12px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .console-cmd {
        color: var(--accent-teal);
    }

    .console-success {
        color: var(--accent-green);
    }


    .timeline {
        position: relative;
        padding-left: 30px;
        border-left: 2px dashed rgba(59, 130, 246, 0.2);
    }

    .timeline-node {
        position: relative;
        margin-bottom: 40px;
    }

    .timeline-node:last-child {
        margin-bottom: 0;
    }

    .timeline-badge {
        position: absolute;
        left: -42px;
        top: 0;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: var(--navy-deep);
        border: 2px solid var(--accent-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-bright);
        font-size: 0.75rem;
        font-weight: 700;
        box-shadow: 0 0 8px var(--accent-blue);
    }


    .faq-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 24px 0;
    }

    .faq-question {
        font-size: 1.15rem;
        font-weight: 600;
        margin-bottom: 12px;
        color: var(--text-bright);
        display: flex;
        align-items: center;
    }

    .faq-question i {
        color: var(--accent-blue);
        margin-right: 12px;
        font-size: 0.95rem;
    }

    .faq-answer {
        color: var(--text-muted);
        padding-left: 26px;
        font-size: 0.95rem;
    }
