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

:root {
    --mint-50: #F0FDF9;
    --mint-100: #CCFBEF;
    --mint-200: #99F6E0;
    --mint-300: #5FE9D0;
    --mint-400: #2DD4BF;
    --mint-500: #14B8A6;
    --mint-600: #0D9488;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    text-decoration: none;
}

.logo img {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

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

.btn-primary:hover {
    background: var(--mint-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

.btn-primary-large, .btn-secondary-large {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-primary-large:hover {
    background: var(--mint-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
}

.btn-secondary-large {
    background: white;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.btn-secondary-large:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 3rem 0 6rem;
    margin-top: 4rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--mint-50);
    border: 1px solid var(--mint-200);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mint-600);
    margin-bottom: 2rem;
}

.badge-icon {
    font-size: 1.25rem;
}

.hero-tagline {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--mint-600);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--mint-500) 0%, var(--mint-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--mint-600);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Hero Code Animation */
.hero-code-animation {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.code-terminal {
    width: 100%;
    max-width: 700px;
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    font-family: 'Courier New', 'Consolas', monospace;
}

.terminal-header {
    background: #2d2d2d;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #404040;
}

.terminal-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.terminal-title {
    color: #888;
    font-size: 0.85rem;
    margin-left: auto;
}

.terminal-body {
    padding: 0rem;
    background: #1e1e1e;
    color: #d4d4d4;
    font-size: 0.9rem;
    line-height: 1.8;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.terminal-body::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #1e1e1e);
    pointer-events: none;
    z-index: 10;
}

.code-scroll-container {
    animation: scrollCode 6s ease-out infinite;
}

.code-line {
    opacity: 1;
    white-space: pre;
    word-wrap: break-word;
    position: relative;
    transition: background-color 0.3s ease;
}

@keyframes scrollCode {
    0%, 16.67% {
        transform: translateY(0);
    }
    30%, 87% {
        transform: translateY(-120px);
    }
    93%, 100% {
        transform: translateY(0);
    }
}

.code-line::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    right: -100%;
    width: 200%;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    z-index: -1;
}

.code-line.line-1::before { animation: highlightLine 6s ease-out infinite; animation-delay: 0.1s; }
.code-line.line-2::before { animation: highlightLine 6s ease-out infinite; animation-delay: 0.2s; }
.code-line.line-3::before { animation: highlightLine 6s ease-out infinite; animation-delay: 0.3s; }
.code-line.line-4::before { animation: highlightLine 6s ease-out infinite; animation-delay: 0.4s; }
.code-line.line-5::before { animation: highlightLine 6s ease-out infinite; animation-delay: 0.5s; }
.code-line.line-6::before { animation: highlightLine 6s ease-out infinite; animation-delay: 0.6s; }
.code-line.line-7::before { animation: highlightLine 6s ease-out infinite; animation-delay: 0.7s; }
.code-line.line-8::before { animation: highlightLineError 6s ease-out infinite; animation-delay: 0.8s; }
.code-line.line-9::before { animation: highlightLine 6s ease-out infinite; animation-delay: 0.9s; }
.code-line.line-10::before { animation: highlightLine 6s ease-out infinite; animation-delay: 1.0s; }
.code-line.line-11::before { animation: highlightLine 6s ease-out infinite; animation-delay: 1.1s; }
.code-line.line-12::before { animation: highlightLinePause 6s ease-out infinite; animation-delay: 1.2s; }
.code-line.line-13::before { animation: highlightLine 6s ease-out infinite; animation-delay: 5.3s; }
.code-line.line-14::before { animation: highlightLine 6s ease-out infinite; animation-delay: 5.4s; }
.code-line.line-15::before { animation: highlightLine 6s ease-out infinite; animation-delay: 5.5s; }
.code-line.line-16::before { animation: highlightLine 6s ease-out infinite; animation-delay: 5.6s; }

/* Syntax highlighting */
.keyword {
    color: #c586c0;
    font-weight: 600;
}

.function {
    color: #dcdcaa;
}

.method {
    color: #dcdcaa;
}

.comment {
    color: #6a9955;
    font-style: italic;
}

.cursor {
    color: #ffffff;
    animation: blinkCursor 0.7s infinite;
    font-weight: 400;
}

.error-line {
    opacity: 1;
}

.error-line .comment {
    color: #ff4747;
}

.code-line.critical {
    opacity: 1;
}

.code-line.critical .comment {
    color: #ff4747;
    font-weight: 900;
}

@keyframes highlightLine {
    0%, 3.99% {
        opacity: 0;
    }
    4%, 6.3% {
        opacity: 1;
    }
    7.31%, 100% {
        opacity: 0;
    }
}

@keyframes highlightLineError {
    0%, 1.99% {
        opacity: 0;
    }
    2%, 3.3% {
        opacity: 1;
        background: rgba(255, 71, 71, 0.08);
    }
    3.31%, 100% {
        opacity: 0;
    }
}

@keyframes highlightLinePause {
    0%, 1.5% {
        opacity: 0;
    }
    2%, 10% {
        opacity: 1;
        background: rgba(255, 71, 71, 0.25);
    }
    13%, 16% {
        opacity: 1;
        background: rgba(255, 71, 71, 0.05);
    }
    19%, 22% {
        opacity: 1;
        background: rgba(255, 71, 71, 0.25);
    }
    25%, 28% {
        opacity: 1;
        background: rgba(255, 71, 71, 0.05);
    }
    31%, 34% {
        opacity: 1;
        background: rgba(255, 71, 71, 0.25);
    }
    37%, 40% {
        opacity: 1;
        background: rgba(255, 71, 71, 0.05);
    }
    43%, 46% {
        opacity: 1;
        background: rgba(255, 71, 71, 0.25);
    }
    49%, 52% {
        opacity: 1;
        background: rgba(255, 71, 71, 0.05);
    }
    55%, 58% {
        opacity: 1;
        background: rgba(255, 71, 71, 0.25);
    }
    61%, 64% {
        opacity: 1;
        background: rgba(255, 71, 71, 0.05);
    }
    67%, 70% {
        opacity: 1;
        background: rgba(255, 71, 71, 0.25);
    }
    73%, 75% {
        opacity: 1;
        background: rgba(255, 71, 71, 0.05);
    }
    75.5%, 100% {
        opacity: 0;
    }
}

@keyframes showError {
    0%, 24% {
        opacity: 0;
        transform: translateX(-10px);
    }
    25%, 83% {
        opacity: 1;
        transform: translateX(0);
    }
    84%, 100% {
        opacity: 0;
        transform: translateX(0);
    }
}

@keyframes showCriticalError {
    0%, 29% {
        opacity: 0;
        transform: translateX(-10px);
    }
    30%, 83% {
        opacity: 1;
        transform: translateX(0);
    }
    84%, 100% {
        opacity: 0;
        transform: translateX(0);
    }
}

@keyframes blinkCursor {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--mint-300);
    top: -250px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--mint-400);
    bottom: -200px;
    left: -100px;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--mint-200);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Section Styles */
section {
    padding: 3rem 0;
}

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

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--mint-50);
    color: var(--mint-600);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Section */
.problem-section {
    background: var(--gray-50);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--mint-300);
}

.problem-icon {
    width: 3rem;
    height: 3rem;
    background: var(--mint-50);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.problem-icon i {
    font-size: 1.5rem;
    color: var(--mint-600);
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

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

.solution-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    min-height: 400px;
}

.visual-card {
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 1.5rem;
    border: 2px solid var(--mint-300);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.15);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--gray-900);
    min-width: 280px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.25);
    border-color: var(--mint-500);
}

.visual-card i {
    font-size: 2.5rem;
    color: var(--mint-600);
    background: var(--mint-50);
    padding: 0.75rem;
    border-radius: 0.75rem;
}

.card-1 {
    margin-left: 0%;
}

.card-2 {
    margin-left: 10%;
}

.card-3 {
    margin-left: 20%;
}

.card-4 {
    margin-left: 30%;
}

.card-1::after,
.card-2::after,
.card-3::after {
    display: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.connection-line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3px;
    height: 2.5rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.connection-line::after {
    content: '↓';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--mint-500);
    font-size: 1.5rem;
    font-weight: bold;
}

.line-1 {
    display: flex;
    padding-left: 12.5%;
}

.line-2 {
    display: flex;
    padding-left: 25.5%;
}

.line-3 {
    display: flex;
    padding-left: 36.5%;
}

.solution-visual .line-1 {
    display: flex;
    margin-left: 22.5%;
    padding: 0px;
}


.solution-visual .line-2 {
    display: flex;
    margin-left: 31.5%;
    padding: 0px;
}

.solution-visual .line-3 {
    display: flex;
    margin-left: 42.5%;
    padding: 0px;
}

.solution-visual .line-4 {
        display: flex;
    padding-left: 12.5%;
    padding: 0px;
}
.solution-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.solution-text > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.solution-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point {
    display: flex;
    gap: 1rem;
}

.point i {
    color: var(--mint-600);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.point strong {
    color: var(--gray-900);
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.25rem;
}

.point p {
    color: var(--gray-600);
}

/* Product Showcase Section - Carousel */
.product-showcase-section {
    background: white;
}

.showcase-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    min-height: 400px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: scale(0.98);
    pointer-events: none;
}

.carousel-slide.active {
    position: relative;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.browser-mockup {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.browser-header {
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.browser-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.control-dot.red {
    background: #FF5F57;
}

.control-dot.yellow {
    background: #FFBD2E;
}

.control-dot.green {
    background: #28CA42;
}

.browser-address-bar {
    flex: 1;
    background: white;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.browser-address-bar i {
    font-size: 0.75rem;
    color: var(--mint-600);
}

.browser-address-bar span {
    color: var(--gray-700);
}

.browser-content {
    position: relative;
    overflow: hidden;
    background: var(--gray-50);
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-caption {
    padding: 1.5rem 0 0 0;
    text-align: center;
}

.showcase-caption h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.showcase-caption p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Carousel Dots - Right Side */
.carousel-dots-right {
    position: absolute;
    right: -3rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: var(--mint-400);
    transform: scale(1.3);
    border-color: var(--mint-200);
}

.dot.active {
    background: var(--mint-500);
    height: 40px;
    border-radius: 7px;
    border-color: var(--mint-300);
}

/* Solution Section */
.solution-section {
    background: white;
    overflow: hidden;
}

/* How It Works Section */
.how-it-works {
    background: var(--gray-50);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step {
    position: relative;
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 2px solid var(--gray-200);
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: 2rem;
    background: var(--mint-500);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: var(--mint-50);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: var(--mint-600);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.step > p {
    color: var(--gray-700);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.step ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-600);
}

.step ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--mint-600);
    font-weight: 700;
}

.step-result {
    padding: 1rem;
    background: var(--mint-50);
    border-radius: 0.5rem;
    border-left: 3px solid var(--mint-500);
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--mint-300);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--mint-50);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--mint-600);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background: var(--gray-50);
}

.benefits-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    background: var(--mint-50);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--mint-600);
}

.benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 2px solid var(--mint-200);
    text-align: center;
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.1);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--mint-600);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-600);
    font-weight: 600;
}

/* Social Proof Section */
.social-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: #FCD34D;
    font-size: 1rem;
}

.testimonial-content p {
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
}

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

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--mint-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint-600);
    font-size: 1.25rem;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--mint-500) 0%, var(--mint-600) 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-section .btn-primary-large {
    background: white;
    color: var(--mint-600);
}

.cta-section .btn-primary-large:hover {
    background: var(--gray-50);
}

.cta-section .btn-secondary-large {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.cta-note i {
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

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

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gray-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--mint-600);
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.footer-column a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--mint-400);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.grecaptcha-badge {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .modal-header h2 {
        font-size: 24px !important;
    }

    .problems-grid,
    .features-grid,
    .testimonials-grid,
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-content,
    .benefits-container {
        grid-template-columns: 1fr;
    }

    .solution-visual {
        order: 2;
    }

    /* Product Showcase Carousel - Tablet Responsive */
    .showcase-carousel {
        padding: 0 2.5rem;
    }

    .carousel-dots-right {
        right: -2rem;
    }
}

@media (max-width: 768px) {
    /* Reduce section spacing on mobile */
    section {
        padding: 3rem 0;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        margin-bottom: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 2rem;
    }

    .problems-grid,
    .features-grid,
    .testimonials-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }

    #join-waitlist-btn,
    #watch-video-btn {
        justify-content: center;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Product Showcase Carousel - Mobile Responsive */
    .showcase-carousel {
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .carousel-dots-right {
        position: static;
        flex-direction: row;
        transform: none;
        justify-content: center;
        margin-top: 1.5rem;
        gap: 0.75rem;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .dot.active {
        width: 32px;
        height: 12px;
        border-radius: 6px;
    }

    .browser-header {
        padding: 0.5rem 0.75rem;
    }

    .control-dot {
        width: 10px;
        height: 10px;
    }

    .showcase-caption {
        padding: 1rem 0.5rem 0 0.5rem;
    }

    .showcase-caption h3 {
        font-size: 1.1rem;
    }

    .showcase-caption p {
        font-size: 0.9rem;
    }
}

/* Image Lightbox for Mobile */
.image-lightbox {
    display: none;
    position: fixed;
    z-index: 3500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
    touch-action: pan-y pinch-zoom;
}

.image-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.image-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.image-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.image-lightbox-slide {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.image-lightbox-slide img {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
}

.image-lightbox-caption {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 1rem;
}

.image-lightbox-caption h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.image-lightbox-caption p {
    font-size: 1rem;
    opacity: 0.9;
}

.image-lightbox-dots {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    z-index: 20;
}

.lightbox-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-dot.active {
    background: white;
    width: 10px;
    height: 10px;
}

.lightbox-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Swipe indicator */
.image-lightbox-content::after {
    content: '← Swipe →';
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    animation: fadeOut 3s ease forwards;
}

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

@media (max-width: 768px) {
    .image-lightbox-slide img {
        max-height: 60vh;
    }
    
    .image-lightbox-caption h3 {
        font-size: 1.25rem;
    }
    
    .image-lightbox-caption p {
        font-size: 0.875rem;
    }
}

/* Video Lightbox */
.video-lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.video-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    width: 1200px;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.video-lightbox-content video {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
    background: #000;
}

/* Responsive video lightbox */
@media (max-width: 768px) {
    .video-lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }

    .video-close {
        top: -2.5rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
    }
}

/* Waiting List Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 97vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--gray-700);
}

.modal-header {
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    text-align: center;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding-right: 0.5rem;
}

.form-intro {
    color: var(--gray-600);
    font-size: 1rem;
    margin: 0;
    padding-bottom: 0.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--mint-500);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--mint-500);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--mint-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message i {
    font-size: 4rem;
    color: var(--mint-500);
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--gray-600);
    font-size: 1rem;
}

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

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


  
        
        /* Make steps display in 4 columns */
        #how-it-works .steps-container {
            grid-template-columns: repeat(4, 1fr) !important;
            gap: 2rem !important;
        }
        
        #how-it-works .step {
            padding: 2rem !important;
        }
        
        #how-it-works .step h3 {
            font-size: 1.25rem !important;
        }
        
        #how-it-works .step ul {
            font-size: 0.9rem !important;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1400px) {
            #how-it-works .steps-container {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }
        
        @media (max-width: 1024px) {
            .solution-section .solution-visual {
                flex-wrap: wrap !important;
                gap: 1rem !important;
            }
            
            
            .solution-section .connection-line {
                width: 40px !important;
            }
        }
        
        @media (max-width: 768px) {
            .solution-section .solution-visual {
                flex-direction: column !important;
                gap: 0 !important;
            }
            
            
            .solution-section .connection-line {
                width: 3px !important;
                height: 30px !important;
                background: var(--mint-400) !important;
            }
            
            .solution-section .connection-line::after {
                content: '↓';
                right: auto;
                top: auto;
                bottom: -8px;
                left: 50%;
                transform: translateX(-50%);
            }
            
            #how-it-works .steps-container {
                grid-template-columns: 1fr !important;
            }
        }
        
        /* Breaking Code Effect for Hero Section */
        .hero {
            position: relative;
            overflow: hidden;
        }
        
        .code-breaking-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .error-message {
            position: absolute;
            font-family: 'Courier New', monospace;
            font-size: 0.85rem;
            color: #ff4444;
            background: rgba(0, 0, 0, 0.8);
            padding: 0.5rem 1rem;
            border-left: 3px solid #ff4444;
            white-space: nowrap;
            animation: slideError 8s infinite;
            opacity: 0;
        }
        
        .error-message:nth-child(1) {
            top: 20%;
            right: -400px;
            animation-delay: 0s;
        }
        
        .error-message:nth-child(2) {
            top: 40%;
            right: -400px;
            animation-delay: 2s;
        }
        
        .error-message:nth-child(3) {
            top: 60%;
            right: -400px;
            animation-delay: 4s;
        }
        
        .error-message:nth-child(4) {
            top: 80%;
            right: -400px;
            animation-delay: 6s;
        }
        
        @keyframes slideError {
            0% {
                right: -400px;
                opacity: 0;
            }
            10% {
                right: 10%;
                opacity: 0.9;
            }
            30% {
                right: 10%;
                opacity: 0.9;
            }
            40% {
                right: -400px;
                opacity: 0;
            }
            100% {
                right: -400px;
                opacity: 0;
            }
        }
        
        .hero-title {
            position: relative;
            animation: textGlitch 3s infinite;
        }
        
        @keyframes textGlitch {
            0%, 90%, 100% {
                text-shadow: none;
            }
            92% {
                text-shadow: 3px 0 red, -3px 0 blue;
                transform: translateX(2px);
            }
            94% {
                text-shadow: -3px 0 red, 3px 0 blue;
                transform: translateX(-2px);
            }
            96% {
                text-shadow: 3px 0 red, -3px 0 blue;
                transform: translateX(0);
            }
        }
        
        .crack-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(90deg, transparent 0%, transparent 48%, rgba(255, 0, 0, 0.3) 49%, rgba(255, 0, 0, 0.3) 51%, transparent 52%, transparent 100%),
                linear-gradient(45deg, transparent 0%, transparent 48%, rgba(255, 0, 0, 0.2) 49%, rgba(255, 0, 0, 0.2) 51%, transparent 52%, transparent 100%);
            pointer-events: none;
            opacity: 0;
            animation: cracksAppear 8s infinite;
            z-index: 0;
        }
        
        @keyframes cracksAppear {
            0%, 70%, 100% {
                opacity: 0;
            }
            75%, 95% {
                opacity: 0.6;
            }
        }
        
        .code-fragment {
            position: absolute;
            font-family: 'Courier New', monospace;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            white-space: pre;
            animation: fragmentFall 6s infinite;
            opacity: 0;
        }
        
        .code-fragment:nth-child(5) {
            top: -50px;
            left: 15%;
            animation-delay: 0.5s;
        }
        
        .code-fragment:nth-child(6) {
            top: -50px;
            left: 45%;
            animation-delay: 1.5s;
        }
        
        .code-fragment:nth-child(7) {
            top: -50px;
            left: 75%;
            animation-delay: 2.5s;
        }
        
        @keyframes fragmentFall {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
            }
            50% {
                transform: translateY(300px) rotate(180deg);
                opacity: 0.5;
            }
            100% {
                transform: translateY(600px) rotate(360deg);
                opacity: 0;
            }
        }
        
        @media (max-width: 768px) {
            .error-message {
                font-size: 0.7rem;
                padding: 0.4rem 0.8rem;
            }
            
            .code-fragment {
                display: none;
            }
        }
        
        /* Playing Card Design for Problem Section */
        .problem-card {
            background: linear-gradient(145deg, #fefefe 0%, #f9f9f9 100%);
            padding: 2.5rem;
            border-radius: 0.75rem;
            border: 3px solid #e8e8e8;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 
                        0 8px 16px rgba(0, 0, 0, 0.15),
                        inset 0 1px 0 rgba(255, 255, 255, 0.8);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: visible;
            transform-style: preserve-3d;
            aspect-ratio: 5/6;
            display: flex;
            flex-direction: column;
        }
        
        /* Card texture overlay */
        .problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    45deg,
                    transparent,
                    transparent 2px,
                    rgba(0, 0, 0, 0.01) 2px,
                    rgba(0, 0, 0, 0.01) 4px
                );
            border-radius: 0.75rem;
            pointer-events: none;
            z-index: 1;
            right: auto;
        }
        
        /* Corner decorative elements like playing cards - Top Right */
        .problem-card::after {
            content: '♠';
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 2.5rem;
            color: var(--mint-400);
            opacity: 0.35;
            z-index: 2;
            transition: all 0.3s ease;
            line-height: 1;
        }
        
        .problem-card:nth-child(2)::after { content: '♥'; color: #ff6b6b; }
        .problem-card:nth-child(3)::after { content: '♣'; color: var(--mint-500); }
        .problem-card:nth-child(4)::after { content: '♦'; color: #ff8787; }
        .problem-card:nth-child(5)::after { content: '♠'; color: var(--mint-600); }
        .problem-card:nth-child(6)::after { content: '♥'; color: #ffa07a; }
        
        /* Corner decorative elements - Bottom Left (rotated 180deg) */
        .problem-card::before {
            content: '♠';
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            font-size: 2.5rem;
            color: var(--mint-400);
            opacity: 0.35;
            z-index: 2;
            transition: all 0.3s ease;
            transform: rotate(180deg);
            line-height: 1;
        }
        
        .problem-card:nth-child(2)::before { content: '♥'; color: #ff6b6b; }
        .problem-card:nth-child(3)::before { content: '♣'; color: var(--mint-500); }
        .problem-card:nth-child(4)::before { content: '♦'; color: #ff8787; }
        .problem-card:nth-child(5)::before { content: '♠'; color: var(--mint-600); }
        .problem-card:nth-child(6)::before { content: '♥'; color: #ffa07a; }
        
        .problem-card:hover {
            transform: translateY(-12px) rotate(-2deg) scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 
                        0 20px 40px rgba(20, 184, 166, 0.25),
                        inset 0 1px 0 rgba(255, 255, 255, 0.9);
            border-color: var(--mint-300);
            z-index: 10;
        }
        
        .problem-card:hover::after {
            opacity: 0.7;
            transform: scale(1.2) rotate(-1deg);
        }
        
        .problem-card:hover::before {
            opacity: 0.7;
            transform: rotate(180deg) scale(1.2);
            bottom: 50px;
        }
        
        .problem-icon {
            width: 4.5rem;
            height: 4.5rem;
            background: linear-gradient(135deg, var(--mint-50) 0%, var(--mint-100) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem auto;
            position: relative;
            box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
            transition: all 0.3s ease;
            border: 3px solid white;
            z-index: 3;
        }
        
        .problem-card:hover .problem-icon {
            transform: scale(1.15);
            box-shadow: 0 6px 20px rgba(20, 184, 166, 0.35);
            border-color: var(--mint-200);
        }
        
        .problem-icon i {
            font-size: 2rem;
            color: var(--mint-600);
            transition: all 0.3s ease;
        }
        
        .problem-card:hover .problem-icon i {
            transform: scale(1.1);
            color: var(--mint-700);
        }
        
        .problem-card h3 {
            font-size: 1.375rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 1rem;
            line-height: 1.3;
            transition: color 0.3s ease;
            text-align: center;
            position: relative;
            z-index: 3;
        }
        
        .problem-card:hover h3 {
            color: var(--mint-600);
        }
        
        .problem-card p {
            color: var(--gray-600);
            line-height: 1.7;
            font-size: 0.95rem;
            text-align: center;
            position: relative;
            z-index: 3;
            flex: 1;
        }
        
        /* Responsive card design */
        @media (max-width: 768px) {
            .problem-card {
                padding: 2rem;
                aspect-ratio: auto;
            }
            
            .problem-icon {
                width: 3.5rem;
                height: 3.5rem;
            }
            
            .problem-icon i {
                font-size: 1.5rem;
            }
            
            .problem-card:hover {
                transform: translateY(-6px) scale(1.02);
            }
        }
        
        /* Tooltip Styles */
        .stat {
            position: relative;
        }
        
        .stat-help {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            margin-top: 8px;
            border-radius: 50%;
            background: rgb(108 105 105 / 80%);
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
            border: 2px solid rgba(255, 255, 255, 0.2);
            z-index: 100;
        }
        
        .stat-help:hover {
            background: rgba(0, 0, 0, 0.95);
            border-color: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
            z-index: 10001;
        }
        
        .stat-help.active {
            z-index: 10001;
        }
        
        .stat-help[data-tooltip]:hover::after,
        .stat-help[data-tooltip].active::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-bottom: 10px;
            padding: 14px 18px;
            background: rgba(0, 0, 0, 0.95);
            color: #fff;
            font-size: 0.95rem;
            line-height: 1.6;
            white-space: normal;
            width: 300px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            z-index: 10000;
            pointer-events: none;
            animation: tooltipFadeIn 0.2s ease-out;
            font-weight: 400;
        }
        
        .stat-help[data-tooltip]:hover::before,
        .stat-help[data-tooltip].active::before {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-bottom: 2px;
            border: 8px solid transparent;
            border-top-color: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            pointer-events: none;
            animation: tooltipFadeIn 0.2s ease-out;
        }
        
        @keyframes tooltipFadeIn {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(-5px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .stat-help[data-tooltip]:hover::after,
            .stat-help[data-tooltip].active::after {
                width: 260px;
                font-size: 0.9rem;
            }
        }
        
        /* Development Leader's Dilemma Section */
        .dilemma-section {
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
            padding: 5rem 0;
        }
        
        .dilemma-container {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 2rem;
            margin-top: 3rem;
            align-items: start;
        }
        
        .dilemma-side {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .dilemma-side:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        
        .dilemma-left {
            border-top: 4px solid #14B8A6;
        }
        
        .dilemma-right {
            border-top: 4px solid #ff4444;
        }
        
        .dilemma-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 1.5rem;
        }
        
        .dilemma-left .dilemma-icon {
            background: rgba(20, 184, 166, 0.1);
            color: #14B8A6;
        }
        
        .dilemma-right .dilemma-icon {
            background: rgba(255, 68, 68, 0.1);
            color: #ff4444;
        }
        
        .dilemma-side h3 {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
        }
        
        .dilemma-benefits,
        .dilemma-risks {
            margin-bottom: 1.5rem;
        }
        
        .dilemma-benefits h4,
        .dilemma-risks h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #333;
        }
        
        .dilemma-side ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .dilemma-side li {
            padding: 0.5rem 0;
            display: flex;
            align-items: start;
            gap: 0.75rem;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .dilemma-benefits i {
            color: #14B8A6;
            flex-shrink: 0;
            margin-top: 0.25rem;
        }
        
        .dilemma-risks i {
            color: #ff4444;
            flex-shrink: 0;
            margin-top: 0.25rem;
        }
        
        .dilemma-fear {
            margin-top: 1.5rem;
            padding: 1rem;
            background: rgba(255, 68, 68, 0.05);
            border-left: 3px solid #ff4444;
            border-radius: 4px;
            font-style: italic;
            color: #666;
        }
        
        .dilemma-fear strong {
            color: #ff4444;
        }
        
        .dilemma-vs {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding-top: 3rem;
        }
        
        .vs-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #14B8A6 0%, #0ea492 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(20, 184, 166, 0.3);
            z-index: 2;
            position: relative;
        }
        
        .vs-circle span {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
        }
        
        .vs-line {
            width: 2px;
            flex: 1;
            background: linear-gradient(180deg, rgba(20, 184, 166, 0.3) 0%, rgba(20, 184, 166, 0) 100%);
            margin-top: -10px;
        }
        
        .dilemma-solution {
            margin-top: 4rem;
        }
        
        .solution-highlight {
            background: linear-gradient(135deg, #14B8A6 0%, #0ea492 100%);
            border-radius: 16px;
            padding: 3rem;
            text-align: center;
            color: white;
            box-shadow: 0 8px 40px rgba(20, 184, 166, 0.25);
        }
        
        .solution-highlight i {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }
        
        .solution-highlight h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .solution-highlight p {
            font-size: 1.125rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .solution-highlight strong {
            color: white;
            font-weight: 700;
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .dilemma-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .dilemma-vs {
                display: none;
            }
            
            .dilemma-side {
                padding: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .dilemma-section {
                padding: 3rem 0;
            }
            
            .dilemma-side {
                padding: 1.5rem;
            }
            
            .dilemma-side h3 {
                font-size: 1.5rem;
            }
            
            .solution-highlight {
                padding: 2rem;
            }
            
            .solution-highlight h3 {
                font-size: 1.5rem;
            }
            
            .solution-highlight p {
                font-size: 1rem;
            }
        }