:root {
    --background-color: #ffffff;
    --text-color: #151c3b;
    --accent-color: #4285f4;
    --secondary-accent: #00c4cc;
    --light-accent: #f1f6ff;
    --dark-accent: #0a1e63;
    --border-color: #e6eeff;
    --shadow-color: rgba(66, 133, 244, 0.15);
    --gradient-primary: linear-gradient(135deg, #4285f4, #00c4cc);
    --gradient-secondary: linear-gradient(135deg, #f1f6ff, #e6eeff);
    --transition-speed: 0.3s;
    --transition-function: cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

h1 span {
    background: var(--text-color);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: all var(--transition-speed) var(--transition-function);
}

ul {
    list-style: none;
}

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

.hero .container {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Cursor Styles */
.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.8;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(66, 133, 244, 0.2);
    pointer-events: none;
    z-index: 9998;
    opacity: 0.5;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s, background-color 0.6s, opacity 0.6s;
}



/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 990;
    box-shadow: 0 4px 30px var(--shadow-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

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

.logo-icon {
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-left: -1px;
}

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

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    padding-top: 100px;
    text-align: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    margin-right: 5px;
    padding: 10px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.mobile-menu-hitarea {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    z-index: 1002;
    cursor: pointer;
}

.mobile-menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--accent-color);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

.mobile-menu-icon.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #ff4d4d;
}

.mobile-menu-icon.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-icon.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #ff4d4d;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    padding: 0;
}

.mobile-menu ul li a {
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-menu .nav-cta {
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.2);
}

nav a {
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(66, 133, 244, 0.4);
}

.nav-cta::after {
    display: none;
}

/* Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.btn-primary:hover::before {
    transform: translateY(100%);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 9rem 0 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-greeting {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards 0.2s;
    width: auto;
    max-width: 95%;
    text-align: center;
    font-family: var(--font-secondary);
    text-transform: none;
    padding: 0.4rem 0.8rem;
    border-bottom: 2px solid var(--secondary-accent);
    border-top: 2px solid var(--accent-color);
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.2);
    border-radius: 4px;
    white-space: nowrap;
    line-height: 1.3;
}

.dear-highlight {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(66, 133, 244, 0.3);
    text-transform: uppercase;
}

.dear-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    border-radius: 2px;
}

.hero-greeting::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.hero-greeting::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--secondary-accent);
    border-radius: 50%;
    transform: translateY(-50%);
}

.hero-heading {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.4s;
    width: 100%;
    text-align: center;
}

.hero-subheading {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.6s;
    width: 100%;
    text-align: center;
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero .btn-primary {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards 0.8s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1.5s forwards 1.5s;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    margin-bottom: 10px;
}

.wheel {
    width: 6px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 3px;
    animation: scrollWheel 1.5s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Process Section */
.process {
    padding: 8rem 0;
    background: linear-gradient(to bottom, white, #f8f9fd);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.03) 0%, rgba(66, 133, 244, 0) 70%);
    top: -400px;
    left: -200px;
    border-radius: 50%;
    z-index: 0;
}

.process::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52, 168, 83, 0.03) 0%, rgba(52, 168, 83, 0) 70%);
    bottom: -300px;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(120deg, var(--accent-color), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.2rem;
}

/* Evolution Pathway */
.evolution-pathway {
    margin: 3rem auto 4rem;
    max-width: 1100px;
    position: relative;
}

.pathway-container {
    background-color: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(66, 133, 244, 0.15);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(66, 133, 244, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pathway-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(66, 133, 244, 0.2);
    border-color: rgba(66, 133, 244, 0.25);
}

.pathway-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.pathway-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.pathway-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.pathway-track {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 220px;
}

.pathway-start, .pathway-end {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pathway-journey {
    flex: 3;
    position: relative;
    padding: 2rem 0;
}

.journey-line {
    height: 6px;
    background: linear-gradient(to right, var(--secondary-accent), var(--accent-color));
    border-radius: 6px;
    position: relative;
    box-shadow: 0 3px 15px rgba(66, 133, 244, 0.25);
    margin: 0 1rem;
    overflow: hidden;
}

.journey-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.4) 50%, 
        rgba(255,255,255,0) 100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.progress-marker {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    z-index: 2;
}

.progress-marker span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent-color);
}

.progress-marker:nth-child(1) { left: 10%; }
.progress-marker:nth-child(2) { left: 30%; }
.progress-marker:nth-child(3) { left: 50%; }
.progress-marker:nth-child(4) { left: 70%; }
.progress-marker:nth-child(5) { left: 90%; }

.pathway-container:hover .progress-marker {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.25);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(66, 133, 244, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(66, 133, 244, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(66, 133, 244, 0);
    }
}

.journey-milestones {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    margin-top: 2.5rem;
    position: relative;
}

.milestone {
    width: 20%;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    opacity: 0.7;
    position: relative;
}

.pathway-container:hover .milestone {
    opacity: 1;
    transform: translateY(-5px);
}

.pathway-point {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 180px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pathway-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pathway-point.traditional {
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.05), rgba(52, 168, 83, 0.15));
    border-left: 4px solid var(--secondary-accent);
}

.pathway-point.ai {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.05), rgba(66, 133, 244, 0.15));
    border-right: 4px solid var(--accent-color);
}

.pathway-container:hover .pathway-point {
    transform: translateY(-10px);
}

.pathway-container:hover .pathway-point.traditional {
    box-shadow: 0 15px 30px rgba(52, 168, 83, 0.15);
}

.pathway-container:hover .pathway-point.ai {
    box-shadow: 0 15px 30px rgba(66, 133, 244, 0.15);
}

.pathway-container:hover .pathway-point::before {
    opacity: 1;
}

.point-icon {
    margin-bottom: 1.2rem;
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.pathway-point.traditional .point-icon {
    color: var(--secondary-accent);
}

.pathway-point.ai .point-icon {
    color: var(--accent-color);
}

.pathway-container:hover .point-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pathway-point h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.pathway-point.traditional h3 {
    color: var(--secondary-accent);
}

.pathway-point.ai h3 {
    color: var(--accent-color);
}

.pathway-point p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.pathway-container:hover .pathway-point p {
    opacity: 1;
}

.process-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.process {
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(90deg, rgba(52, 168, 83, 0.05), rgba(66, 133, 244, 0.05));
    z-index: 0;
    transform: skewY(-3deg);
}

.process-cards {
    position: relative;
}

.process-cards::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-color), var(--secondary-accent));
    z-index: -1;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(66, 133, 244, 0.3);
}

.process-card {
    display: flex;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.07);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    border: 1px solid rgba(66, 133, 244, 0.1);
    margin-bottom: 1.2rem;
}

.process-card.active {
    opacity: 1;
    transform: translateY(0);
}

.process-card:hover {
    box-shadow: 0 20px 50px rgba(66, 133, 244, 0.15);
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(66, 133, 244, 0.3);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.process-card:hover::before {
    opacity: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.5), 0 0 0 5px white;
    z-index: 5;
    transition: all 0.3s ease;
    line-height: 1;
    text-align: center;
    padding: 0;
    letter-spacing: -0.5px;
    min-width: 50px;
    min-height: 50px;
    overflow: visible;
    border: 2px solid white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.step-circle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.7;
    transition: opacity 0.5s ease;
    border-radius: 50%;
}

.process-card:hover .step-circle {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 15px 30px rgba(66, 133, 244, 0.5), 0 0 0 10px white;
}

.process-card:hover .step-circle::after {
    opacity: 1;
}

.process-card-content {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    width: 100%;
    gap: 0;
    align-items: center;
    padding: 1.5rem 2rem 1.5rem 2.5rem;
    position: relative;
    z-index: 2;
}

.ai-side, .traditional-side {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.traditional-side {
    background: rgba(0, 196, 204, 0.08);
    margin-right: 0.5rem;
    border: none;
    color: #00c4cc;
    transform: translateY(0);
}

.ai-side {
    background: rgba(66, 133, 244, 0.08);
    margin-left: 0.5rem;
    border: none;
    color: var(--accent-color);
    transform: translateY(0);
}

.process-card:hover .ai-side {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.08), rgba(66, 133, 244, 0.18));
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.1);
}

.process-card:hover .traditional-side {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(52, 168, 83, 0.08), rgba(52, 168, 83, 0.18));
    box-shadow: 0 10px 25px rgba(52, 168, 83, 0.1);
}

.ai-side::before, .traditional-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover .ai-side::before,
.process-card:hover .traditional-side::before {
    opacity: 1;
}

.ai-side h3, .traditional-side h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.process-card:hover .ai-side h3,
.process-card:hover .traditional-side h3 {
    transform: none;
}

.process-card:hover .ai-side h3,
.process-card:hover .traditional-side h3 {
    transform: scale(1.03);
}

.arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 40px;
    transform: scale(1);
    transition: all 0.3s ease;
}

.process-card:hover .arrow {
    transform: scale(1.1);
}

.arrow::before {
    display: none;
}

.arrow svg {
    position: relative;
    z-index: 2;
    width: 30px;
    height: 30px;
}

.arrow svg path {
    stroke: var(--accent-color);
    stroke-width: 2.5;
    transition: all 0.3s ease;
}

.process-card:hover .arrow svg path {
    stroke-width: 2.5;
}

@keyframes drawArrow {
    to {
        stroke-dashoffset: 0;
    }
}

/* Who Should Join Section */
.who-should-join {
    padding: 6rem 0;
    background-color: var(--light-accent);
    position: relative;
    overflow: hidden;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.role-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.role-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px var(--shadow-color);
    color: white;
}

.role-card:hover::before {
    opacity: 1;
}

.role-card:hover .role-icon {
    color: white;
}

.role-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.role-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.role-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Join Section */
.join {
    padding: 6rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.join-text h2 {
    text-align: left;
}

.join-text h2::after {
    left: 0;
    transform: none;
}

.benefits {
    margin-top: 2rem;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.benefits svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

.join-form {
    background: var(--light-accent);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    position: relative;
    z-index: 2;
}

.form-floating {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-floating input {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    background-color: white;
    transition: border-color 0.3s ease;
}

.form-floating input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-floating label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    padding: 0 0.5rem;
    background-color: white;
    color: var(--text-color);
    opacity: 0.7;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-floating input:focus ~ label,
.form-floating input:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%) scale(0.9);
    opacity: 1;
    color: var(--accent-color);
}

#waitlist-form .btn-primary {
    width: 100%;
    justify-content: center;
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.05;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    background-color: var(--light-accent);
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-branding {
    max-width: 300px;
}

.tagline {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-nav h4, .footer-social h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-nav ul li {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: var(--text-color);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.social-icon {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--accent-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px var(--shadow-color);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .process-card-content {
        padding: 1.25rem 1.5rem 1.25rem 2rem;
    }
    
    .ai-side, .traditional-side {
        padding: 1rem 1.25rem;
        min-height: 70px;
    }
}

@media (max-width: 992px) {
    .evolution-pathway {
        padding: 5rem 2rem;
    }
    
    .pathway-container {
        padding: 2rem;
    }
    
    .process-card-content {
        grid-template-columns: 1fr 50px 1fr;
        padding: 1rem 1.25rem 1rem 1.75rem;
    }
    
    .ai-side, .traditional-side {
        padding: 0.9rem 1rem;
        min-height: 65px;
    }
    
    .arrow {
        height: 35px;
    }
    
    .arrow svg {
        width: 25px;
        height: 25px;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .join-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-branding {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Optimize animations for mobile */
    .step-circle, .role-card, .btn-primary {
        transition: all 0.25s ease;
        will-change: transform;
        backface-visibility: hidden;
    }
    
    /* Ensure cards appear immediately on mobile */
    .role-card {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Ensure smooth scrolling on touch devices */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    h1 {
        font-size: 2.75rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .header-content {
        padding: 6rem 2rem;
    }
    
    /* Fix role cards on mobile */
    .roles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .role-card {
        max-width: 100%;
        padding: 1.5rem 1rem;
    }
    
    /* Mobile menu activation */
    nav .desktop-menu {
        display: none !important;
    }
    
    /* Hide original mobile menu icon when our new solution is active */
    .mobile-menu-icon {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Hide original mobile menu panel when our new solution is active */
    .mobile-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Also hide original mobile menu when active class is applied */
    .mobile-menu.show {
        display: none !important;
        visibility: hidden !important;
    }
    
    .evolution-pathway {
        padding: 4rem 1.5rem;
    }
    
    .pathway-container {
        padding: 1.5rem;
    }
    
    .process-card {
        margin-bottom: 1rem;
    }
    
    .process-card-content {
        grid-template-columns: 1fr 40px 1fr;
        padding: 0.9rem 1rem 0.9rem 1.5rem;
    }
    
    .ai-side, .traditional-side {
        padding: 0.8rem;
        min-height: 60px;
        font-size: 0.9rem;
    }
    
    .ai-side h3, .traditional-side h3 {
        font-size: 1rem;
    }
    
    .step-circle {
        width: 42px;
        height: 42px;
        left: -8px;
        font-size: 1.2rem;
        font-weight: 800;
        box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4), 0 0 0 4px white;
    }
    
    .arrow {
        height: 30px;
    }
    
    .arrow svg {
        width: 22px;
        height: 22px;
    }
    
    /* Improved header responsiveness */
    header {
        padding: 0.75rem 1rem;
    }
    
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .nav-cta {
        padding: 0.5rem 1rem;
    }
    
    /* Hero section improvements */
    .hero-content {
        padding: 6rem 1.5rem 4rem;
    }
    
    .hero-greeting {
        font-size: 1rem;
        padding: 0.3rem 0.6rem;
        letter-spacing: 0;
        max-width: 98%;
    }
    
    .dear-highlight {
        font-size: 1.1rem;
    }
    
    .hero-greeting::before,
    .hero-greeting::after {
        width: 6px;
        height: 6px;
    }
    
    .hero-heading {
        margin: 1rem 0;
    }
    
    .hero-subheading {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .btn-primary {
        padding: 0.9rem 1.5rem;
    }
    
    nav ul {
        gap: 1.5rem;
    }
    
    .process-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 1rem;
    }
    
    .ai-step, .traditional-step {
        width: 100%;
    }
    
    .connection {
        transform: rotate(90deg);
        height: 40px;
        margin: 1rem 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.25rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Fix role cards for small mobile */
    .roles-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0;
        overflow: visible;
    }
    
    .role-card {
        padding: 1.25rem 1rem;
        margin-bottom: 0.5rem;
    }
    
    .role-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .role-card h3 {
        font-size: 1.1rem;
        margin: 0.75rem 0;
    }
    
    .role-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Fix for any overflow issues on mobile */
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Ensure all content fits within screen */
    section {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Header improvements */
    header {
        padding: 0.5rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    nav ul {
        gap: 0.75rem;
    }
    
    nav ul li a {
        font-size: 0.9rem;
    }
    
    .nav-cta {
        padding: 0.4rem 0.75rem;
    }
    
    /* Hero section improvements */
    .hero-content {
        padding: 5rem 1rem 3rem;
    }
    
    .hero-greeting {
        font-size: 0.85rem;
        padding: 0.25rem 0.5rem;
        max-width: 100%;
        margin-bottom: 1rem;
        border-width: 1px;
    }
    
    .dear-highlight {
        font-size: 0.95rem;
    }
    
    .dear-highlight::after {
        height: 2px;
    }
    
    .hero-greeting::before,
    .hero-greeting::after {
        width: 5px;
        height: 5px;
        left: -8px;
    }
    
    .hero-greeting::after {
        right: -8px;
        left: auto;
    }
    
    .hero-heading {
        margin: 0.75rem 0;
    }
    
    .hero-subheading {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Section improvements */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    /* Other improvements */
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .join-form {
        padding: 1.5rem;
        margin-top: 2rem;
        width: 100%;
    }
    
    .form-floating input {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .form-floating label {
        font-size: 0.95rem;
    }
    
    #waitlist-form .btn-primary {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    /* Evolution Pathway Mobile Styles */
    .evolution-pathway {
        padding: 3rem 1rem;
    }
    
    .pathway-container {
        padding: 1rem;
    }
    
    .pathway-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .pathway-header h2 {
        font-size: 1.6rem;
    }
    
    .process-card {
        margin-bottom: 1.5rem;
    }
    
    .process-card-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1rem 1rem;
    }
    
    /* Process cards improvements for mobile */
    .process-cards {
        padding: 0 1rem;
        gap: 2.5rem;
    }
    
    /* Fix for step circles in mobile view */
    .process-card {
        padding-top: 40px;
        margin-top: 25px;
        position: relative;
    }
    
    .step-circle {
        left: 50%;
        top: -30px;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        line-height: 1;
        border: 3px solid white;
        box-shadow: 0 8px 20px rgba(66, 133, 244, 0.5), 0 0 0 5px white;
        z-index: 10;
        background: linear-gradient(135deg, var(--accent-color), #1a73e8);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .process-card:hover .step-circle {
        transform: translateX(-50%) scale(1.15);
        box-shadow: 0 12px 30px rgba(66, 133, 244, 0.7), 0 0 0 6px white;
    }
    
    .arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .process-card:hover .arrow {
        transform: rotate(90deg) scale(1.1);
    }
    
    .traditional-side, .ai-side {
        margin: 0;
        width: 100%;
    }
    
    .journey-line {
        display: none;
    }
    
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .process-card-content {
        padding: 1.75rem 0.75rem 0.75rem;
    }
    
    .ai-side, .traditional-side {
        padding: 0.75rem 0.5rem;
        min-height: 50px;
    }
    
    .ai-side h3, .traditional-side h3 {
        font-size: 0.9rem;
    }
    
    .step-circle {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
        top: -23px;
        font-weight: 800;
        box-shadow: 0 4px 10px rgba(66, 133, 244, 0.4), 0 0 0 4px white;
        min-width: 46px;
        min-height: 46px;
        overflow: visible;
        border: 2px solid white;
    }
    
    /* Header extreme reduction */
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    nav ul li a {
        font-size: 0.85rem;
    }
    
    nav ul {
        gap: 0.5rem;
    }
    
    .nav-cta {
        padding: 0.3rem 0.6rem;
    }
    
    /* Hero section mini */
    .hero-content {
        padding: 4.5rem 0.75rem 2.5rem;
    }
    
    h1 {
        font-size: 1.9rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-greeting {
        font-size: 0.85rem;
        padding: 0.2rem 0.5rem;
        letter-spacing: 0.5px;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    .dear-highlight {
        font-size: 0.95rem;
    }
    
    .dear-highlight::after {
        height: 2px;
    }
    
    .hero-greeting::before,
    .hero-greeting::after {
        width: 5px;
        height: 5px;
        left: -8px;
    }
    
    .hero-greeting::after {
        right: -8px;
        left: auto;
    }
    
    .hero-heading {
        margin: 0.75rem 0;
    }
    
    .hero-subheading {
        font-size: 0.9rem;
    }
    
    /* Process cards mini */
    .evolution-pathway {
        padding: 2.5rem 0.5rem;
    }
    
    .process-card {
        border-radius: 12px;
        margin-bottom: 1.25rem;
    }
    
    .process-card {
        padding-top: 35px;
        margin-top: 25px;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: -25px;
        box-shadow: 0 6px 15px rgba(66, 133, 244, 0.5), 0 0 0 4px white;
        border: 2px solid white;
    }
    
    .process-card:hover .step-circle {
        transform: translateX(-50%) scale(1.1);
        box-shadow: 0 8px 20px rgba(66, 133, 244, 0.7), 0 0 0 5px white;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .roles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    /* Fix process cards for better mobile display */
    .process-cards {
        padding: 0 0.5rem 0 1.5rem;
        gap: 1.5rem;
    }
    
    .process-card {
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
        margin-bottom: 0.75rem;
    }
    
    /* Prevent any horizontal overflow */
    body, html {
        max-width: 100vw;
        overflow-x: hidden;
    }
}

/* SPECIAL FIX FOR MOBILE MENU BUTTONS - THIS WILL OVERRIDE ALL OTHER STYLES */
@media screen and (max-width: 768px) {
    /* Hide all other mobile menu elements that might be causing conflicts */
    .mobile-menu-icon, 
    .mobile-menu, 
    #mobile-menu-toggle,
    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        z-index: -1 !important;
    }

    /* Only show our specific mobile menu button */
    #mobile-menu-btn {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 99999 !important;
    }
}
