@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@400;700;900&display=swap');

:root {
    --bg-dark: #000205;
    --bg-surface: #01060f;
    --primary-blue: #00d2ff;
    /* Cyan neon */
    --primary-green: #00ff41;
    --text-pure: #FFFFFF;
    --text-muted: #8a99af;
    --glass-bg: rgba(1, 6, 15, 0.85);
    --glass-border: rgba(0, 210, 255, 0.25);
    --glow-blue: 0 0 25px rgba(0, 210, 255, 0.4);
    --glow-green: 0 0 25px rgba(0, 255, 65, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}

button,
a,
input,
select {
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-pure);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.circuit-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.1;
    background-image:
        radial-gradient(circle at 20% 30%, var(--primary-blue) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, var(--primary-blue) 1px, transparent 1px);
    background-size: 100px 100px;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    height: 1px;
    width: 100%;
    opacity: 0.2;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.neon-blue {
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.neon-green {
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
}

.btn-cyber {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-cyan {
    background: var(--primary-blue);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
}

.btn-green {
    background: var(--primary-green);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 153, 0.3);
}

.btn-green:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 153, 0.6);
}




.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 153, 0.3);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 40px rgba(0, 255, 153, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 153, 0.3);
    }
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 0;
    transition: all 0.3s ease;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

header.sticky {
    padding: 8px 0;
    background: rgba(5, 5, 8, 0.98);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.region-tag {
    font-size: 0.75rem;
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: 2px;
    border-left: 2px solid var(--primary-blue);
    padding-left: 15px;
    height: 20px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 110px;
    padding-bottom: 30px;
    overflow: hidden;
    /* Ensure watermark doesn't overflow */
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 102, 255, 0.05) 0%, transparent 40%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 80%;
    background-image: url('../assets/images/moove.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.15;
    filter: brightness(3) saturate(0);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
}

.hero-text {
    flex: 1.2;
    z-index: 2;
}

.eyebrow {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.stat-badge-inline {
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.stat-badge-inline:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    border-color: var(--primary-blue);
}

/* --- Hero Form --- */
.hero-form-wrapper {
    padding: 30px;
    width: 100%;
    max-width: 450px;
    flex: 0.8;
}

.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 12px 15px;
    border-radius: 8px;
    color: white;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.cyber-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(41, 121, 255, 0.1);
}

/* --- Power CRM Deep Customization --- */
#pwrcrm {
    background: rgba(2, 11, 28, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(0, 255, 65, 0.5) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    width: 100% !important;
    max-width: 480px !important;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.15), 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 255, 65, 0.05) !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    /* Align to the right of the column */
}

/* Force everything inside to be full width */
#pwrcrm * {
    max-width: 100% !important;
}

section#pwrcrm,
#pwrcrmform {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

#pwrcrmform {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 1 !important;
}

#pwrcrmform .pwrcrmInputCont {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

#pwrcrmform .pwrcrmInputCont label {
    font-size: 0.65rem !important;
    color: var(--text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 700 !important;
    margin-left: 2px !important;
}

#pwrcrmform .pwrcrmInputCont label strong {
    color: var(--primary-blue) !important;
}

#pwrcrmform input,
#pwrcrmform select {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid var(--glass-border) !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    color: white !important;
    font-size: 0.85rem !important;
    height: 42px !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

#pwrcrmform input:focus,
#pwrcrmform select:focus {
    outline: none !important;
    border-color: var(--primary-blue) !important;
    background: rgba(41, 121, 255, 0.1) !important;
}

#pwrcrmform select {
    cursor: pointer !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232979ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 12px !important;
}

#pwrcrmform select option {
    background: #0a0a10 !important;
    color: white !important;
}

/* Hide doubled terms */
.pwrcrmTerms {
    display: none !important;
}

#pwrcrmform .pwrcrmTerms {
    display: block !important;
    font-size: 0.65rem !important;
    color: var(--text-muted) !important;
    margin-top: 5px !important;
    text-align: center !important;
    opacity: 0.7;
}

.pwrcrmTerms a {
    color: var(--primary-blue) !important;
    text-decoration: underline !important;
}

/* Submit Button Customization */
#pwrcrmform button[type="submit"] {
    width: 100% !important;
    padding: 14px !important;
    background: var(--primary-green) !important;
    color: #050508 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: 1px !important;
    margin-top: 10px !important;
    font-size: 0.9rem !important;
}

#pwrcrmform button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--glow-green) !important;
}

/* Layout Row */
.pwrcrm-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
}

@media (max-width: 600px) {
    .pwrcrm-row {
        grid-template-columns: 1fr;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-disclaimer {
    font-size: 0.75rem !important;
    text-align: center;
    margin-bottom: 0 !important;
}

.form-disclaimer a {
    color: var(--primary-blue);
    text-decoration: none;
}

.w-100 {
    width: 100%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-form-wrapper {
        margin: 0 auto;
    }
}


/* --- Cost Benefit --- */
.cost-benefit {
    padding: 60px 0;
    background: radial-gradient(circle at 10% 50%, rgba(41, 121, 255, 0.03) 0%, transparent 50%);
}

.cost-benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.main-benefit-img {
    max-width: 125%;
    width: 125%;
    margin-left: -15%;
    /* Balanced overlap */
    filter: drop-shadow(0 0 50px rgba(41, 121, 255, 0.3));
    transition: transform 0.5s ease;
}

.main-benefit-img:hover {
    transform: scale(1.02);
}

.benefit-info h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.benefit-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.benefit-features i {
    width: 25px;
    text-align: center;
    font-size: 1.2rem;
}

.benefit-info {
    width: 100%;
    padding-left: 0;
    /* Reset padding to use gap instead */
}

@media (max-width: 1024px) {
    .cost-benefit-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .main-benefit-img {
        max-width: 100%;
        margin-left: 0;
    }

    .benefit-features li {
        justify-content: center;
    }
}

/* --- Ticker --- */
.ticker-wrap {
    background: var(--bg-surface);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    padding: 15px 0;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-muted);
}

.ticker-item span {
    color: var(--primary-blue);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --- Pain vs Solution --- */
.comparison {
    padding: 60px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.comp-card {
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.comp-card:hover {
    transform: translateY(-5px);
}

.comp-card.pain {
    border: 1px solid rgba(255, 60, 60, 0.2);
    background: linear-gradient(135deg, rgba(255, 60, 60, 0.05) 0%, transparent 100%);
}

.comp-card.solution {
    border: 1px solid rgba(0, 102, 255, 0.2);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 100%);
    box-shadow: var(--glow-blue);
}

.comp-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.comp-list {
    list-style: none;
}

.comp-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Categories --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--glow-blue);
    background: rgba(41, 121, 255, 0.05);
}

.category-card i {
    font-size: 3.5rem;
    transition: transform 0.3s ease;
}

.category-card:hover i {
    transform: scale(1.1);
}

.category-card span {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

@media (max-width: 968px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Tech Cards --- */
.tech-differentials {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-card {
    padding: 40px;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
    position: relative;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--primary-blue);
    transition: height 0.3s ease;
}

.tech-card:hover::before {
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: var(--glow-blue);
}

.tech-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

/* --- Premium Services --- */
.premium-services {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 102, 255, 0.02), transparent);
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.premium-item {
    padding: 50px 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.premium-item:hover {
    border-color: var(--primary-blue);
    transform: scale(1.02);
    box-shadow: var(--glow-blue);
}

.premium-icon {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(0, 102, 255, 0.3));
}

.premium-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.premium-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Calculator --- */
.calculator-section {
    padding: 60px 0;
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
}

.calc-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
}

.calc-slider {
    width: 100%;
    margin: 30px 0;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--bg-dark);
    border-radius: 4px;
    outline: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary-blue);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px var(--primary-blue);
}

.savings-display {
    text-align: center;
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
}

/* --- Testimonials --- */
.testimonials {
    padding: 60px 0;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    padding: 20px;
}

.testimonial-card {
    min-width: 350px;
    padding: 30px;
}

/* --- Final Call --- */
.final-call {
    padding: 80px 0;
    text-align: center;
}

.final-call h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* --- Footer --- */
footer {
    padding: 50px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-form-wrapper {
        margin: 0 auto;
    }

    .hero-image {
        justify-content: center;
        width: 100%;
        margin-top: 40px;
    }

    .hero-image img {
        max-width: 100%;
    }

    .badge-top {
        right: 0;
    }

    .badge-bottom {
        left: 0;
    }
}

@media (max-width: 768px) {

    .comparison-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .stat-badge {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

/* --- Protection Summary --- */
.protection-summary {
    padding: 80px 0;
}

.protection-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.protection-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.protection-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.protection-list i {
    min-width: 25px;
    margin-top: 4px;
    /* Align icon with text top */
    font-size: 1.2rem;
}

.protection-image img {
    width: 140%;
    max-width: none;
    margin-left: -20%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(0, 102, 255, 0.2));
    transition: transform 0.5s ease;
}

.protection-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .protection-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .protection-image {
        margin-bottom: 40px;
        order: -1;
    }

    .protection-list li {
        justify-content: center;
        text-align: left;
        /* Keep text aligned left for readability even centered */
    }

    .section-title {
        text-align: center !important;
    }
}