/* ================================
   COBRA CLICKS - AGGRESSIVE SEO LANDING PAGE
   Colors: Black Background (#000000) + Neon Green (#bff747)
   ================================ */

/* ================================
   RESET & BASE STYLES
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #bff747;
    --bg-dark: #000000;
    --bg-dark-secondary: #0a0a0a;
    --bg-dark-card: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --glow-primary: rgba(191, 247, 71, 0.5);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ================================
   TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.accent-text {
    color: var(--primary-color);
    text-shadow: 0 0 30px var(--glow-primary);
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(191, 247, 71, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: 0 5px 30px rgba(191, 247, 71, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo i {
    color: var(--primary-color);
    font-size: 32px;
    animation: float 3s ease-in-out infinite;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-menu li a:not(.cta-btn):hover {
    color: var(--primary-color);
}

.nav-menu li a:not(.cta-btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:not(.cta-btn):hover::after {
    width: 100%;
}

.nav-menu .cta-btn {
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.nav-menu .cta-btn:hover {
    background: #d4ff66;
    box-shadow: 0 0 25px var(--glow-primary);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* ================================
   BUTTONS
   ================================ */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: #d4ff66;
    box-shadow: 0 10px 40px var(--glow-primary);
    transform: translateY(-3px);
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-primary.full-width {
    width: 100%;
    justify-content: center;
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 10px 40px var(--glow-primary);
    transform: translateY(-3px);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(191, 247, 71, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(191, 247, 71, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(191, 247, 71, 0.1);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(191, 247, 71, 0.3);
    animation: glow 2s ease-in-out infinite;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.social-proof {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.proof-logos {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.proof-logos span {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    font-size: 14px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.stats-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(191, 247, 71, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.stats-card.floating {
    animation: float 3s ease-in-out infinite;
}

.stat-item {
    padding: 20px 0;
    text-align: center;
}

.stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-size: 48px;
    color: var(--primary-color);
    text-shadow: 0 0 30px var(--glow-primary);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    position: relative;
    margin: 0 auto 10px;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.scroll-indicator p {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ================================
   SECTION HEADERS
   ================================ */
.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: rgba(191, 247, 71, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border: 1px solid rgba(191, 247, 71, 0.3);
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ================================
   PROBLEM SECTION
   ================================ */
.problem-section {
    padding: 100px 0;
    background: var(--bg-dark-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--bg-dark-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.problem-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(191, 247, 71, 0.1);
    transform: translateY(-5px);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: rgba(191, 247, 71, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.problem-cta {
    text-align: center;
    padding: 60px;
    background: var(--bg-dark-card);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.problem-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(191, 247, 71, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.problem-cta h3 {
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.problem-cta .btn-primary {
    position: relative;
    z-index: 1;
}

/* ================================
   SOLUTION SECTION
   ================================ */
.solution-section {
    padding: 100px 0;
}

.solution-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-secondary);
}

.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rotating-badge {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(191, 247, 71, 0.1) 0%, rgba(191, 247, 71, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(191, 247, 71, 0.3);
    animation: rotate 20s linear infinite;
}

.rotating-badge::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 1px solid rgba(191, 247, 71, 0.1);
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

.badge-content {
    text-align: center;
    z-index: 1;
}

.badge-content h3 {
    font-size: 72px;
    color: var(--primary-color);
    text-shadow: 0 0 40px var(--glow-primary);
    margin-bottom: 10px;
}

.badge-content p {
    color: var(--text-secondary);
    font-weight: 600;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services-section {
    padding: 100px 0;
    background: var(--bg-dark-secondary);
}

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

.service-card {
    background: var(--bg-dark-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(191, 247, 71, 0.15);
    transform: translateY(-10px);
}

.service-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(191, 247, 71, 0.2);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--bg-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(191, 247, 71, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon i {
    color: var(--bg-dark);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 12px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.service-link:hover {
    gap: 15px;
}

/* ================================
   RESULTS SECTION
   ================================ */
.results-section {
    padding: 100px 0;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-box {
    text-align: center;
    padding: 40px;
    background: var(--bg-dark-card);
    border-radius: 15px;
    border: 1px solid rgba(191, 247, 71, 0.2);
    transition: var(--transition-smooth);
}

.stat-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(191, 247, 71, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 40px var(--glow-primary);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 16px;
}

.case-studies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.case-study {
    background: var(--bg-dark-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.case-study:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(191, 247, 71, 0.15);
}

.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.case-study-header h3 {
    font-size: 24px;
}

.industry-tag {
    background: rgba(191, 247, 71, 0.1);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
}

.case-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================
   PROCESS SECTION
   ================================ */
.process-section {
    padding: 100px 0;
    background: var(--bg-dark-secondary);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(191, 247, 71, 0.1) 100%);
}

.process-step {
    display: grid;
    grid-template-columns: 120px 1fr 100px;
    gap: 40px;
    align-items: center;
    position: relative;
}

.step-number {
    font-size: 72px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
    text-align: center;
}

.step-content {
    background: var(--bg-dark-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.process-step:hover .step-content {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(191, 247, 71, 0.15);
}

.step-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.step-content > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.step-deliverables {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-deliverables li {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-deliverables li::before {
    content: '→';
    font-weight: 900;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: rgba(191, 247, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.step-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials-section {
    padding: 100px 0;
}

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

.testimonial-card {
    background: var(--bg-dark-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(191, 247, 71, 0.15);
    transform: translateY(-5px);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--primary-color);
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ================================
   FAQ SECTION
   ================================ */
.faq-section {
    padding: 100px 0;
    background: var(--bg-dark-secondary);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-dark-card);
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 16px;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(191, 247, 71, 0.1) 0%, transparent 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(191,247,71,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.cta-guarantee i {
    color: var(--primary-color);
    font-size: 20px;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact-section {
    padding: 100px 0;
    background: var(--bg-dark-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(191, 247, 71, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-social {
    display: flex;
    gap: 15px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: rgba(191, 247, 71, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(191, 247, 71, 0.2);
}

.contact-social a:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--bg-dark-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(191, 247, 71, 0.1);
}

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

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 15px;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--bg-dark);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--primary-color);
    font-size: 32px;
}

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

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a,
.footer-col ul li {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-col ul li i {
    color: var(--primary-color);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(191, 247, 71, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(191, 247, 71, 0.2);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

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

/* ================================
   ANIMATIONS
   ================================ */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(191, 247, 71, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(191, 247, 71, 0.6);
    }
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        grid-template-columns: 80px 1fr 80px;
    }
    
    .step-number {
        font-size: 56px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(191, 247, 71, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid,
    .case-studies {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }
    
    .step-icon {
        display: none;
    }
    
    .step-number {
        font-size: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 42px;
    }
}






/* Header Container */
.navbar {
 display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 80px;
    background-color: #000;
    border-bottom: 1px solid #1a1a1a;
    gap: 100px;
    flex-direction: row;
}
header .container{
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
}
/* Logo Styling */
.logo img {
    height:67px; 
    filter: brightness(0) invert(1); 
    display: inline-block;
    vertical-align: middle;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

/* Lime Green Accent */
.nav-links a.active, 
.nav-links a:hover,
.social-icons a:hover {
    color: #b3ff00;  
}

.nav-links i {
    font-size: 10px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icons a {
    color: #b3ff00; 
    font-size: 18px;
    transition: transform 0.2s;
}

.social-icons a:hover {
    transform: scale(1.1);
}
   /*footer*/
        
         :root {
            --bg-color: #000000;
            --accent-color: #bfff5e; /* El verde lima/neón de la imagen */
            --text-color: #ffffff;
            --muted-text: #cccccc;
        }
 
        footer {
            padding: 60px 10%;
            background: radial-gradient(circle at 90% 50%, #1a2408 0%, #000000 60%);
            position: relative;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.5fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Sección Izquierda: Logo e Info */
        .brand-section {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .logo-container {
            text-align: left;
        }

        .logo-img {
            width: 150px; /* Ajustar según tamaño real */
            filter: brightness(0) invert(1);
        }

        .contact-info {
            list-style: none;
            padding: 0; 
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            gap: 10px;
             font-size: 1.5rem;
        }

        .contact-item i {
            color: var(--accent-color);
            border: 1px solid var(--accent-color);
            border-radius: 50%;
            padding: 5px;
            font-size: 12px;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Sección Centro: Enlaces */
        .links-title {
            font-weight: bold;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

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

        .links-list li {
            margin-bottom: 12px;
        }

        .links-list a {
            color: var(--muted-text);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s;
        }

        .links-list a:hover {
            color: var(--accent-color);
        }

        /* Sección Derecha: Newsletter y Find Us */
        .newsletter-section h3 {
            margin-top: 0;
            font-size: 1.1rem;
        }

        .subscribe-box {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .subscribe-box input {
            background: #0a0a0a;
            border: 1px solid #333;
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            flex-grow: 1;
            font-size: 0.8rem;
        }

        .btn-subscribe {
            background-color: var(--accent-color);
            color: black;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            font-size: 0.8rem;
        }

        .social-icons {
            display: flex;
            gap: 10px; 
        }

        .social-icons i {
            color: var(--accent-color);
            border: 1px solid var(--accent-color);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .find-us-section h2 {
            font-size: 4rem;
            margin-bottom: 10px;
        }

        .locations {
            color: var(--muted-text);
            line-height: 1.8;
            font-size: 1.5rem;
        }

        /* Footer Inferior */
        .footer-bottom {
            border-top: 1px solid #222;
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.8rem;
            color: #666;
        }
   /* footer end */