/*
Theme Name: Vortex
Theme URI: https://vortex.io
Author: Vortex Team
Author URI: https://vortex.io
Description: A powerful social media marketing platform theme with modern design and dynamic features.
Version: 1.0.0
License: GPL-2.0+
Text Domain: vortex
*/

:root {
    --navy: #0A0F2E;
    --navy2: #111535;
    --card: #141836;
    --violet: #6C3FFF;
    --violet2: #8A63FF;
    --cyan: #00D4FF;
    --white: #FFFFFF;
    --muted: #8892B0;
    --border: rgba(108, 63, 255, 0.18);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--navy);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
}

/* === NAVBAR === */
.navbar {
    background: rgba(10, 15, 46, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Syne', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--cyan);
}

.navbar-nav .nav-link {
    color: var(--muted) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 1rem !important;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
}

.btn-nav-signin {
    border: 1px solid var(--border);
    color: var(--white);
    background: transparent;
    padding: 0.45rem 1.2rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-nav-signin:hover {
    background: var(--card);
}

.btn-vx {
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    border: none;
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    transition: opacity 0.2s, transform 0.2s;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.btn-vx:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    color: #fff;
}

.btn-vx-sm {
    padding: 0.45rem 1.2rem;
    font-size: 0.875rem;
}

.btn-outline-vx {
    border: 1.5px solid var(--violet);
    color: var(--white);
    background: transparent;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-vx:hover {
    background: var(--violet);
    color: #fff;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    padding-top: 90px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(108, 63, 255, 0.22) 0%, rgba(0, 212, 255, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    from {
        transform: scale(1);
        opacity: 0.7;
    }
    to {
        transform: scale(1.12);
        opacity: 1;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(108, 63, 255, 0.12);
    border: 1px solid rgba(108, 63, 255, 0.3);
    color: var(--cyan);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -1.5px;
    margin-bottom: 1.2rem;
}

.hero h1 .grad {
    background: linear-gradient(90deg, var(--violet2), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p.lead {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(108, 63, 255, 0.1);
}

.hero-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: brightness(0.88) saturate(1.1);
}

.hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 63, 255, 0.3) 0%, rgba(0, 212, 255, 0.1) 100%);
    mix-blend-mode: multiply;
}

.hero-pill {
    position: absolute;
    z-index: 2;
    background: rgba(10, 15, 46, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.55rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.hp-1 {
    bottom: 24px;
    left: 20px;
}

.hp-2 {
    top: 24px;
    right: 20px;
}

.hp-3 {
    bottom: 24px;
    right: 20px;
}

.hero-stat-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-stat .num {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
}

.hero-stat .lbl {
    font-size: 0.78rem;
    color: var(--muted);
}

.stat-divider {
    border-left: 1px solid var(--border);
    padding-left: 2rem;
}

/* === TICKER === */
.ticker-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(20, 24, 54, 0.7);
    padding: 0.9rem 0;
}

.ticker-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
}

.ticker-item img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 3px;
}

/* === SECTION GLOBALS === */
section {
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.7rem;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

.py-section {
    padding: 6rem 0;
}

/* === ABOUT === */
.about-img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--border);
    filter: brightness(0.85) saturate(1.1);
}

.about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 46, 0.6) 0%, transparent 60%);
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.4rem;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--violet);
}

.stat-card .stat-num {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    background: linear-gradient(90deg, var(--violet2), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card .stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

/* === SERVICES === */
.svc-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    position: relative;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
    opacity: 0;
    transition: opacity 0.25s;
}

.svc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 63, 255, 0.4);
    box-shadow: 0 20px 50px rgba(108, 63, 255, 0.15);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    filter: brightness(0.8) saturate(1.1);
}

.svc-img-overlay {
    position: relative;
}

.svc-img-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--card) 100%);
}

.svc-body {
    padding: 1.4rem 1.6rem 1.6rem;
}

.svc-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.svc-card p {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

.svc-arrow {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--cyan);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    transition: gap 0.2s;
}

.svc-card:hover .svc-arrow {
    gap: 0.6rem;
}

/* === PROCESS === */
.process-step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
}

.process-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(1.1);
}

.process-body {
    padding: 1.5rem;
}

.step-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, rgba(108, 63, 255, 0.4), rgba(0, 212, 255, 0.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.6rem;
}

.process-step h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* === TESTIMONIALS === */
.testi-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    transition: border-color 0.25s;
}

.testi-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.testi-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: brightness(0.8) saturate(1.1);
}

.testi-body {
    padding: 1.5rem;
}

.testi-quote {
    font-size: 2.2rem;
    line-height: 1;
    color: var(--violet);
    font-family: 'Syne', sans-serif;
    margin-bottom: 0.75rem;
}

.testi-body p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.testi-name {
    font-weight: 700;
    font-size: 0.92rem;
}

.testi-role {
    font-size: 0.78rem;
    color: var(--muted);
}

.stars {
    color: #F59E0B;
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
}

.avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 2px solid var(--border);
}

/* === CTA BAND === */
.cta-band {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.cta-band-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(1.2);
}

.cta-band-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 63, 255, 0.55), rgba(0, 212, 255, 0.25));
}

.cta-band-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 5rem 2rem;
}

.cta-band-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-band-content p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

/* === BLOG === */
.blog-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.25s, border-color 0.25s;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(108, 63, 255, 0.4);
}

.blog-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    filter: brightness(0.82) saturate(1.1);
}

.blog-body {
    padding: 1.4rem;
}

.blog-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.4rem;
}

.blog-card h5 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.blog-card p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

.blog-meta {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* === NEWSLETTER === */
.newsletter-input {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--white);
    border-radius: 10px;
    padding: 0.75rem 1.1rem;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-input:focus {
    border-color: var(--violet);
}

.newsletter-input::placeholder {
    color: var(--muted);
}

/* === FOOTER === */
footer {
    background: var(--navy2);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-family: 'Syne', sans-serif;
}

.footer-brand span {
    color: var(--cyan);
}

footer p.footer-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 1.25rem;
}

.footer-heading {
    font-family: 'Syne', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--card);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: all 0.2s;
    text-decoration: none;
    font-size: 1rem;
}

.social-btn:hover {
    background: var(--violet);
    color: #fff;
    border-color: var(--violet);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--muted);
}

/* === FEATURE STRIP === */
.feature-strip {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
}

.feature-strip-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-strip h6 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.feature-strip p {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* === WA FAB === */
.wa-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    z-index: 999;
    transition: transform 0.2s;
}

.wa-fab:hover {
    transform: scale(1.1);
    color: white;
}

/* === REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-img-wrap img {
        height: 280px;
    }
    .hp-3 {
        display: none;
    }
}