/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.logo-link:visited {
    text-decoration: none;
}

.logo-link:active {
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    box-shadow: none;
    background: none;
    border-radius: 0;
    padding: 0;
}

.logo-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: #888888;
    font-weight: 400;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.highlight {
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    color: #00d4ff;
}

/* Glow Line Effect */
.glow-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, #ff00ff, transparent);
    animation: glowMove 3s ease-in-out infinite;
}

@keyframes glowMove {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Placeholder Images */
.placeholder-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    border-color: #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

/* Hero Images */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,10,20,0.7);
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.12);
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    background: none;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s;
}
.slider-arrow.left { left: 10px; }
.slider-arrow.right { right: 10px; }
.slider-arrow:hover { background: linear-gradient(45deg, #00d4ff, #ff00ff); color: #fff; }
.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 4;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    border: 2px solid #00d4ff;
    cursor: pointer;
    transition: background 0.2s, border 0.2s;
}
.dot.active {
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    border: 2px solid #fff;
}

/* Sections */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    margin-bottom: 1.5rem;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-placeholder {
    width: auto;
    height: auto;
    background: none;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    padding: 0;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-description {
    color: #cccccc;
    line-height: 1.6;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 40px auto;
    max-width: 1000px;
    padding: 0 16px;
}

.about-text {
    flex: 1 1 0;
    min-width: 260px;
    text-align: left;
}

.ohio-tech-img {
    width: 200px;
    height: auto;
    display: block;
    margin: 0;
    filter: drop-shadow(0 0 12px #00eaff88);
    border-radius: 12px;
    background: transparent;
}

.cta-btn {
    margin-top: 16px;
    padding: 10px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #00eaff, #a259ff, #ff29c3);
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 12px #00eaff44;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s;
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Button-like behavior */
    vertical-align: middle; /* Align with text */
}
.cta-btn:visited {
    color: #fff; /* Keep color consistent for visited links */
}
.cta-btn:hover {
    background: linear-gradient(90deg, #ff29c3, #a259ff, #00eaff);
    box-shadow: 0 4px 18px #a259ff55;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #00d4ff;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.contact-icon {
    font-size: 1.5rem;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    padding: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-details p {
    color: #cccccc;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #888888;
}

.form-input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

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

/* Select dropdown styling */
.form-input option {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 8px 12px;
}

.form-input option:hover {
    background-color: #00d4ff;
    color: #000000;
}

.form-input option:checked {
    background-color: #00d4ff;
    color: #000000;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Explicitly enable important animations on mobile */
    .glow-line {
        animation: glowMove 3s ease-in-out infinite !important;
        opacity: 0.8 !important;
    }
    
    /* Enable particle animations on mobile */
    .particle {
        animation: float 6s ease-in-out infinite !important;
    }
    
    /* Disable only heavy animations on mobile for performance */
    .hero-slide {
        animation: none !important;
        transition: none !important;
    }
    
    .feature-card::before {
        animation: none !important;
    }
    
    /* Keep smooth scrolling on mobile */
    html {
        scroll-behavior: smooth !important;
    }
    
    /* Disable hover effects on mobile */
    *:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image-container {
        height: 300px;
        margin-top: 2rem;
    }
    
    .hero-image {
        border-radius: 8px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 1000;
        border-top: 1px solid rgba(0, 212, 255, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        padding: 12px 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background-color: rgba(0, 212, 255, 0.1);
        color: #00d4ff;
    }
    
    .nav-menu .cta-nav-btn {
        margin: 16px auto 0 auto;
        padding: 12px 24px;
        font-size: 1.1rem;
        width: 80%;
        max-width: 200px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
        z-index: 1001;
    }
    
    .hamburger:hover {
        background-color: rgba(0, 212, 255, 0.1);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .logo-icon svg {
        width: 32px;
        height: 32px;
    }
    .logo-text {
        font-size: 1.3rem;
    }
    .logo-subtitle {
        font-size: 0.6rem;
    }
    .hero-slider {
        max-width: 95vw;
        height: 220px;
    }
    .hero-slide img {
        height: 100%;
    }
    
    /* Disable slideshow animations on mobile */
    .hero-slide {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .hero-slide.active {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Keep glow line animation on mobile */
    .glow-line {
        animation: glowMove 3s ease-in-out infinite;
        opacity: 0.8;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image-container {
        height: 250px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    .hero-slider {
        height: 160px;
    }
}

@media (max-width: 900px) {
    .about-flex {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 0 8px;
    }
    .ohio-tech-img {
        width: 90vw;
        max-width: 340px;
        margin: 0 auto;
        max-height: 220px;
    }
    .about-text {
        max-width: 100%;
    }
}

@media (max-width: 800px) {
    .about-flex {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        max-width: 98vw;
    }
    .about-text {
        text-align: center;
    }
    .ohio-tech-img {
        margin: 0 auto;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ff00ff, #00d4ff);
}

.cta-nav-btn {
    margin-left: 24px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff !important;
    background: linear-gradient(90deg, #00eaff, #a259ff, #ff29c3);
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 12px #00eaff44;
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s, color 0.3s;
    text-decoration: none;
    display: inline-block;
}
.cta-nav-btn:hover {
    background: linear-gradient(90deg, #ff29c3, #a259ff, #00eaff);
    box-shadow: 0 4px 18px #a259ff55;
    color: #fff !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    position: relative;
    z-index: 1001;
}

/* Force hamburger to show on mobile for testing */
@media (max-width: 768px) {
    .hamburger {
        display: block !important;
        background: rgba(0, 212, 255, 0.1);
        border: 1px solid rgba(0, 212, 255, 0.3);
        border-radius: 6px;
        padding: 8px;
        margin-left: 10px;
    }
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

/* Make bars more visible on mobile */
@media (max-width: 768px) {
    .bar {
        width: 28px;
        height: 4px;
        margin: 4px auto;
        box-shadow: 0 0 12px rgba(0, 212, 255, 0.8);
    }
    
    .mobile-menu-text {
        font-size: 10px;
        color: #00d4ff;
        text-align: center;
        margin-top: 4px;
        font-weight: bold;
        text-shadow: 0 0 8px rgba(0, 212, 255, 0.8);
    }
}

.ai-tools-section {
    padding: 64px 0 48px 0;
    text-align: center;
}
.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.section-intro {
    font-size: 1.15rem;
    color: #b0b8c9;
    margin-bottom: 36px;
}
.ai-tools-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.ai-tool-card {
    background: linear-gradient(135deg, #181c2f 80%, #00eaff22 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px #00eaff22;
    padding: 32px 28px 28px 28px;
    min-width: 240px;
    max-width: 320px;
    flex: 1 1 260px;
    color: #fff;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1.5px solid #23263a;
}
.ai-tool-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px #00eaff55;
    border-color: #00eaff88;
}
.ai-tool-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #00eaff;
}
.ai-tool-card p {
    font-size: 1rem;
    color: #e0e6f7;
}
@media (max-width: 900px) {
    .ai-tools-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .ai-tool-card {
        max-width: 98vw;
        min-width: 0;
        width: 100%;
    }
}

/* Pricing Section Styles */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: linear-gradient(135deg, #181c2f 0%, #23263a 100%);
    border: 2px solid #2a2d3e;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #00d4ff;
    box-shadow: 0 16px 48px rgba(0, 212, 255, 0.2);
}

.pricing-card.featured {
    border-color: #00d4ff;
    background: linear-gradient(135deg, #181c2f 0%, #1a2a3a 100%);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #00d4ff, #ff00ff);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #00d4ff;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #b0b8c9;
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: #e0e6f7;
    font-size: 1rem;
    position: relative;
    padding-left: 24px;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-card .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
} 

@media (max-width: 768px) {
    .hero-slider {
        display: none !important;
    }
} 

@media (max-width: 768px) {
    .hero .hero-slider,
    .hero .hero-visual,
    .hero .hero-slide,
    .hero #productivity-num-html,
    .hero #savings-num-html,
    .hero #efficiency-num-html,
    .hero #traffic-num-html {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
    }
} 

.get-in-touch-cta {
  text-align: center;
  padding: 48px 0;
  margin: 0 auto;
  max-width: 600px;
}
.get-in-touch-cta h2 {
  margin-bottom: 12px;
}
.get-in-touch-cta p {
  margin-bottom: 24px;
}
.get-in-touch-cta .btn {
  margin: 0 auto;
  display: inline-block;
} 