/* =====================================================
   HOME PAGE STYLES — SixVM
   (Extracted from index.html inline styles)
   ===================================================== */

/* ═══════════════════════════════════════
   HERO BUTTONS — DARK PILL STYLE
   ═══════════════════════════════════════ */

.hero-cta .btn-primary {
    background: rgba(15, 15, 18, 0.92) !important;
    background-size: unset !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
    padding: 11px 22px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    border-radius: 50px !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.25s ease !important;
    backdrop-filter: blur(10px) !important;
}
.hero-cta .btn-primary i {
    font-size: 0.85rem !important;
    color: #fff !important;
}
.hero-cta .btn-primary:hover {
    background: rgba(30, 30, 36, 0.98) !important;
    border-color: rgba(255,255,255,0.35) !important;
    box-shadow: 0 8px 28px rgba(0,0,0,0.6) !important;
    transform: translateY(-2px) !important;
    color: #fff !important;
}

.hero-cta .btn-secondary {
    background: rgba(15, 15, 18, 0.92) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    color: rgba(255,255,255,0.82) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
    padding: 11px 22px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    border-radius: 50px !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all 0.25s ease !important;
    backdrop-filter: blur(10px) !important;
}
.hero-cta .btn-secondary::after {
    content: '→';
    font-size: 0.9em;
    transition: transform 0.2s ease;
    display: inline-block;
}
.hero-cta .btn-secondary:hover {
    background: rgba(30, 30, 36, 0.98) !important;
    border-color: rgba(255,255,255,0.35) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(0,0,0,0.6) !important;
}
.hero-cta .btn-secondary:hover::after {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.hw-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: #000;
}
.hw-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,100,255,0.07), transparent);
    pointer-events: none;
}
.hw-header {
    text-align: center;
    margin-bottom: 60px;
}
.hw-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4da6ff;
    border: 1px solid rgba(77,166,255,0.3);
    border-radius: 50px;
    padding: 5px 16px;
    margin-bottom: 16px;
}
.hw-header h2 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 12px;
}
.hw-header p {
    color: rgba(200,200,210,0.65);
    max-width: 520px;
    margin: 0 auto;
    font-size: 1rem;
}

.hw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    margin-bottom: 50px;
}
.hw-steps::before { display: none; }

.hw-card {
    position: relative;
    border-radius: 20px;
    padding: 44px 32px 36px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
}
.hw-card-bg {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
}
.hw-card.hw-visible { opacity: 1; transform: translateY(0); }
.hw-card:nth-child(1) { transition: opacity 0.6s 0s, transform 0.6s 0s, box-shadow 0.3s, border-color 0.3s; }
.hw-card:nth-child(2) { transition: opacity 0.6s 0.18s, transform 0.6s 0.18s, box-shadow 0.3s, border-color 0.3s; }
.hw-card:nth-child(3) { transition: opacity 0.6s 0.36s, transform 0.6s 0.36s, box-shadow 0.3s, border-color 0.3s; }
.hw-card:hover { transform: translateY(-10px); }

.hw-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    z-index: 2;
}

.hw-card.hw-1 { background: linear-gradient(160deg, rgba(77,166,255,0.07) 0%, rgba(0,0,0,0) 60%); border-color: rgba(77,166,255,0.18); }
.hw-card.hw-1::before { background: linear-gradient(90deg, #1565c0, #4da6ff); }
.hw-card.hw-1:hover { box-shadow: 0 24px 60px rgba(77,166,255,0.15); border-color: rgba(77,166,255,0.35); }
.hw-card.hw-1 .hw-icon { background: rgba(77,166,255,0.12); border-color: rgba(77,166,255,0.4); box-shadow: 0 0 24px rgba(77,166,255,0.15); }
.hw-card.hw-1 .hw-icon i { color: #4da6ff; }
.hw-card.hw-1 .hw-num { color: #4da6ff; }

.hw-card.hw-2 { background: linear-gradient(160deg, rgba(0,200,255,0.07) 0%, rgba(0,0,0,0) 60%); border-color: rgba(0,200,255,0.18); }
.hw-card.hw-2::before { background: linear-gradient(90deg, #0080cc, #00c8ff); }
.hw-card.hw-2:hover { box-shadow: 0 24px 60px rgba(0,200,255,0.15); border-color: rgba(0,200,255,0.35); }
.hw-card.hw-2 .hw-icon { background: rgba(0,200,255,0.12); border-color: rgba(0,200,255,0.4); box-shadow: 0 0 24px rgba(0,200,255,0.15); }
.hw-card.hw-2 .hw-icon i { color: #00c8ff; }
.hw-card.hw-2 .hw-num { color: #00c8ff; }

.hw-card.hw-3 { background: linear-gradient(160deg, rgba(0,200,255,0.07) 0%, rgba(0,0,0,0) 60%); border-color: rgba(0,200,255,0.18); }
.hw-card.hw-3::before { background: linear-gradient(90deg, #4080ff, #00c8ff); }
.hw-card.hw-3:hover { box-shadow: 0 24px 60px rgba(0,200,255,0.15); border-color: rgba(0,200,255,0.35); }
.hw-card.hw-3 .hw-icon { background: rgba(0,200,255,0.12); border-color: rgba(0,200,255,0.4); box-shadow: 0 0 24px rgba(0,200,255,0.15); }
.hw-card.hw-3 .hw-icon i { color: #00c8ff; }
.hw-card.hw-3 .hw-num { color: #00c8ff; }

.hw-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.45;
    font-family: var(--font-heading);
    z-index: 3;
}

.hw-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: hw-float 3.5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}
.hw-card:nth-child(2) .hw-icon { animation-delay: 0.7s; }
.hw-card:nth-child(3) .hw-icon { animation-delay: 1.4s; }

@keyframes hw-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}
.hw-icon i { font-size: 1.9rem; }
.hw-card h3 { font-size: 1.15rem; color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.hw-card p  { font-size: 0.88rem; color: rgba(200,200,215,0.65); line-height: 1.65; margin-bottom: 0; position: relative; z-index: 1; }
.hw-badge {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.68rem;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(0,200,255,0.10);
    border: 1px solid rgba(0,200,255,0.30);
    color: #00c8ff;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.hw-cta { text-align: center; margin-top: 44px; }
.hw-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 38px;
    background: rgba(255,255,255,0.05);
    color: #e0e0e0;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.14);
    transition: all 0.3s ease;
    text-decoration: none;
}
.hw-btn:hover {
    background: rgba(77,166,255,0.14);
    border-color: rgba(77,166,255,0.4);
    color: #4da6ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(77,166,255,0.2);
}

@media (max-width: 768px) {
    .hw-section { padding: 55px 0; }
    .hw-header { margin-bottom: 36px; }
    .hw-header h2 { font-size: 1.5rem; }
    .hw-steps {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .hw-steps::before { display: none; }
    .hw-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 18px 16px;
        gap: 16px;
    }
    .hw-icon {
        width: 54px;
        height: 54px;
        flex-shrink: 0;
        margin: 0;
    }
    .hw-icon i { font-size: 1.3rem; }
    .hw-num { display: none; }
    .hw-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
    .hw-card p { font-size: 0.8rem; }
    .hw-badge { font-size: 0.65rem; margin-top: 8px; padding: 3px 10px; }
    .hw-btn { font-size: 0.82rem; padding: 13px 26px; }
}

/* ═══════════════════════════════════════
   POPULAR SERVICES — BENTO GRID
   ═══════════════════════════════════════ */
.ps-section {
    padding: 90px 0;
    background: #000;
}
.ps-header {
    text-align: center;
    margin-bottom: 40px;
}
.ps-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4da6ff;
    border: 1px solid rgba(77,166,255,0.3);
    border-radius: 50px;
    padding: 5px 16px;
    margin-bottom: 14px;
}
.ps-header h2 { font-size: 2.2rem; color: #fff; margin-bottom: 8px; }
.ps-header p  { color: rgba(200,200,210,0.6); font-size: 0.95rem; }

.ps-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 14px;
}
.ps-card--large { grid-row: span 2; }

.ps-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.07);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.3s ease;
}
.ps-card:nth-child(1) { transition-delay: 0s; }
.ps-card:nth-child(2) { transition-delay: 0.1s; }
.ps-card:nth-child(3) { transition-delay: 0.18s; }
.ps-card:nth-child(4) { transition-delay: 0.26s; }
.ps-card:nth-child(5) { transition-delay: 0.34s; }
.ps-card.ps-visible   { opacity: 1; transform: translateY(0); }
.ps-card:hover { border-color: rgba(255,255,255,0.18); }

.ps-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.65);
}
.ps-card:hover .ps-card-img {
    transform: scale(1.06);
    filter: brightness(0.8);
}

.ps-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 55%, transparent 100%);
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.ps-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
    border: 1px solid;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.ps-card:hover .ps-card-icon { transform: scale(1.1); }

.ps-card-icon.brand-openai   { background: rgba(0,166,126,0.18);  border-color: rgba(0,166,126,0.45);  color: #00c896; }
.ps-card-icon.brand-unifi    { background: rgba(5,89,201,0.18);   border-color: rgba(5,89,201,0.45);   color: #4d8fff; }
.ps-card-icon.brand-figma    { background: rgba(242,78,30,0.18);  border-color: rgba(242,78,30,0.45);  color: #f27d5a; }
.ps-card-icon.brand-nvidia   { background: rgba(118,185,0,0.18);  border-color: rgba(118,185,0,0.45);  color: #9dd63a; }
.ps-card-icon.brand-custom-ai{ background: rgba(156,39,176,0.18); border-color: rgba(156,39,176,0.45); color: #ce80e8; }

.ps-card-body h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}
.ps-card--large .ps-card-body h3 { font-size: 1.4rem; }
.ps-card-body p {
    font-size: 0.78rem;
    color: rgba(210,210,220,0.7);
    line-height: 1.4;
    margin: 0;
}
.ps-card--large .ps-card-body p { font-size: 0.88rem; }

.ps-card-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}
.ps-card:hover .ps-card-arrow {
    background: rgba(77,166,255,0.2);
    border-color: rgba(77,166,255,0.5);
    color: #4da6ff;
    transform: translate(2px,-2px);
}

@media (max-width: 768px) {
    .ps-section { padding: 55px 0; }
    .ps-header h2 { font-size: 1.5rem; }
    .ps-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
    }
    .ps-card--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .ps-card-body h3 { font-size: 0.88rem; }
    .ps-card--large .ps-card-body h3 { font-size: 1rem; }
    .ps-card-body p  { font-size: 0.72rem; }
    .ps-card-icon { width: 34px; height: 34px; font-size: 0.9rem; border-radius: 9px; margin-bottom: 8px; }
    .ps-card-overlay { padding: 14px; }
    .ps-card-arrow { width: 28px; height: 28px; top: 12px; right: 12px; font-size: 0.65rem; }
}

@media (max-width: 480px) {
    .ps-section { padding: 45px 0; }
    .ps-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .ps-card { height: 160px; }
    .ps-card--large {
        grid-column: span 1;
        grid-row: span 1;
        height: 200px;
    }
}

/* ═══════════════════════════════════════
   TRUSTED PARTNERS STRIP
   ═══════════════════════════════════════ */
.partners-section {
    padding: 44px 0;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.partners-eyebrow {
    text-align: center;
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
    margin-bottom: 24px;
}
.partners-track-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.partners-track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: partnersScroll 32s linear infinite;
}
@keyframes partnersScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.partner-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: color 0.3s;
}
.partner-item:hover { color: rgba(255,255,255,0.65); }
.partner-item i { font-size: 1.3rem; }

/* ═══════════════════════════════════════
   INDUSTRIES WE SERVE
   ═══════════════════════════════════════ */
.industries-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #000 0%, #05080f 100%);
}
.ind-header {
    text-align: center;
    margin-bottom: 48px;
}
.ind-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00c8ff;
    border: 1px solid rgba(0,200,255,0.3);
    border-radius: 50px;
    padding: 5px 16px;
    margin-bottom: 14px;
}
.ind-header h2 { font-size: 2.2rem; color: #fff; margin-bottom: 10px; }
.ind-header p  { color: rgba(200,200,210,0.6); font-size: 0.95rem; max-width: 500px; margin: 0 auto; }

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.ind-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 220px;
    border: 1px solid rgba(255,255,255,0.07);
    cursor: pointer;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.3s;
}
.ind-card.ind-visible { opacity: 1; transform: translateY(0); }
.ind-card:nth-child(1) { transition-delay: 0s; }
.ind-card:nth-child(2) { transition-delay: 0.08s; }
.ind-card:nth-child(3) { transition-delay: 0.16s; }
.ind-card:nth-child(4) { transition-delay: 0.24s; }
.ind-card:nth-child(5) { transition-delay: 0.32s; }
.ind-card:nth-child(6) { transition-delay: 0.40s; }
.ind-card:nth-child(7) { transition-delay: 0.48s; }
.ind-card:nth-child(8) { transition-delay: 0.56s; }
.ind-card:hover { border-color: rgba(255,255,255,0.2); }

.ind-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.38);
    transition: transform 0.6s ease, filter 0.6s ease;
}
.ind-card:hover .ind-card-bg { transform: scale(1.07); filter: brightness(0.55); }
.ind-card-body {
    position: absolute;
    inset: 0;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
}
.ind-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
}
.ind-card h3 { font-size: 1rem; color: #fff; margin-bottom: 4px; }
.ind-card p  { font-size: 0.75rem; color: rgba(200,200,215,0.65); margin: 0; line-height: 1.45; }
.ind-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.58rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 50px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .industries-section { padding: 55px 0; }
    .ind-header h2 { font-size: 1.5rem; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ind-card { height: 170px; }
}
@media (max-width: 480px) {
    .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ind-card { height: 140px; }
    .ind-card h3 { font-size: 0.85rem; }
    .ind-card p  { font-size: 0.68rem; }
    .ind-icon { width: 32px; height: 32px; font-size: 0.8rem; margin-bottom: 6px; }
}

/* ═══════════════════════════════════════
   TESTIMONIALS STARS & AVATAR
   ═══════════════════════════════════════ */
.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 14px;
}
.testimonial-stars i { color: #f5c518; font-size: 0.82rem; }
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 8px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   FULL-WIDTH CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: #000;
}
.cta-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,80,200,0.14), transparent 70%),
        radial-gradient(ellipse 40% 50% at 80% 20%, rgba(77,210,200,0.07), transparent 60%);
    pointer-events: none;
}
.cta-banner-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(77,166,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77,166,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 56px 56px;
    border-radius: 24px;
    border: 1px solid rgba(77,166,255,0.14);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(4px);
}
.cta-badge {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4da6ff;
    border: 1px solid rgba(77,166,255,0.3);
    border-radius: 50px;
    padding: 4px 14px;
    margin-bottom: 14px;
}
.cta-text h2 {
    font-size: 2.3rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}
.cta-text p {
    color: rgba(200,200,215,0.65);
    font-size: 0.95rem;
    max-width: 480px;
    line-height: 1.65;
}
.cta-perks {
    display: flex;
    gap: 22px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.cta-perks span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(200,210,225,0.6);
}
.cta-perks i { color: #00c8ff; font-size: 0.82rem; }
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    min-width: 210px;
}
.cta-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 28px;
    background: #fff;
    color: #050a0f;
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.cta-btn-primary:hover {
    background: #d8eaff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(77,166,255,0.22);
    color: #050a0f;
}
.cta-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 28px;
    background: transparent;
    color: rgba(255,255,255,0.72);
    border-radius: 10px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.16);
    transition: all 0.25s ease;
}
.cta-btn-secondary:hover {
    border-color: rgba(0,200,255,0.45);
    color: #00c8ff;
    background: rgba(0,200,255,0.05);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .cta-inner { flex-direction: column; padding: 36px 24px; text-align: center; }
    .cta-text h2 { font-size: 1.8rem; }
    .cta-perks { justify-content: center; }
    .cta-actions { width: 100%; flex-direction: column; }
    .cta-btn-primary, .cta-btn-secondary { width: 100%; }
}
@media (max-width: 480px) {
    .cta-text h2 { font-size: 1.45rem; }
    .cta-inner { padding: 28px 16px; border-radius: 16px; }
    .cta-perks { gap: 12px; flex-direction: column; align-items: center; }
}
