/* Modern CSS Reset & Variables */
:root {
    /* Color Palette */
    --primary: #fc0374;
    /* Fuchsia Main */
    --primary-dark: #d60061;
    /* Fuchsia Dark */
    --secondary: #ff4d9e;
    /* Lighter Pink */
    --accent: #a6004d;
    /* Deep Pink/Red */

    --bg-body: #090b11;
    /* Deep Void */
    --bg-surface: #13151a;
    /* Dark Surface */
    --bg-surface-light: #1f232b;
    /* Lighter Surface */

    --text-main: #ffffff;
    --text-muted: #8890a0;
    --text-inverse: #0F172A;
    /* Slate 900 */

    --border: #2d3342;
    --white: #ffffff;
    /* Pure White */

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(252, 3, 116, 0.15), transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    overflow-x: hidden;
}

#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    /* Allow clicks to pass through */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(252, 3, 116, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(252, 3, 116, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(252, 3, 116, 0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    box-shadow: 0 0 15px rgba(252, 3, 116, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(252, 3, 116, 0.8);
    opacity: 1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(to right, var(--white), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(252, 3, 116, 0.1);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary);
}

.elementor-logo-small {
    height: 24px;
    width: auto;
    margin-left: 0.5rem;
    filter: drop-shadow(0 0 5px rgba(252, 3, 116, 0.3));
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
        font-weight: 500;
        color: var(--text-muted);
    }

    .nav-links a:hover {
        color: var(--primary);
    }
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background: transparent;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem 0.25rem 0.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: var(--white);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.pill-new {
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    text-shadow: 0 0 40px rgba(252, 3, 116, 0.3);
}

.hero h1 span {
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary);
    /* Fallback */
}

.hero p {
    font-size: 1.25rem;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.hero-check svg {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.hero-dashboard {
    margin: 0 auto 2rem auto;
    position: relative;
    border-radius: 50%;
    box-shadow:
        0 0 40px rgba(252, 3, 116, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 200px;
    aspect-ratio: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-dashboard img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.elementor-badge {
    position: absolute;
    top: 40px;
    right: 10px;
    width: 50px !important;
    height: 50px !important;
    transform: translate(50%, -50%);
    background: var(--bg-surface);
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 0 15px rgba(252, 3, 116, 0.5), 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
    object-fit: contain;
}

/* Features Grid */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--bg-body);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    box-shadow: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, transparent, var(--primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(252, 3, 116, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    box-shadow: 0 0 15px rgba(252, 3, 116, 0.2);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 0 20px rgba(252, 3, 116, 0.6);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Why Choose Us */
.why-us {
    padding: var(--spacing-xl) 0;
    background: var(--bg-surface);
    color: var(--text-main);
}

.why-us .section-title {
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--white);
}

.why-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-sticky-content {
    position: sticky;
    top: 120px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.why-row:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    border-bottom-color: var(--primary);
}

.why-row-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(252, 3, 116, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.why-row-icon svg {
    width: 20px;
    height: 20px;
}

.why-row-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.why-row-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 768px) {

    .footer-grid,
    .footer-grid-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-legal {
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .why-split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-sticky-content {
        position: relative;
        top: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .why-sticky-content h2,
    .why-sticky-content p {
        text-align: center !important;
    }

    .checkmark-wrapper {
        margin: 0 auto 1rem auto;
    }
}

/* Checkmark Animation */
.checkmark-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.checkmark-anim {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--primary);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--primary);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--primary);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px transparent;
    }
}

/* CTA Bottom */
.cta-bottom {
    padding: 10rem 0;
    text-align: center;
    background: #020205;
    position: relative;
    overflow: hidden;
}

.warp-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.star-layer {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 200%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 50px 160px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0, 0, 0, 0));
    background-size: 200px 200px;
    animation: warpSpeed 5s linear infinite;
}

.layer-2 {
    background-size: 300px 300px;
    animation-duration: 8s;
    opacity: 0.7;
}

.layer-3 {
    background-size: 400px 400px;
    animation-duration: 12s;
    opacity: 0.5;
}

@keyframes warpSpeed {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(50%);
    }
}

.rocket-scene {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rocket-wrapper {
    width: 120px;
    height: 120px;
    position: relative;
    margin-bottom: 2rem;
    animation: floatRocket 3s ease-in-out infinite;
}

.rocket-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(252, 3, 116, 0.5));
}

.rocket-exhaust {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(252, 3, 116, 1), transparent);
    border-radius: 50%;
    filter: blur(5px);
    animation: exhaustPulse 0.2s infinite alternate;
}

@keyframes floatRocket {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes exhaustPulse {
    0% {
        height: 60px;
        opacity: 0.8;
    }

    100% {
        height: 80px;
        opacity: 1;
    }
}

.cta-card {
    background: rgba(11, 16, 27, 0.8);
    border: 1px solid rgba(252, 3, 116, 0.3);
    padding: 4rem 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 10;
    backdrop-filter: blur(20px);
    box-shadow:
        0 0 30px rgba(252, 3, 116, 0.2),
        inset 0 0 20px rgba(252, 3, 116, 0.1);
    max-width: 800px;
    margin: 0 auto;
    transform-style: preserve-3d;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-bottom p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-surface);
    transform: translateY(-2px);
}

/* FAQs Section */
.faqs {
    padding: var(--spacing-xl) 0;
    background: var(--bg-body);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(252, 3, 116, 0.3);
    box-shadow: 0 4px 20px rgba(252, 3, 116, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(252, 3, 116, 0.1), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: rgba(19, 21, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), transparent, var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    pointer-events: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(31, 35, 43, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(252, 3, 116, 0.1), 0 0 15px rgba(252, 3, 116, 0.2);
    background: rgba(31, 35, 43, 1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.form-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: rgba(31, 35, 43, 0.8);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.form-checkbox input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(252, 3, 116, 0.3);
}

.form-checkbox input[type="checkbox"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='3' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.form-checkbox label {
    color: var(--text-muted);
    font-size: 0.95rem;
    cursor: pointer;
    line-height: 1.5;
}

.form-checkbox label a {
    color: var(--primary);
    text-decoration: underline;
    transition: var(--transition);
}

.form-checkbox label a:hover {
    color: var(--secondary);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: rgb(52, 211, 153);
}

.form-message-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: rgb(248, 113, 113);
}

/* Spin Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }
}

/* Alternative Hero CTA */
.cta-hero-alt {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: var(--bg-body);
    position: relative;
    overflow: hidden;
}

#cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-hero-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(252, 3, 116, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(252, 3, 116, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    opacity: 0.2;
}

.cta-hero-alt .container {
    position: relative;
    z-index: 10;
}

.cta-corner {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 5;
}

.cta-corner::before,
.cta-corner::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 20px rgba(252, 3, 116, 0.5);
}

.cta-corner::before {
    width: 100%;
    height: 2px;
}

.cta-corner::after {
    width: 2px;
    height: 100%;
}

.cta-corner-tl {
    top: 0;
    left: 0;
}

.cta-corner-tl::before {
    top: 0;
    left: 0;
}

.cta-corner-tl::after {
    top: 0;
    left: 0;
}

.cta-corner-tr {
    top: 0;
    right: 0;
}

.cta-corner-tr::before {
    top: 0;
    right: 0;
}

.cta-corner-tr::after {
    top: 0;
    right: 0;
}

.cta-corner-bl {
    bottom: 0;
    left: 0;
}

.cta-corner-bl::before {
    bottom: 0;
    left: 0;
}

.cta-corner-bl::after {
    bottom: 0;
    left: 0;
}

.cta-corner-br {
    bottom: 0;
    right: 0;
}

.cta-corner-br::before {
    bottom: 0;
    right: 0;
}

.cta-corner-br::after {
    bottom: 0;
    right: 0;
}

.cta-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero-cta {
    font-size: 1rem;
    padding: 1rem 2rem;
    box-shadow:
        0 0 30px rgba(252, 3, 116, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.5);
}

.btn-hero-cta:hover {
    box-shadow:
        0 0 50px rgba(252, 3, 116, 0.9),
        0 15px 40px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .cta-hero-alt {
        padding: 6rem 0;
    }

    .cta-hero-title {
        font-size: 2.5rem;
    }

    .cta-hero-subtitle {
        font-size: 1.125rem;
    }

    .cta-corner {
        width: 60px;
        height: 60px;
    }
}

/* Footer */
.footer {
    background: var(--bg-surface);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-grid-simple {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-author {
    font-size: 0.9rem;
    margin-top: 0.5rem !important;
}

.footer-legal h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-legal a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary);
}

.footer-col h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.footer-location {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Download Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 11, 17, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: relative;
    max-width: 550px;
    width: 90%;
    background: rgba(19, 21, 26, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(252, 3, 116, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow:
        0 0 60px rgba(252, 3, 116, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(252, 3, 116, 0.1);
    border-color: var(--primary);
}

.modal-close:hover svg {
    color: var(--primary);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(252, 3, 116, 0.2), rgba(166, 0, 77, 0.2));
    border: 2px solid rgba(252, 3, 116, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow 2s ease-in-out infinite;
}

.modal-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--white), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.modal-form-group {
    margin-bottom: 1.5rem;
}

.modal-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.modal-form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(31, 35, 43, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.modal-form-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.modal-form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(252, 3, 116, 0.1), 0 0 15px rgba(252, 3, 116, 0.2);
    background: rgba(31, 35, 43, 1);
}

.modal-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.modal-message {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: none;
}

.modal-message.show {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.modal-message.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: rgb(52, 211, 153);
}

.modal-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: rgb(248, 113, 113);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-container {
        padding: 2rem 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-subtitle {
        font-size: 0.9rem;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
    }

    .modal-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Ajustes generales de tamaño para que no se vea "gigante" */

    /* Header más compacto */
    .header {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.2rem;
        /* Logo más pequeño */
    }

    .logo svg {
        width: 20px;
        /* Icono del logo ajustado */
        height: 20px;
    }

    /* Botón del header optimizado */
    .nav-container .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Ocultar elementos en móvil */
    .hide-on-mobile {
        display: none;
    }

    /* Hero Section - Reducción de tamaños */
    .hero {
        padding: 140px 0 60px;
        /* Menos espacio arriba */
    }

    .hero h1 {
        font-size: 2.5rem;
        /* Reducido de 3.5rem */
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-dashboard {
        max-width: 150px;
        /* Imagen más pequeña */
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-grid,
    .footer-grid-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-legal {
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .why-split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-sticky-content {
        position: relative;
        top: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .why-sticky-content h2,
    .why-sticky-content p {
        text-align: center !important;
    }

    .checkmark-wrapper {
        margin: 0 auto 1rem auto;
    }

    /* Ajustes formulario modal móvil */
    .modal-container {
        padding: 1.5rem;
        width: 95%;
    }

    .cta-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    /* Ajustes generales de tamaño para que no se vea "gigante" */

    /* Header más compacto */
    .header {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.2rem;
        /* Logo más pequeño */
    }

    .logo svg {
        width: 20px;
        /* Icono del logo ajustado */
        height: 20px;
    }

    /* Botón del header optimizado */
    .nav-container .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Ocultar elementos en móvil */
    .hide-on-mobile {
        display: none;
    }

    /* Hero Section - Reducción de tamaños */
    .hero {
        padding: 140px 0 60px;
        /* Menos espacio arriba */
    }

    .hero h1 {
        font-size: 2.5rem;
        /* Reducido de 3.5rem */
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-dashboard {
        max-width: 150px;
        /* Imagen más pequeña */
    }

    .section-title {
        font-size: 2rem;
    }

    /* Footer Mobile Centrado */
    .footer-grid,
    .footer-grid-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        /* Centra texto general */
    }

    /* Centramos la marca (Logo + Texto) */
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Centra el logo horizontalmente */
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-legal {
        text-align: center;
    }

    /* Centramos la lista de enlaces legales */
    .footer-legal ul {
        align-items: center;
        /* Centra los items flex (enlaces) */
    }

    .why-split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-sticky-content {
        position: relative;
        top: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .why-sticky-content h2,
    .why-sticky-content p {
        text-align: center !important;
    }

    .checkmark-wrapper {
        margin: 0 auto 1rem auto;
    }

    /* Ajustes formulario modal móvil */
    .modal-container {
        padding: 1.5rem;
        width: 95%;
    }

    .cta-hero-title {
        font-size: 2rem;
    }
}