:root {
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --secondary: #7c3aed;
    --dark: #050d1a;
    --dark-2: #0a1628;
    --dark-3: #0f1f3d;
    --dark-card: #0d1b2e;
    --text-muted-custom: #8899aa;
    --border-color: rgba(0, 212, 255, 0.15);
    --success-color: #00e676;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: #e0e8f0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* ===================== NAVBAR ===================== */
.navbar {
    background: rgba(5, 13, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-weight: 800;
    position: relative;
}

.brand-logo::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0.4;
    filter: blur(6px);
}

.brand-text .brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.brand-text .brand-name span {
    color: var(--primary);
}

.brand-text .brand-sub {
    font-size: 0.65rem;
    color: var(--text-muted-custom);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: #aabccc !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background: rgba(0, 212, 255, 0.08);
}

.navbar-toggler {
    border: 1px solid var(--border-color);
    color: var(--primary);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: white !important;
    font-weight: 600;
    padding: 10px 22px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.88rem;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.35);
    color: white !important;
}

/* ===================== HERO ===================== */
.hero-section {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow-1 {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.hero-badge .badge-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted-custom);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), #0099cc);
    border: none;
    color: var(--dark) !important;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    color: var(--dark) !important;
}

.btn-outline-custom {
    background: transparent;
    border: 1px solid var(--border-color);
    color: white !important;
    font-weight: 600;
    padding: 15px 36px;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-outline-custom:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.08);
    color: var(--primary) !important;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-stat-item .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.hero-stat-item .stat-number span {
    color: var(--primary);
}

.hero-stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted-custom);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-container {
    position: relative;
    width: 280px;
    height: 280px;
}

.shield-main {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(124, 58, 237, 0.15));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: shield-pulse 3s ease-in-out infinite;
}

@keyframes shield-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.3);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 60px 20px rgba(0, 212, 255, 0.1);
    }
}

.shield-icon {
    font-size: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.orbit-1,
.orbit-2,
.orbit-3 {
    position: absolute;
    border: 1px dashed rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 340px;
    height: 340px;
    animation: orbit-spin 12s linear infinite;
}

.orbit-2 {
    width: 420px;
    height: 420px;
    animation: orbit-spin 18s linear infinite reverse;
}

.orbit-3 {
    width: 500px;
    height: 500px;
    animation: orbit-spin 25s linear infinite;
}

@keyframes orbit-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.orbit-node {
    position: absolute;
    width: 36px;
    height: 36px;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--primary);
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
}

.floating-card {
    position: absolute;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px 18px;
    backdrop-filter: blur(10px);
    animation: float-card 4s ease-in-out infinite;
}

.floating-card-1 {
    top: 40px;
    right: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 60px;
    left: -30px;
    animation-delay: 2s;
}

.floating-card-3 {
    top: 50%;
    right: -50px;
    animation-delay: 1s;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.floating-card .card-label {
    font-size: 0.7rem;
    color: var(--text-muted-custom);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.floating-card .card-value {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success-color);
    animation: pulse-dot 2s infinite;
}

/* ===================== SECTION STYLES ===================== */
.section-padding {
    padding: 100px 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted-custom);
    line-height: 1.8;
    max-width: 620px;
}

.divider-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 16px 0 24px;
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
    background: var(--dark-2);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 28px 0;
    overflow: hidden;
}

.trust-label {
    font-size: 0.78rem;
    color: var(--text-muted-custom);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.trust-items {
    display: flex;
    align-items: center;
    gap: 48px;
    overflow: hidden;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted-custom);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.trust-item:hover {
    color: var(--primary);
}

.trust-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ===================== SERVICES ===================== */
.services-section {
    background: var(--dark-2);
    position: relative;
    overflow: hidden;
}

.service-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrap {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted-custom);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    font-size: 0.85rem;
    color: #8899aa;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--success-color);
    font-size: 0.8rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    color: var(--primary);
    gap: 12px;
}

/* ===================== WHY US ===================== */
.why-us-section {
    background: var(--dark);
    position: relative;
}

.why-card {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    background: var(--dark-card);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    margin-bottom: 8px;
}

.why-card h5 {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.87rem;
    color: var(--text-muted-custom);
    line-height: 1.7;
    margin: 0;
}

/* ===================== HOW IT WORKS ===================== */
.process-section {
    background: var(--dark-2);
}

.process-step {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-connector {
    position: absolute;
    top: 50px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0.4;
}

.process-step:last-child .step-connector {
    display: none;
}

.process-step h5 {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted-custom);
    line-height: 1.7;
}

/* ===================== PRICING ===================== */
.pricing-section {
    background: var(--dark);
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 34px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(124, 58, 237, 0.06));
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
}

.pricing-card .plan-name {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pricing-card .plan-desc {
    font-size: 0.87rem;
    color: var(--text-muted-custom);
    margin-bottom: 28px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

.price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted-custom);
}

.price-note {
    font-size: 0.78rem;
    color: var(--text-muted-custom);
    margin-bottom: 28px;
}

.pricing-divider {
    border-color: var(--border-color);
    margin: 24px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 9px 0;
    font-size: 0.9rem;
    color: #aabccc;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i.bi-check-circle-fill {
    color: var(--success-color);
    font-size: 0.9rem;
}

.pricing-features li i.bi-x-circle-fill {
    color: #444;
    font-size: 0.9rem;
}

.pricing-features li.disabled {
    color: #4a5a6a;
}

.btn-pricing {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-pricing-outline {
    border: 1px solid var(--border-color);
    color: white;
    background: transparent;
}

.btn-pricing-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 212, 255, 0.08);
}

.btn-pricing-solid {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: white;
}

.btn-pricing-solid:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
    background: var(--dark-2);
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.92rem;
    color: #aabccc;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: white;
    font-size: 0.92rem;
}

.author-role {
    font-size: 0.78rem;
    color: var(--text-muted-custom);
}

/* ===================== CERTIFICATIONS ===================== */
.certs-section {
    background: var(--dark);
}

.cert-item {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
}

.cert-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.cert-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.cert-body {
    font-size: 0.75rem;
    color: var(--text-muted-custom);
    margin-top: 4px;
}

/* ===================== CONTACT ===================== */
.contact-section {
    background: var(--dark-2);
}

.contact-card {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 45px;
}

.form-control-custom {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: white;
    padding: 14px 18px;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control-custom::placeholder {
    color: var(--text-muted-custom);
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-label-custom {
    font-size: 0.85rem;
    font-weight: 600;
    color: #aabccc;
    margin-bottom: 8px;
    display: block;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-item h6 {
    font-size: 0.8rem;
    color: var(--text-muted-custom);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: white;
    margin: 0;
    font-weight: 500;
}

.contact-info-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-item a:hover {
    color: var(--primary);
}

/* ===================== CTA BANNER ===================== */
.cta-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-inner {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: white;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 1.05rem;
    color: var(--text-muted-custom);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

/* ===================== FOOTER ===================== */
.footer {
    background: #020810;
    border-top: 1px solid var(--border-color);
    padding: 70px 0 0;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted-custom);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted-custom);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted-custom);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    margin-top: 60px;
}

.footer-bottom p {
    font-size: 0.83rem;
    color: var(--text-muted-custom);
    margin: 0;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

.uk-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===================== MISC UTILITIES ===================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-dark-section {
    background: var(--dark-2);
}

@media (max-width: 992px) {
    .hero-visual {
        height: 380px;
    }

    .orbit-3 {
        display: none;
    }

    .floating-card-3 {
        display: none;
    }

    .contact-card {
        padding: 36px 28px;
    }

    .cta-inner {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-visual {
        display: none;
    }

    .cta-inner {
        padding: 40px 24px;
    }

    .contact-card {
        padding: 30px 20px;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Alert Banner */
.alert-banner {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 500;
}

.alert-banner a {
    color: white;
    text-decoration: underline;
}