:root {
    --primary: #9B5DE5;
    --primary-hover: #7b46ba;
    --secondary: #3B82F6;
    --dark-bg: #273040;
    --card-bg: #1A1A1A;
    --text-main: #E5E7EB;
    --text-muted: #9CA3AF;
    --gradient-main: linear-gradient(135deg, #9B5DE5 0%, #3B82F6 100%);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary);
    font-weight: 800;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 15px rgba(155, 93, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(155, 93, 229, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    color: white;
    border-color: white;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(155, 93, 229, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(155, 93, 229, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(155, 93, 229, 0);
    }
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.company-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* Hero */
.hero {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
    background-image: radial-gradient(circle at 50% 0%, rgba(155, 93, 229, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.headline {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-wrap: balance;
    line-height: 1.1;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.benefits-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list i {
    color: var(--secondary);
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Problem Solution */
.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.icon-box.red {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.solution-bridge {
    text-align: center;
    margin-top: 40px;
}

.arrow-down {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(145deg, #1e1e1e, #141414);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.service-card:hover {
    border-color: var(--secondary);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Proof */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin-bottom: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
}

.stat-item .number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary);
    font-family: var(--font-heading);
}

.stat-item .label {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.authority-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-main);
}

/* Form */
.form-section {
    background: #111;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(155, 93, 229, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.form-title {
    text-align: center;
    margin-bottom: 10px;
}

.form-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    background: #0B0B0B;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
}

.full-width {
    width: 100%;
    margin-top: 20px;
}

.form-status {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    min-height: 24px;
}

.success {
    color: #10B981;
}

.error {
    color: #EF4444;
}

/* Footer */
.footer-cta {
    text-align: center;
    padding: 80px 0 40px;
}

.footer-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-buttons {
    margin: 40px 0;
}

.footer-legal {
    color: #444;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 1.5rem;
    }

    .hero {
        padding: 80px 0 50px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-wrapper {
        padding: 40px 20px;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Page Frame & New Hero Image */
@media (min-width: 1024px) {
    body {
        background-color: #050505;
        /* Darker background for contrast */
    }

    .page-frame {
        max-width: 1440px;
        margin: 0 auto;
        background-color: var(--dark-bg);
        min-height: 100vh;
        box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
        position: relative;
        overflow-x: hidden;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.hero-image-container {
    width: 100%;
    margin: 3rem 0;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.hero-img {
    width: 100%;
    max-width: 850px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(155, 93, 229, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}