/* ═══════════════════════════════════════════════════════════════
   TAKWEEN ENHANCEMENTS CSS — تعزيزات الموقع المحدث
   يكمل style.css الأصلي بدون التعارض معه
═══════════════════════════════════════════════════════════════ */

/* ─── Variables Add-ons ─── */
:root {
    --navy: #0f172a;
    --sky: #0ea5e9;
    --gold: #b45309;
    --success: #10b981;
    --danger: #ef4444;
    --whatsapp: #25d366;
    --layer-field: #eff6ff;
    --layer-control: #f0fdf4;
    --layer-command: #fdf4ff;
    --layer-field-accent: #3b82f6;
    --layer-control-accent: #10b981;
    --layer-command-accent: #8b5cf6;
}

/* ─── Nav Highlight ─── */
.nav-highlight {
    color: var(--sky) !important;
    font-weight: 800 !important;
}

/* ─── Hero Enhancements ─── */
.hero-highlight {
    color: var(--sky);
    display: block;
}

.btn-warm {
    background: var(--gold);
    color: #fff;
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-warm:hover {
    background: #92400e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(180,83,9,0.3);
}

.btn-whatsapp {
    background: var(--whatsapp) !important;
    color: white !important;
}
.btn-whatsapp:hover {
    background: #1da851 !important;
    box-shadow: 0 8px 20px rgba(37,211,102,0.35) !important;
}

.hero-tagline {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sky);
    display: inline-block;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    margin: 0 auto;
    animation: scroll-fade 2s infinite;
}
@keyframes scroll-fade {
    0%, 100% { opacity: 0.8; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.7); }
}

/* ─── Trust Bar ─── */
.trust-bar {
    background: var(--navy);
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
}
.trust-item i {
    color: var(--sky);
    width: 16px;
    height: 16px;
}
.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.12);
}

/* ─── About Section ─── */
.about-section {
    padding: 7rem 0;
    background: var(--surface);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}
.about-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    border-right: 4px solid var(--sky);
    padding-right: 1rem;
}
.about-text p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 1rem;
    text-align: right;
}
.about-meta {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.about-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-body);
    font-size: 0.9rem;
}
.about-meta-item i {
    color: var(--sky);
    width: 16px;
    height: 16px;
}
.vision-card {
    background: var(--navy);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}
.vision-icon {
    width: 48px;
    height: 48px;
    background: rgba(14,165,233,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--sky);
}
.vision-card h3 {
    color: var(--sky);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}
.vision-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.75;
}
.philosophy-card {
    background: rgba(14,165,233,0.05);
    border: 1px dashed var(--sky);
    padding: 1.5rem;
    border-radius: 12px;
}
.philosophy-card h4 {
    color: var(--sky);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.philosophy-card blockquote {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    font-style: normal;
    border: none;
    padding: 0;
}
.philosophy-tagline {
    margin-top: 0.85rem;
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.6;
    font-style: italic;
    border-top: 1px solid rgba(14,165,233,0.15);
    padding-top: 0.75rem;
}

/* ─── Solution Bridge New ─── */
.solution-bridge-new {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(14,165,233,0.04);
    border: 1px dashed rgba(14,165,233,0.3);
    border-radius: 16px;
}
.solution-arrow {
    color: var(--sky);
    margin-bottom: 1rem;
    animation: bounce-down 2s infinite;
}
@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}
.solution-bridge-new p {
    color: var(--text-body);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.solution-bridge-new strong {
    color: var(--sky);
    font-size: 1.1rem;
    display: block;
}

/* ─── Journey Flow ─── */
.journey-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}
.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    min-width: 100px;
}
.j-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}
.j-icon:hover, .j-icon.j-athar { background: rgba(14,165,233,0.2); border-color: var(--sky); color: var(--sky); }
.j-icon.j-enjaz { background: rgba(139,92,246,0.2); border-color: #8b5cf6; color: #8b5cf6; }
.j-icon.j-siyak { background: rgba(16,185,129,0.2); border-color: #10b981; color: #10b981; }
.j-icon.j-decision { background: rgba(245,158,11,0.2); border-color: #f59e0b; color: #f59e0b; }
.j-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}
.j-desc {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
}
.journey-arrow {
    color: rgba(255,255,255,0.2);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ─── Products Section ─── */
.products-section {
    padding: 7rem 0;
    background: var(--surface-alt);
}
.product-layer {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: white;
}
.layer-header {
    padding: 1.75rem 2.5rem;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
}
.field-layer { background: var(--layer-field); border-bottom: 1px solid rgba(59,130,246,0.15); }
.control-layer { background: var(--layer-control); border-bottom: 1px solid rgba(16,185,129,0.15); }
.command-layer { background: var(--layer-command); border-bottom: 1px solid rgba(139,92,246,0.15); }

.layer-badge {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    background: rgba(0,0,0,0.06);
    color: var(--text-body);
}
.layer-header h3 { font-size: 1.4rem; margin: 0; }
.layer-header p { color: var(--text-body); font-size: 0.9rem; margin: 0; }

.layer-products {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}
.product-card {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--sky);
}
.pc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.pc-icon img { width: 36px; height: 36px; object-fit: contain; }
.pc-fallback { display: none; color: var(--sky); }
.pc-icon img:not([src]), .pc-icon img[src=""] ~ .pc-fallback { display: block; }

.pc-body { flex: 1; }
.pc-body h4 { font-size: 1rem; color: var(--text-main); margin-bottom: 0.25rem; }
.pc-tagline { font-size: 0.8rem; color: var(--sky); font-weight: 700; margin-bottom: 0.5rem; display: block; }
.pc-desc { font-size: 0.85rem; color: var(--text-body); line-height: 1.6; margin-bottom: 0.75rem; }
.pc-platforms { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.pc-platforms span {
    font-size: 0.68rem;
    padding: 0.15rem 0.5rem;
    background: var(--secondary);
    border-radius: 4px;
    color: var(--text-dim);
    font-weight: 600;
}
.pc-arrow { color: var(--border-strong); align-self: center; flex-shrink: 0; }
.product-card:hover .pc-arrow { color: var(--sky); }

.pc-badge-new {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    background: rgba(245,158,11,0.1);
    color: #f59e0b;
    border-radius: 6px;
    border: 1px solid rgba(245,158,11,0.3);
}

.kpi-disclaimer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(14,165,233,0.05);
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--text-dim);
    border: 1px solid rgba(14,165,233,0.15);
}
.kpi-disclaimer i { width: 14px; height: 14px; color: var(--sky); flex-shrink: 0; }

/* ─── For Who Section ─── */
.for-who-section {
    padding: 7rem 0;
    background: var(--surface);
}
.for-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.fw-card {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.fw-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--sky);
    background: white;
}
.fw-icon {
    width: 48px;
    height: 48px;
    background: rgba(14,165,233,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky);
    transition: all 0.3s ease;
}
.fw-card:hover .fw-icon { background: var(--sky); color: white; }
.fw-card h4 { font-size: 1rem; color: var(--text-main); font-weight: 700; }
.fw-card p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; margin: 0; }
.scenarios-section { padding: 7rem 0; }
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.scenario-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}
.scenario-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
}
.scenario-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 0.75rem;
}
.scenario-card h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}
.scenario-steps { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.ss { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: #94a3b8; line-height: 1.5; }
.ss-icon { flex-shrink: 0; font-size: 1rem; }
.ss-icon.problem { }
.ss-icon.action { }
.ss-icon.result { }
.scenario-bottom {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1rem;
    margin: 0;
    font-style: italic;
}

/* ─── Packages Section ─── */
.packages-section { padding: 7rem 0; background: var(--surface-alt); }
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.pkg-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sky);
}
.pkg-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sky);
}
.pkg-card h3 { font-size: 1.2rem; color: var(--text-main); margin: 0; }
.pkg-card > p { font-size: 0.9rem; color: var(--text-body); line-height: 1.6; flex: 1; }
.pkg-includes { display: flex; flex-direction: column; gap: 0.4rem; }
.pkg-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-body); }
.pkg-item i { color: var(--success); width: 14px; height: 14px; flex-shrink: 0; }
.pkg-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}
.pkg-btn {
    display: block;
    text-align: center;
    padding: 0.75rem;
    border: 1.5px solid var(--border-strong);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.3s ease;
}
.pkg-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }
.pkg-featured { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(14,165,233,0.1); }
.pkg-featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sky);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}
.pkg-btn-featured { background: var(--sky); color: white; border-color: var(--sky); }
.pkg-btn-featured:hover { background: #0284c7; border-color: #0284c7; }

.enterprise-banner {
    background: var(--navy);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}
.eb-icon {
    width: 56px;
    height: 56px;
    background: rgba(14,165,233,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky);
    flex-shrink: 0;
}
.eb-body { flex: 1; }
.eb-body h4 { color: white; margin-bottom: 0.5rem; font-size: 1.1rem; }
.eb-body p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.eb-btn {
    background: rgba(14,165,233,0.15);
    color: var(--sky);
    border: 1px solid rgba(14,165,233,0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.eb-btn:hover { background: var(--sky); color: white; }

/* ─── Pilot Section ─── */
.pilot-section { padding: 7rem 0; background: white; }
.pilot-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.pilot-requirements, .pilot-nots {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}
.pilot-requirements h3 {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 1.1rem; margin-bottom: 1.25rem;
    color: var(--success);
}
.pilot-nots h3 {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 1.1rem; margin-bottom: 1.25rem;
    color: var(--danger);
}
.pilot-requirements ul, .pilot-nots ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.pilot-requirements li, .pilot-nots li {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.9rem; color: var(--text-body);
}
.pilot-requirements li i { color: var(--success); width: 16px; height: 16px; flex-shrink: 0; }
.pilot-nots li i { color: var(--danger); width: 16px; height: 16px; flex-shrink: 0; }

.ai-governance-banner {
    margin-top: 2.5rem;
    background: var(--navy);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}
.agb-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.1); padding: 0.4rem 1rem;
    border-radius: 100px; font-size: 0.8rem; margin-bottom: 1rem;
}
.ai-governance-banner h3 {
    color: var(--sky); font-size: 1.3rem; margin: 0; font-weight: 800;
}

/* ─── CTA Section ─── */
.cta-section { padding: 7rem 0; background: var(--surface-alt); }
.cta-card {
    background: var(--navy);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    top: -60px; left: 50%; transform: translateX(-50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-card h2 { color: white; margin-bottom: 1rem; font-size: 2.2rem; }
.cta-card p { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; font-size: 1.1rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.legal-notice {
    margin-top: 2.5rem;
    background: rgba(0,0,0,0.03);
    border: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.6;
}
.legal-notice i { color: var(--sky); width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

/* ─── Footer Enhancements ─── */
footer { background: #0a0f1a; padding: 4rem 0 2rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    align-items: start;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; margin-top: 0.5rem; }
.footer-slogan { color: var(--sky) !important; font-weight: 700 !important; margin-top: 0.5rem !important; }
.footer-links h4, .footer-contact h4 {
    color: white; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 1.25rem;
}
.footer-links ul, .footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--sky); }
.footer-contact li { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact a:hover { color: var(--sky); }
.footer-contact i { color: var(--sky); width: 14px; height: 14px; flex-shrink: 0; }
.footer-founder {
    display: flex; align-items: center; gap: 0.6rem;
    margin-top: 1rem; color: var(--sky); font-size: 0.85rem; font-weight: 600;
}
.footer-founder i { width: 14px; height: 14px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; margin: 0.25rem 0; }

/* ─── Animations & Reveal ─── */
.reveal-init {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .pilot-two-col { grid-template-columns: 1fr; }
    .enterprise-banner { flex-direction: column; text-align: center; }
    .trust-divider { display: none; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .journey-flow { flex-direction: column; }
    .journey-arrow { transform: rotate(90deg); }
    .layer-products { grid-template-columns: 1fr; }
    .scenarios-grid { grid-template-columns: 1fr; }
    .cta-card { padding: 2.5rem 1.5rem; }
}
