:root {
    --bg-dark: #020617;
    --bg-card: rgba(30, 41, 59, 0.7);
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --secondary: #0ea5e9;
    --accent: #22d3ee;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Epilogue', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography & Colors */
.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
}

.main-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 50px;
    width: auto;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    opacity: 0.8;
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px var(--primary-glow), 0 0 30px rgba(59, 130, 246, 0.3);
    animation: neonPulse 2s infinite alternate;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 25px var(--primary-glow), 0 0 50px var(--primary-glow);
    filter: brightness(1.1);
}

@keyframes neonPulse {
    from {
        box-shadow: 0 0 15px var(--primary-glow), 0 0 30px rgba(59, 130, 246, 0.2);
    }
    to {
        box-shadow: 0 0 25px var(--primary-glow), 0 0 45px rgba(59, 130, 246, 0.5);
    }
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transform: scale(1.1);
    animation: zoomOut 20s infinite alternate;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent, var(--bg-dark));
}

.hero-content {
    max-width: 800px;
    text-align: left;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Animations */
@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.6s forwards;
}

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

/* Services */
.services {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-card:hover .read-more {
    gap: 0.8rem;
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    padding: 2rem;
}

.modal-content {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
    margin: 5% auto;
    padding: 3rem;
    border: 1px solid var(--glass-border);
    width: 90%;
    max-width: 700px;
    border-radius: 32px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalAppear 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalAppear {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    right: 2rem;
    top: 1.5rem;
    color: var(--text-muted);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-body h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.modal-body p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.modal-features {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.feature-item i {
    color: var(--accent);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: rgba(2, 6, 23, 0.3);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 2rem;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-info {
    padding: 2.5rem;
}

.service-info i {
    color: var(--primary);
    margin-bottom: 1.5rem;
    width: 48px;
    height: 48px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-info p {
    color: var(--text-muted);
}

/* Tech Stack */
.tech-stack {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(2, 6, 23, 0.3);
}

.tech-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    opacity: 0.6;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.tech-item i {
    color: var(--primary);
}

/* Process */
.process {
    padding: 100px 0;
    background: rgba(15, 23, 42, 0.5);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
}

.step {
    position: relative;
    text-align: center;
    cursor: pointer;
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
}

.step:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-10px);
}

.step-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
}

.step:hover .step-more {
    opacity: 1;
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    opacity: 1; /* Maximum vibrancy */
    line-height: 1;
    margin-bottom: -1rem;
    color: #00d2ff; /* Ultra vibrant cyan */
    text-shadow: 0 0 30px rgba(0, 210, 255, 0.4);
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-muted);
}

/* Success Stories */
.success-stories {
    padding: 100px 0;
    overflow: hidden;
    background: rgba(2, 6, 23, 0.2);
}

.testimonial-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

.testimonial-slider-container::before,
.testimonial-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonial-slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.testimonial-slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollRightToLeft 40s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.9);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

/* CTA & Form */
.cta {
    padding: 100px 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    position: relative;
}

.cta-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    text-align: left;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* International Tel Input Dark Theme Overrides */
.iti {
    width: 100%;
}

.iti__country-list {
    background-color: var(--bg-dark) !important;
    border: 1px solid var(--glass-border) !important;
    color: white !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    max-width: 300px;
}

.iti__country:hover, .iti__country.iti__highlight {
    background-color: rgba(59, 130, 246, 0.2) !important;
}

.iti__selected-dial-code {
    color: white !important;
    margin-left: 8px !important;
}

.iti__flag-container {
    padding-left: 10px !important;
}

.iti--separate-dial-code .iti__selected-flag {
    background: transparent !important;
    border-right: 1px solid var(--glass-border);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

#whatsapp {
    padding-left: 95px !important;
}

.error-msg {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
    font-weight: 600;
}

.error-msg.show {
    display: block;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

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

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

.footer-links h4, .footer-social h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

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

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--primary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid var(--primary);
    border-radius: 50%;
    text-decoration: none;
}

.social-icons a svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: white;
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--primary-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Responsive */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn { 
        display: block; 
        position: relative;
        z-index: 1001;
    }
    .hero h1 { font-size: 2.8rem; }
    .hero { text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero-btns { justify-content: center; }
    .container { padding: 0 1rem; }
    .cta-card { padding: 2rem 1.2rem; border-radius: 20px; }
    .cta-grid { padding: 0; gap: 2rem; }
    .cta-form-container { padding: 0; background: transparent; border: none; backdrop-filter: none; }
    .checkbox-group { padding: 0.8rem; margin: 0.5rem 0; }
    .checkbox-text { font-size: 0.85rem; }
}

/* Reveal Animation on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Trusted By */
.trusted-by {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(2, 6, 23, 0.4);
    text-align: center;
    overflow: hidden;
}

.trusted-by p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.logo-scroll {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.logo-track {
    display: inline-flex;
    gap: 5rem;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.logo-track span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-muted);
    opacity: 0.3;
    transition: var(--transition);
}

.logo-track span:hover {
    opacity: 1;
    color: var(--primary);
    transform: scale(1.1);
}

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

/* Projects */
.projects {
    padding: 100px 0;
    background: var(--bg-dark);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.category {
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

.project-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.project-tags span {
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--primary);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* --- ESTILOS DE FORMULARIO ACTUALIZADOS --- */.form-group input:not([type="checkbox"]), .form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(2, 6, 23, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

/* Checkbox Group Frame */
.checkbox-group {
    margin: 1rem 0;
    padding: 0.7rem 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.checkbox-group:hover {
    border-color: var(--primary);
    background: rgba(30, 41, 59, 0.8);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    width: 100%;
}

/* Custom Checkbox Style */
.checkbox-container input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--glass-border);
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 3px;
}

.checkbox-container input[type="checkbox"]:checked {
    background: linear-gradient(135deg, var(--primary), #2dd4bf);
    border-color: transparent;
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4.5px;
    top: 1.5px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.4;
}

.checkbox-text a {
    color: #3b82f6; /* Azul resaltado */
    text-decoration: underline;
    transition: var(--transition);
}

.checkbox-text a:hover {
    color: var(--accent);
}

/* --- CTA SECTION TWO COLUMNS --- */
.cta-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: flex-start;
    padding: 2rem;
}

.cta-info {
    text-align: left;
}

.subtitle-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.subtitle-container .line {
    width: 30px;
    height: 2px;
    background: var(--primary);
    display: inline-block;
}

.cta-info .section-subtitle {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.cta-info .section-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 800;
}

.cta-info .section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: white;
}

.feature-icon {
    color: var(--primary);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.cta-form-container {
    background: rgba(15, 23, 42, 0.4);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

@media (max-width: 1024px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 1rem;
    }
    
    .cta-info .section-title {
        font-size: 3rem;
    }
}

/* Button Disabled State */
button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    filter: none;
    animation: none !important;
    transform: none !important;
    box-shadow: none !important;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Feature List Large (AdminPH Style) */
.feature-list-large {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
}

.feature-list-large li {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-list-large li:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: var(--primary);
    transform: translateX(5px);
}

.feature-list-large i {
    color: #10b981; /* Green from the reference image */
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.feature-list-large span {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.feature-list-large strong {
    color: white;
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

/* Glowing Button Animation */
.btn-glow {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    animation: glowPulse 2s infinite ease-in-out;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.7);
        transform: scale(1.01);
    }
    100% {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.4);
        transform: scale(1);
    }
}

/* CTA Header Top (AdminPH Title) */
.cta-header-top h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-header-top p {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 768px) {
    .cta-header-top h2 {
        font-size: 2rem;
    }
    
    .cta-header-top p {
        font-size: 1rem;
    }
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
    margin: 15% auto;
    padding: 3rem;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-content.text-center {
    text-align: center;
}

.close-modal {
    color: var(--text-muted);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: white;
}

.modal-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.modal-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
