/* =========================================
   FACIAL IDENTITY PAGE STYLES
   ========================================= */

.facial-hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #080c16 100%);
    color: white;
    padding: 100px 48px;
    border-radius: 24px;
    margin: 24px;
    min-height: calc(100vh - 48px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.facial-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.facial-hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}





.facial-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.facial-hero-title span {
    color: var(--primary-orange);
}

.facial-hero-desc {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.facial-hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.facial-hero-image-wrapper {
    flex: 1.2;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Add a subtle glow behind the image */
.facial-hero-image-wrapper::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 104, 34, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
}

/* Orange bracket from design */
.facial-hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 40px;
    height: 40px;
    border-right: 3px solid var(--primary-orange);
    border-bottom: 3px solid var(--primary-orange);
    z-index: 5;
}

.facial-hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    /* Optional: add a slight floating animation */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* SYS.MATCH_OK Badge */
.sys-match-badge {
    position: absolute;
    top: 20px;
    left: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(242, 104, 34, 0.4);
    border-left: 3px solid var(--primary-orange);
    color: white;
    font-family: monospace;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.dot-green {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

/* Reveal Animation */
.facial-hero-section.reveal .facial-hero-content > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.facial-hero-section.reveal.active .facial-hero-content > * {
    opacity: 1;
    transform: translateY(0);
}

.facial-hero-section.reveal 
.facial-hero-section.reveal .facial-hero-title { transition-delay: 0.3s; }
.facial-hero-section.reveal .facial-hero-desc { transition-delay: 0.5s; }
.facial-hero-section.reveal .facial-hero-actions { transition-delay: 0.7s; }

.facial-hero-section.reveal .facial-hero-image-wrapper {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.facial-hero-section.reveal.active .facial-hero-image-wrapper {
    opacity: 1;
    transform: scale(1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .facial-hero-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    
    .facial-hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    

    .facial-hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .sys-match-badge {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .facial-hero-section {
        padding: 80px 24px;
        min-height: auto;
    }
    
    .facial-hero-title {
        font-size: 40px;
    }
}

/* =========================================
   REAL-TIME FACE IDENTIFICATION SECTION
   ========================================= */

.rt-identification-section {
    padding: 100px 24px;
    background-color: #ffffff; /* White background */
}

.rt-ident-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.rt-ident-image-col {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    /* subtle shadow if needed */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.rt-ident-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.rt-ident-content-col {
    flex: 1;
}





.rt-ident-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.1;
}

.rt-ident-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}



.rt-ident-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rt-tag {
    padding: 8px 16px;
    background-color: #f1f5f9;
    border-radius: 50px; /* pill shape */
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
}

/* Reveal Logic */
.rt-identification-section.reveal .rt-ident-image-col {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.rt-identification-section.reveal .rt-ident-content-col {
    opacity: 0;
    transform: translateX(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.rt-identification-section.reveal.active .rt-ident-image-col,
.rt-identification-section.reveal.active .rt-ident-content-col {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
    .rt-ident-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .rt-ident-content-col {
        text-align: center;
    }
    
    

    .rt-ident-tags {
        justify-content: center;
    }
}

/* =========================================
   HIGH-ASSURANCE DATABASE MATCHING SECTION
   ========================================= */

.matching-section {
    padding: 100px 48px;
    background: linear-gradient(to right, #0f172a, #0b1120);
    border-radius: 24px;
    margin: 24px;
    color: white;
    overflow: hidden;
}

.matching-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Left Side Visual */
.matching-visual-col {
    flex: 1.2;
}

.matching-visual-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.matching-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.matching-card-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 24px;
}

.matching-card-image-wrapper {
    position: relative;
    border-radius: 12px;
}

.matching-card-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Floating Overlay */
.ai-engine-overlay {
    position: absolute;
    top: -20px;
    right: -30px;
    background-color: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--primary-orange);
    border-radius: 12px;
    padding: 16px 24px;
    width: 220px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 10;
}

.ai-engine-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-orange);
    font-family: monospace;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.dot-green-small {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 6px #10b981;
}

.ai-engine-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ai-engine-row:last-child {
    margin-bottom: 0;
}

.ai-engine-row .label {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ai-engine-row .value {
    font-size: 12px;
    font-weight: 700;
    color: white;
}

/* Right Side Content */
.matching-content-col {
    flex: 1;
}

.matching-title {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.matching-desc {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 48px;
}

/* Metrics */
.matching-metrics {
    display: flex;
    align-items: center;
    gap: 32px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-value {
    font-size: 28px;
    font-weight: 800;
}

.metric-value.orange {
    color: var(--primary-orange);
}

.metric-value.white {
    color: white;
}

.metric-label {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Reveal Logic */
.matching-section.reveal .matching-visual-col {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.matching-section.reveal .matching-content-col {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.matching-section.reveal .ai-engine-overlay {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.matching-section.reveal.active .matching-visual-col,
.matching-section.reveal.active .matching-content-col {
    opacity: 1;
    transform: translateY(0);
}

.matching-section.reveal.active .ai-engine-overlay {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 992px) {
    .matching-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .ai-engine-overlay {
        right: 10px;
        top: -10px;
    }
}
@media (max-width: 768px) {
    .matching-section {
        padding: 60px 24px;
    }
    .matching-metrics {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .metric-divider {
        display: none;
    }
}

/* =========================================
   LIVENESS DETECTION SECTION
   ========================================= */

.liveness-section {
    padding: 100px 24px;
    background-color: #0b1120;
    border-radius: 24px;
    margin: 24px;
    color: white;
    text-align: center;
}

.liveness-container {
    max-width: 1000px;
    margin: 0 auto;
}

.liveness-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.liveness-header 

.liveness-header 

.liveness-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
    line-height: 1.2;
}

.liveness-desc {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
}

.liveness-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    /* Optional glow or shadow */
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    margin: 0 auto;
    max-width: 900px;
}

.liveness-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.liveness-badges {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    z-index: 5;
}

.liveness-badge {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 10px;
    font-family: monospace;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

.liveness-badge.orange {
    border: 1px solid var(--primary-orange);
    color: white;
}

.liveness-badge.green {
    border: 1px solid #10b981;
    color: white;
}

.dot-orange-small {
    width: 6px;
    height: 6px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--primary-orange);
}

/* Reveal Animation */
.liveness-section.reveal .liveness-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.liveness-section.reveal .liveness-image-wrapper {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.liveness-section.reveal.active .liveness-header {
    opacity: 1;
    transform: translateY(0);
}

.liveness-section.reveal.active .liveness-image-wrapper {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 768px) {
    .liveness-section {
        padding: 60px 24px;
    }
    .liveness-title {
        font-size: 32px;
    }
    .liveness-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        bottom: 16px;
        left: 16px;
    }
}

/* =========================================
   CRYPTOGRAPHIC SECURE QR SECTION
   ========================================= */

.crypto-qr-section {
    padding: 100px 24px;
    background-color: #f8fafc;
}

.crypto-qr-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Content Column */
.crypto-qr-content-col {
    flex: 1;
}





.crypto-qr-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.crypto-qr-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
}

.crypto-qr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crypto-qr-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.5;
}

.crypto-qr-list li svg {
    color: var(--primary-orange);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Image Column */
.crypto-qr-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.crypto-qr-card {
    background-color: white;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.1);
    position: relative;
    max-width: 400px;
}

.crypto-qr-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.decentralized-key-badge {
    position: absolute;
    bottom: -20px;
    left: -40px;
    background-color: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 240px;
    z-index: 10;
}

.dk-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.dk-desc {
    font-size: 11px;
    color: #64748b;
    line-height: 1.4;
}

/* Reveal Logic */
.crypto-qr-section.reveal .crypto-qr-content-col {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.crypto-qr-section.reveal .crypto-qr-image-col {
    opacity: 0;
    transform: translateX(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.crypto-qr-section.reveal .decentralized-key-badge {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.crypto-qr-section.reveal.active .crypto-qr-content-col,
.crypto-qr-section.reveal.active .crypto-qr-image-col {
    opacity: 1;
    transform: translateX(0);
}

.crypto-qr-section.reveal.active .decentralized-key-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .crypto-qr-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .crypto-qr-content-col {
        text-align: center;
    }
    
    

    .crypto-qr-list li {
        text-align: left;
    }
    
    .decentralized-key-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }
    .crypto-qr-section.reveal .decentralized-key-badge {
        transform: translate(-50%, 20px);
    }
    .crypto-qr-section.reveal.active .decentralized-key-badge {
        transform: translate(-50%, 0);
    }
}

@media (max-width: 768px) {
    .crypto-qr-section {
        padding: 60px 24px;
    }
}

/* =========================================
   TECHNICAL PIPELINE SECTION
   ========================================= */

.tech-pipeline-section {
    padding: 100px 24px;
    background-color: #0b1120;
    border-radius: 24px;
    margin: 24px;
    color: white;
}

.tech-pipeline-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tech-pipeline-header {
    max-width: 700px;
    margin-bottom: 80px;
}

.tech-pipeline-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
    line-height: 1.2;
}

.tech-pipeline-desc {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
}

.tech-pipeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 20px;
}

.tech-pipeline-line {
    position: absolute;
    top: 50px;
    left: 40px;
    right: 40px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.tp-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 18%;
}

.tp-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background-color: #0b1120;
}

.tp-icon-wrapper.orange {
    border: 2px solid var(--primary-orange);
}

.tp-icon-wrapper.gray {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
}

.tp-step-title {
    font-size: 16px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.tp-step-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

/* Reveal Logic */
.tech-pipeline-section.reveal .tech-pipeline-header {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-pipeline-section.reveal .tech-pipeline-line {
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.tech-pipeline-section.reveal .tp-step {
    opacity: 0;
    transform: translateY(20px);
}

.tech-pipeline-section.reveal .tp-step:nth-child(2) { transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s; }
.tech-pipeline-section.reveal .tp-step:nth-child(3) { transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s; }
.tech-pipeline-section.reveal .tp-step:nth-child(4) { transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s; }
.tech-pipeline-section.reveal .tp-step:nth-child(5) { transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.9s; }
.tech-pipeline-section.reveal .tp-step:nth-child(6) { transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.1s; }

.tech-pipeline-section.reveal.active .tech-pipeline-header {
    opacity: 1;
    transform: translateY(0);
}

.tech-pipeline-section.reveal.active .tech-pipeline-line {
    transform: scaleX(1);
}

.tech-pipeline-section.reveal.active .tp-step {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .tech-pipeline-steps {
        flex-direction: column;
        gap: 40px;
        padding-left: 20px;
    }
    
    .tech-pipeline-line {
        top: 20px;
        bottom: 40px;
        left: 50px;
        width: 1px;
        height: auto;
        right: auto;
        transform-origin: top center;
        transform: scaleY(0);
    }
    
    .tech-pipeline-section.reveal .tech-pipeline-line {
        transform: scaleY(0);
    }
    
    .tech-pipeline-section.reveal.active .tech-pipeline-line {
        transform: scaleY(1);
    }
    
    .tp-step {
        width: 100%;
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 24px;
    }
    
    .tp-icon-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}
@media (max-width: 768px) {
    .tech-pipeline-section {
        padding: 60px 24px;
    }
    .tech-pipeline-title {
        font-size: 32px;
    }
}

/* =========================================
   CTA SECTION
   ========================================= */

.cta-section {
    padding: 120px 24px;
    background: linear-gradient(135deg, #0f172a, #0b1120);
    border-radius: 24px;
    margin: 24px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}



.cta-line {
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange);
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight-orange {
    color: var(--primary-orange);
}

.cta-desc {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Reveal Logic */
.cta-section.reveal .cta-container > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-section.reveal .cta-title { transition-delay: 0.1s; }
.cta-section.reveal .cta-desc { transition-delay: 0.2s; }
.cta-section.reveal .cta-actions { transition-delay: 0.3s; }

.cta-section.reveal.active .cta-container > * {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 24px;
    }
    .cta-title {
        font-size: 36px;
    }
    .cta-actions {
        flex-direction: column;
        gap: 16px;
    }
    .cta-actions a {
        width: 100%;
        text-align: center;
    }
}
