@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

/* Apple-inspired design system with premium enhancements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --primary-lime: #ADDD30;
    --primary-lime-hover: #9cc429;
    --text-dark: #1d1d1f;
    --text-gray: #6e6e73;
    --text-light-gray: #a1a1a6;
    --bg-light: #f5f5f7;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: var(--primary-white);
    overflow-x: hidden;
    position: relative;
    /* Mobile optimizations */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Gradient background overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(173, 221, 48, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(173, 221, 48, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Global Link Styles */
a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: var(--primary-lime);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Enhanced Navigation with Glassmorphism */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

/* Mobile Menu Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-menu-links a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-links a:hover {
    background: rgba(173, 221, 48, 0.1);
    color: var(--primary-lime);
    transform: translateY(-2px);
}

.mobile-menu-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    align-items: center;
}

.mobile-menu-auth .button {
    min-height: 44px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    width: 180px;
    text-align: center;
    border-radius: 980px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.mobile-menu-auth .secondary-button {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-menu-auth .secondary-button:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-auth .cta-button {
    background: linear-gradient(135deg, var(--primary-lime), var(--primary-lime-hover));
    color: var(--primary-black);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(173, 221, 48, 0.3);
}

.mobile-menu-auth .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(173, 221, 48, 0.4);
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--primary-lime);
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo:hover span {
    transform: rotate(-5deg) scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-lime), var(--primary-lime-hover));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-buttons a.button {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    padding: 8px 18px;
    border-radius: 980px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.auth-buttons a.button:first-of-type {
    color: var(--text-dark);
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.auth-buttons a.button:first-of-type:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.auth-buttons a.cta-button {
    background: linear-gradient(135deg, var(--primary-lime), var(--primary-lime-hover));
    color: var(--primary-black);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(173, 221, 48, 0.3);
}

.auth-buttons a.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(173, 221, 48, 0.4);
}

/* Enhanced Hero Section with Plain Black Background */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 50px;
    position: relative;
    overflow: hidden;
    background: var(--primary-black);
}

/* Shorter hero sections for specific pages - Fixed Size */
body.pricing .hero,
body.products .hero,
body.demos .hero,
body.contact .hero,
body.blog .hero,
body.your-lab .hero,
body.request-access .hero {
    height: 600px;
    min-height: 600px;
    max-height: 600px;
    padding: 120px 0 60px 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fixed size for hero content in shorter banners */
body.pricing .hero-content,
body.products .hero-content,
body.demos .hero-content,
body.contact .hero-content,
body.blog .hero-content,
body.your-lab .hero-content,
body.request-access .hero-content {
    padding: 0 !important;
    margin: 0;
    text-align: center;
}

/* Remove particles from shorter hero sections */
body.pricing .hero .particles,
body.products .hero .particles,
body.demos .hero .particles,
body.contact .hero .particles,
body.blog .hero .particles,
body.your-lab .hero .particles,
body.request-access .hero .particles {
    display: none;
}

/* Floating particles - DISABLED */
.particles {
    display: none;
}

.particle {
    display: none;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: var(--primary-white);
    position: relative;
}

.hero p {
    font-size: 21px;
    color: var(--text-light-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero-buttons a.button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-buttons a.hero-cta-primary {
    background: linear-gradient(135deg, var(--primary-lime), var(--primary-lime-hover));
    color: var(--primary-black);
    box-shadow: 0 10px 30px rgba(173, 221, 48, 0.4);
    position: relative;
}

.hero-buttons a.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.hero-buttons a.hero-cta-primary:hover::before {
    left: 100%;
}

.hero-buttons a.hero-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(173, 221, 48, 0.5);
}

.hero-buttons a.secondary-button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-buttons a.secondary-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Enhanced Product Cards with Glassmorphism */
.product-cards {
    padding: 100px 0;
    background: var(--primary-white);
    position: relative;
}

.product-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(173, 221, 48, 0.3), transparent);
}

.card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateY(50px);
}

.card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

/* Single card styling - centered and constrained width */
.single-card {
    max-width: 600px;
    margin: 0 auto;
}

.card-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Mind Map Styling */
.mind-map-container {
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(173, 221, 48, 0.1);
}

.mind-map {
    width: 100%;
    height: auto;
    max-height: 400px;
}

.mind-map .connections line {
    animation: pulse-line 2s ease-in-out infinite alternate;
}

@keyframes pulse-line {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

.mind-map .process-nodes circle {
    transition: all 0.3s ease;
    cursor: pointer;
}

.mind-map .process-nodes circle:hover {
    fill: rgba(173, 221, 48, 0.4);
    transform: scale(1.1);
}

.mind-map .central-node circle {
    filter: drop-shadow(0 4px 8px rgba(173, 221, 48, 0.3));
}

.mind-map-description {
    margin-top: 20px;
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
    font-style: italic;
}

.card-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-lime);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.card-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--text-dark);
}

.card-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.5;
    flex-grow: 1;
}

.card-content p strong {
    color: var(--text-dark);
    font-weight: 500;
}

.learn-more {
    color: var(--primary-lime);
    font-weight: 500;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: var(--primary-lime-hover);
}

.learn-more:hover::after {
    transform: translateX(5px);
}

/* Enhanced Features Section */
.features {
    padding: 120px 0;
    background: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(173, 221, 48, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-choose-card {
    background: rgba(245, 245, 247, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: translateY(30px);
}

.why-choose-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-card:nth-child(2).in-view {
    transition-delay: 0.1s;
}

.why-choose-card:nth-child(3).in-view {
    transition-delay: 0.2s;
}

.why-choose-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(233, 216, 253, 0.8), rgba(233, 216, 253, 0.6));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(126, 34, 206, 0.2);
}

.why-choose-card:hover .why-choose-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(126, 34, 206, 0.3);
}

.why-choose-icon .icon {
    width: 40px;
    height: 40px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.why-choose-card:hover .why-choose-icon .icon {
    filter: grayscale(0%);
}

.why-choose-card h3 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.why-choose-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.5;
}

/* Key Features Section with Black Background and Glassmorphism Cards */
.features-grid {
    background: linear-gradient(135deg, var(--primary-black) 0%, #0a0a0a 100%) !important;
    padding: 100px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.features-grid .section-title {
    color: var(--primary-white) !important;
    margin-bottom: 20px !important;
}

.features-grid .section-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 60px !important;
}

.features {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 60px !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.feature {
    padding: 40px 30px !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(0, 0, 0, 0.1) 100%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    position: relative !important;
    text-align: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden !important;
}

.feature::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(173, 221, 48, 0.1), transparent) !important;
    transition: left 0.6s !important;
}

.feature:hover {
    transform: translateY(-5px) !important;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

.feature:hover::before {
    left: 100% !important;
}

.feature-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, var(--primary-lime), var(--primary-lime-hover)) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 25px !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    color: var(--primary-black) !important;
    box-shadow: 0 8px 20px rgba(173, 221, 48, 0.3) !important;
    transition: all 0.3s ease !important;
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 12px 30px rgba(173, 221, 48, 0.4) !important;
}

.feature h3 {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: var(--primary-white) !important;
    margin-bottom: 15px !important;
    transition: color 0.3s ease !important;
}

.feature:hover h3 {
    color: var(--primary-white) !important;
}

.feature p {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6 !important;
    font-size: 15px !important;
    transition: color 0.3s ease !important;
}

.feature:hover p {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Enhanced Testimonial Section with Glassmorphism */
.testimonial {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #0a0a0a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.testimonial .container {
    position: relative;
    z-index: 2;
}

.testimonial-wrapper {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-wrapper.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card {
    padding: 60px 50px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(0, 0, 0, 0.1) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.quote-icon {
    font-size: 80px;
    color: rgba(173, 221, 48, 0.3);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.testimonial-card blockquote {
    font-size: 28px;
    font-weight: 500;
    font-style: italic;
    color: var(--primary-white);
    margin-bottom: 30px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
    font-size: 14px;
    color: var(--primary-white);
    font-weight: 400;
    opacity: 0.8;
    text-align: right;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced CTA Section */
.cta {
    padding: 120px 0;
    text-align: center;
    background: var(--primary-white);
    position: relative;
    overflow: hidden;
}



.cta h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.cta a.button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-lime), var(--primary-lime-hover));
    color: var(--primary-black);
    border: none;
    padding: 15px 40px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    text-decoration: none;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(173, 221, 48, 0.3);
}

.cta a.button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(173, 221, 48, 0.4);
}

/* Enhanced Footer */
footer {
    background: var(--bg-light);
    padding: 60px 0;
    backdrop-filter: blur(10px);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(173, 221, 48, 0.3), transparent);
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

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

.footer-column ul li a {
    color: var(--text-gray);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.footer-tagline {
    color: #6e6e73;
    font-size: 13px;
    max-width: 250px;
    line-height: 1.4;
    margin: 0;
}

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

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

.footer-bottom-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.footer-bottom-links li a {
    color: var(--text-gray);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Loading animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(173, 221, 48, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-lime);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Adjustments */
/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    nav {
        padding: 15px 30px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .product-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .features {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 25px !important;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    nav {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px 0;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons .button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .product-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial {
        padding: 60px 0;
    }
    
    .testimonial blockquote {
        font-size: 24px;
        line-height: 1.4;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta h2 {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .cta p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-tagline {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        padding: 10px 0;
    }
    
    .footer-bottom-links li {
        margin: 5px 0;
    }
    
    .footer-bottom-links li a {
        padding: 12px 16px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .footer-bottom-links li a:hover {
        background: rgba(173, 221, 48, 0.1);
        transform: translateY(-1px);
    }
    
    /* Contact Form Mobile */
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .contact-info p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-details {
        gap: 25px;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.95rem;
    }
    
    /* Request Access Mobile */
    .request-access-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-top: 0;
    }
    
    .waitlist-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Pricing Mobile */
    .pricing-plans .product-title {
        font-size: 36px;
    }
    
    .plans {
        grid-template-columns: 1fr;
        gap: 25px;
        overflow-x: visible;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .plan.highlighted {
        transform: none;
        margin: 0;
    }
    
    .plan {
        padding: 25px 20px;
        margin: 0;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .plan h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .plan .price {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .plan .description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .plan ul {
        margin-bottom: 25px;
    }
    
    .plan ul li {
        font-size: 14px;
        padding: 8px 0;
    }
    
    /* Products Page Mobile */
    .kolega-studio-section .kolega-studio-container {
        flex-direction: column;
    }
    
    .kolega-studio-section .matrix-demo {
        height: 300px;
        margin-bottom: 30px;
    }
    
    /* Demos Page Mobile */
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .demo-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .demo-video {
        height: 200px;
    }

    .demo-content {
        padding: 20px;
    }

    .demo-content h2 {
        font-size: 20px;
    }

    .demo-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    /* Blog Page Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Auth Pages Mobile */
    .auth-container {
        padding: 40px 20px;
        margin: 100px 20px 40px;
    }
    
    .auth-container h1 {
        font-size: 28px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Demos Page Small Mobile */
    .demo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 5px;
    }

    .demo-video {
        height: 180px;
    }

    .demo-content {
        padding: 15px;
    }

    .demo-content h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .demo-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    nav {
        padding: 12px 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .hero {
        padding: 100px 0 60px 0;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-buttons .button {
        width: 100%;
        max-width: none;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .product-card h3 {
        font-size: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .testimonial blockquote {
        font-size: 20px;
    }
    
    .cta h2 {
        font-size: 28px;
    }
    
    .cta p {
        font-size: 16px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }
    
    .footer-column ul li a {
        font-size: 14px;
    }
    
    /* Contact Form Small Mobile */
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-content {
        gap: 30px;
        padding: 0 10px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .contact-details {
        gap: 20px;
    }
    
    .contact-item h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .contact-item p {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
    }
    
    /* Request Access Small Mobile */
    .request-access-section {
        padding: 60px 0;
    }

    .request-access-wrapper {
        gap: 30px;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .contact-item h3 {
        font-size: 16px;
    }
    
    /* Pricing Small Mobile */
    .pricing-plans .product-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .plans {
        gap: 20px;
        padding: 0 5px;
    }
    
    .plan {
        padding: 20px 15px;
    }
    
    .plan h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .plan .price {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .plan .description {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .plan ul li {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .plan .button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Footer Small Mobile */
    .footer-bottom-links {
        gap: 10px;
        padding: 15px 5px;
    }
    
    .footer-bottom-links li a {
        padding: 10px 12px;
        font-size: 13px;
        min-height: 44px;
    }
    
    /* Auth Small Mobile */
    .auth-container {
        padding: 30px 15px;
        margin: 80px 15px 30px;
    }
    
    .auth-container h1 {
        font-size: 24px;
    }
    
    .auth-form input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .product-card,
    .feature-card {
        padding: 15px;
    }
    
    .testimonial blockquote {
        font-size: 18px;
    }
    
    .cta h2 {
        font-size: 24px;
    }
    
    /* About page ultra-small */
    .about-classified {
        font-size: 14px;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Page Styling */
body.about {
    background: #000;
    color: white;
}

body.about .hero {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

body.about .hero-content {
    max-width: 800px;
    padding: 40px 20px;
}

body.about .hero h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

body.about .hero p {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ccc;
}

.about-classified {
    margin: 10px 0;
    color: var(--primary-lime) !important;
    font-style: italic;
    font-size: 1.3rem !important;
}

/* About Page Mobile Responsiveness */
@media (max-width: 768px) {
    body.about .hero h1 {
        font-size: 2.5rem;
    }
    
    body.about .hero p {
        font-size: 1.2rem;
    }
    
    .about-classified {
        font-size: 1.1rem !important;
    }
    
    body.about .hero-content {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    body.about .hero h1 {
        font-size: 2rem;
    }
    
    body.about .hero p {
        font-size: 1rem;
    }
    
    .about-classified {
        font-size: 1rem !important;
    }
    
    body.about .hero-content {
        padding: 20px 10px;
    }
}

/* ===== REQUEST ACCESS PAGE RESPONSIVE STYLES ===== */

/* Request Access Section */
.request-access-section {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Request Access Wrapper */
.request-access-wrapper {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 80px;
    align-items: start;
}

/* Waitlist Form */
.waitlist-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.waitlist-form .form-message {
    display: none;
    grid-column: 1 / -1;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.waitlist-form .form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.waitlist-form .form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.waitlist-form .form-group:nth-child(n+10) {
    grid-column: 1 / -1;
}

/* Contact Info Styling */
.contact-info {
    padding-top: 60px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 5px;
}

/* ===== DEMOS PAGE RESPONSIVE STYLES ===== */

/* Demos Content Section */
.demos-content {
    padding: 100px 0;
    background-color: var(--bg-light);
}

/* Demo Grid Layout */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Demo Card Styling */
.demo-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(0, 0, 0, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.demo-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Demo Video Container */
.demo-video {
    background-color: #000000;
    height: 250px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    position: relative;
}

.demo-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Demo Content */
.demo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.demo-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.demo-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.demo-content .button {
    align-self: flex-start;
    margin-top: auto;
}

/* ===== MOBILE-SPECIFIC ENHANCEMENTS ===== */

/* Touch-friendly interactions */
@media (max-width: 768px) {
    /* Ensure minimum touch target size (44px) */
    .button,
    .mobile-menu-toggle,
    .nav-links a,
    .footer-column ul li a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for mobile */
    .hero {
        padding: 100px 0 60px 0;
    }
    
    .section {
        padding: 60px 0;
    }
    
    /* Improved card spacing */
    .product-card,
    .feature-card,
    .plan {
        margin-bottom: 20px;
    }
    
    /* Better form elements */
    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px;
        border-radius: 12px;
        border: 2px solid #e5e7eb;
        font-size: 16px; /* Prevents zoom on iOS */
        line-height: 1.5;
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary-lime);
        outline: none;
        box-shadow: 0 0 0 3px rgba(173, 221, 48, 0.1);
        background: rgba(255, 255, 255, 1);
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--text-dark);
        font-size: 14px;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }
    
    /* Improved button interactions */
    .button {
        padding: 15px 30px;
        font-size: 16px;
        border-radius: 12px;
        transition: all 0.3s ease;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .button:active {
        transform: scale(0.98);
    }
    
    /* Better table responsiveness */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px 0;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    table {
        min-width: 600px;
        width: 100%;
        border-collapse: collapse;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    table th,
    table td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    table th {
        background: rgba(173, 221, 48, 0.1);
        font-weight: 600;
        color: var(--text-dark);
    }

    table tr:hover {
        background: rgba(173, 221, 48, 0.05);
    }
    
    /* Improved scroll behavior */
    .container {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better image handling */
    img {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }

    /* Improved video responsiveness */
    video {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    /* Better iframe responsiveness */
    iframe {
        max-width: 100%;
        border-radius: 8px;
    }

    /* Responsive embeds */
    .embed-responsive {
        position: relative;
        display: block;
        width: 100%;
        padding: 0;
        overflow: hidden;
    }

    .embed-responsive::before {
        content: "";
        display: block;
        padding-top: 56.25%; /* 16:9 aspect ratio */
    }

    .embed-responsive iframe,
    .embed-responsive video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
    
    /* Better glassmorphism on mobile */
    .product-card,
    .feature-card,
    .plan {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    /* Improved FAQ mobile experience */
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
        line-height: 1.4;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
        font-size: 15px;
        line-height: 1.5;
    }
    
    /* Better mobile navigation */
    .mobile-menu-overlay .nav-links a {
        padding: 15px 20px;
        font-size: 18px;
        font-weight: 500;
        border-radius: 12px;
        margin: 5px 0;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-overlay .nav-links a:hover,
    .mobile-menu-overlay .nav-links a:active {
        background: rgba(173, 221, 48, 0.1);
        color: var(--primary-lime);
    }
    
    /* Improved mobile footer */
    .footer-column {
        margin-bottom: 30px;
    }
    
    .footer-column h4 {
        margin-bottom: 15px;
        font-size: 18px;
    }
    
    .footer-column ul li {
        margin-bottom: 10px;
    }
    
    .footer-column ul li a {
        padding: 8px 0;
        font-size: 15px;
    }
}

/* Mobile landscape optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .mobile-menu-overlay {
        padding: 20px;
    }
    
    .mobile-menu-overlay .nav-links {
        gap: 15px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo,
    .button,
    .nav-links a {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Pricing Section Styles */
.pricing-plans {
    padding: 80px 0;
    background: var(--primary-white);
}

.pricing-plans .product-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pricing-plans .product-description {
    font-size: 20px;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.plans {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive breakpoints for pricing */
@media (max-width: 1200px) {
    .plans {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
    }
}

@media (max-width: 900px) {
    .plans {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .plan {
        padding: 25px 15px;
    }
    
    .plan h3 {
        font-size: 24px;
    }
    
    .plan .price {
        font-size: 40px;
    }
}

.plan {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(173, 221, 48, 0.4);
}

.plan.highlighted {
    background: linear-gradient(135deg, 
        rgba(173, 221, 48, 0.1) 0%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(173, 221, 48, 0.05) 100%);
    border: 2px solid var(--primary-lime);
    position: relative;
}

.plan.highlighted::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-lime);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.plan .price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-lime);
    margin-bottom: 15px;
    line-height: 1;
}

.plan .price span {
    font-size: 18px;
    color: var(--text-gray);
    font-weight: 400;
}

.plan .description {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.5;
}

.plan ul {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan ul li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

.plan ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-lime);
    font-weight: 600;
}

.plan ul li.section-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
    padding-left: 0;
}

.plan ul li.section-title:before {
    display: none;
}

.plan .cta-button {
    width: 100%;
    padding: 15px 30px;
    background: var(--primary-lime);
    color: var(--primary-black);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

.plan .cta-button:hover {
    background: var(--primary-lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(173, 221, 48, 0.3);
}

.plan .secondary-button {
    width: 100%;
    padding: 15px 30px;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-gray);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

.plan .secondary-button:hover {
    border-color: var(--primary-lime);
    color: var(--primary-lime);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(173, 221, 48, 0.2);
}

/* Demos Page Button Styles */
.demos-content .cta-button {
    width: auto !important;
    display: inline-block;
    white-space: nowrap;
    align-self: flex-start;
}

.card-content .cta-button {
    width: auto !important;
    align-self: flex-start;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.faq h2 {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-white);
    position: relative;
    z-index: 2;
}

.faq-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(0, 0, 0, 0.1) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.25);
}

.faq-question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-white);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

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

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 30px 25px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease;
}

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

/* Responsive pricing adjustments */


/* Contact Form Styles */
.contact-form-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Tablet Responsiveness */
@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }
    
    .contact-form-section {
        padding: 70px 0;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 2.2rem;
    }
}

.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(173, 221, 48, 0.02) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(173, 221, 48, 0.02) 100%);
}

.contact-info h2,
.contact-form h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-gray);
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--primary-lime);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-lime-hover);
}

/* Form Styles */
.contact-form {
    background: rgba(243, 244, 246, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-lime);
    box-shadow: 0 0 0 3px rgba(173, 221, 48, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

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

.form-group select {
    cursor: pointer;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkmark {
    display: none;
}

/* Submit Button */
.contact-form .cta-button {
    width: 100%;
    margin-top: 10px;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-lime), var(--primary-lime-hover));
    color: var(--primary-black);
    border: none;
    padding: 15px 40px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(173, 221, 48, 0.3);
}

.contact-form .cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(173, 221, 48, 0.4);
}

/* Flash Messages */
.flash-messages {
    padding: 20px 0;
}

.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.alert-success {
    background: rgba(173, 221, 48, 0.1);
    color: var(--primary-lime);
    border: 1px solid rgba(173, 221, 48, 0.3);
}

.alert-error {
    background: rgba(255, 59, 48, 0.1);
    color: #d70015;
    border: 1px solid rgba(255, 59, 48, 0.3);
}

/* FAQ Section */
.contact-faq {
    padding: 80px 0;
    background: var(--primary-black);
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--primary-white);
}

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

.contact-faq .faq-item {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(0, 0, 0, 0.1) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.contact-faq .faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(173, 221, 48, 0.1), transparent);
    transition: left 0.6s;
}

.contact-faq .faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.contact-faq .faq-item:hover::before {
    left: 100%;
}

.contact-faq .faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-white);
    margin-bottom: 15px;
}

.contact-faq .faq-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact Form Responsive */


/* Auth Forms Styles */
.auth-container {
    background: rgba(243, 244, 246, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-width: 450px;
    width: 100%;
}

.auth-container .logo {
    display: block;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 30px;
}

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

.auth-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
}

.auth-container p {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 30px;
}

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

.auth-container .form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.auth-container .form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.auth-container .form-group input:focus {
    outline: none;
    border-color: var(--primary-lime);
    box-shadow: 0 0 0 3px rgba(173, 221, 48, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.auth-container .auth-button {
    width: 100%;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-lime), var(--primary-lime-hover));
    color: var(--primary-black);
    border: none;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(173, 221, 48, 0.3);
    margin-bottom: 20px;
}

.auth-container .auth-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(173, 221, 48, 0.4);
}

.auth-container .switch-form {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.auth-container .switch-form a {
    color: #ADDD30;
    text-decoration: none;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(173, 221, 48, 0.3);
    transition: all 0.3s ease;
}

.auth-container .switch-form a:hover {
    color: #BFEA46;
    text-shadow: 0 0 15px rgba(173, 221, 48, 0.5);
    transform: translateY(-1px);
}

/* Auth Forms Responsive */


/* Wide card for mind map */
.wide-card {
    max-width: 900px !important;
}

/* Mind Map Container inside card */
.card-content .mindmap-container {
    position: relative;
    width: 100%;
    height: 350px;
    margin: 30px 0;
    background: transparent;
    border-radius: 16px;
    overflow: visible;
    padding: 20px;
}

/* Update h2 styling in the card with mind map */
.wide-card .card-content h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
    color: var(--text-dark);
}

/* SVG connections */
.mindmap-container svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 3;
    opacity: 0.6;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    stroke-dasharray: 0;
    filter: drop-shadow(0 2px 4px rgba(173, 221, 48, 0.2));
}

.connection.active {
    stroke-width: 4;
    opacity: 0.9;
    filter: drop-shadow(0 3px 8px rgba(173, 221, 48, 0.4));
    animation: connectionPulse 1.5s ease-in-out;
}

@keyframes connectionPulse {
    0%, 100% { stroke-width: 4; opacity: 0.9; }
    50% { stroke-width: 5; opacity: 1; }
}

/* Nodes */
.mindmap-container .node {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

/* Central node with text */
.mindmap-container .central-node {
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    z-index: 10;
}

.mindmap-container .central-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ADDD30 0%, #9cc429 50%, #84b323 100%);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(173, 221, 48, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.8), 0 0 0 5px rgba(173, 221, 48, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mindmap-container .central-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.center-label {
    font-size: 11px;
    font-weight: 700;
    color: #1d1d1f;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1.1;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mindmap-container .central-node:hover .central-content {
    transform: scale(1.15);
    box-shadow: 0 12px 48px rgba(173, 221, 48, 0.5), 0 0 0 4px rgba(255, 255, 255, 1), 0 0 0 7px rgba(173, 221, 48, 0.3);
}

/* Pulse animation */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid #ADDD30;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}
/* Action nodes */
.mindmap-container .action-node {
    width: auto;
    height: auto;
}

.mindmap-container .action-content {
    padding: 12px 20px 12px 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(16px);
    border: 2px solid rgba(173, 221, 48, 0.2);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.mindmap-container .action-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(173, 221, 48, 0.1), transparent);
    transition: left 0.6s ease;
}

.action-text {
    font-size: 15px;
    color: #000000;
    white-space: nowrap;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.action-text strong {
    color: #000000;
    font-weight: 700;
}

.mindmap-container .action-node:hover .action-content {
    transform: scale(1.12);
    border-color: rgba(173, 221, 48, 0.6);
    box-shadow: 0 8px 32px rgba(173, 221, 48, 0.25), 0 0 0 1px rgba(173, 221, 48, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(173, 221, 48, 0.05));
}

.mindmap-container .action-node:hover .action-content::before {
    left: 100%;
}

.mindmap-container .action-node:hover .action-text {
    color: #000000;
}

.mindmap-container .action-node:hover .action-text strong {
    color: #000000;
}

/* Sequence numbers */
.sequence-number {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ADDD30, #9cc429);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #1d1d1f;
    box-shadow: 0 2px 8px rgba(173, 221, 48, 0.3);
    z-index: 3;
}

.mindmap-container .action-node:hover .sequence-number {
    background: linear-gradient(135deg, #9cc429, #84b323);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 3px 12px rgba(173, 221, 48, 0.4);
}

/* Adjust node positions - Clockwise sequence */
.mindmap-container .action-node[data-node="plan"] {
    top: 15%;
    left: 50%;
}

.mindmap-container .action-node[data-node="build"] {
    top: 30%;
    left: 80%;
}

.mindmap-container .action-node[data-node="test"] {
    top: 65%;
    left: 80%;
}

.mindmap-container .action-node[data-node="deploy"] {
    top: 85%;
    left: 50%;
}

.mindmap-container .action-node[data-node="manage"] {
    top: 65%;
    left: 20%;
}

.mindmap-container .action-node[data-node="comply"] {
    top: 30%;
    left: 20%;
}

/* Align learn more to the right */
.wide-card .card-content .learn-more {
    color: var(--primary-lime);
    font-weight: 500;
    text-decoration: none;
    margin-top: 20px;
    align-self: flex-end;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wide-card {
        max-width: 100% !important;
    }
    
    .card-content .mindmap-container {
        height: 280px;
        margin: 25px 0;
    }
    
    .mindmap-container .central-node {
        width: 80px;
        height: 80px;
    }
    
    .center-label {
        font-size: 10px;
    }
    
    .mindmap-container .action-content {
        padding: 8px 14px;
    }
    
    .action-text {
        font-size: 13px;
    }
    
    /* Adjust positions for mobile */
    .mindmap-container .action-node[data-node="plan"] {
        left: 25%;
    }
    
    .mindmap-container .action-node[data-node="build"] {
        left: 75%;
    }
    
    .mindmap-container .action-node[data-node="test"] {
        left: 15%;
    }
    
    .mindmap-container .action-node[data-node="deploy"] {
        left: 85%;
    }
    
    .mindmap-container .action-node[data-node="manage"] {
        left: 25%;
    }
    
    .mindmap-container .action-node[data-node="comply"] {
        left: 75%;
    }
}

@media (max-width: 480px) {
    .card-content .mindmap-container {
        height: 250px;
    }
    
    .mindmap-container .central-node {
        width: 70px;
        height: 70px;
    }
    
    .center-label {
        font-size: 9px;
    }
    
    .mindmap-container .action-content {
        padding: 6px 10px;
    }
    
    .action-text {
        font-size: 12px;
    }
}