/* Modern AI Landing Page */

:root {
    --primary-color: #0E1026;
    --primary-02: #1B1D35;
    --primary-03: #2C2E49;
    --accent-color: #BC976E;
    --text-white: #F2F2FA;
    --text-light-grey: #E4E4F0;
    --success-color: #78B57E;
    --warning-color: #FDCE57;
    --error-color: #F35D6F;
}

/* Cyclical Evaluation Animations */
@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.1); 
    }
}

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

@keyframes cycling-progress {
    0% { width: 60%; }
    50% { width: 100%; }
    100% { width: 60%; }
}

@keyframes sequential-light {
    0%, 80%, 100% { 
        background: var(--primary-03); 
        box-shadow: none; 
    }
    20%, 60% { 
        background: var(--accent-color); 
        box-shadow: 0 0 20px var(--accent-color); 
    }
}

.pulsing {
    animation: pulse 2s infinite;
}

.rotating {
    animation: rotate 20s linear infinite;
}

.cycling {
    position: relative;
}

.ongoing {
    color: var(--success-color);
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
}

.cycle-indicator {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.cycle-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    animation: rotate 3s linear infinite;
}

.cycle-text {
    color: var(--text-light-grey);
    font-size: 0.9em;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    background-color: var(--primary-color);
    color: var(--text-white);
    overflow-x: hidden;
}

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

/* Hero Section */
.modern-hero-wrapper {
    position: relative;
    overflow: hidden;
}

.modern-hero {
    position: relative;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-02) 50%, 
        var(--primary-03) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

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

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, 
        rgba(188, 151, 110, 0.1), 
        rgba(188, 151, 110, 0.05));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.float-element:nth-child(1) { top: 20%; left: 10%; }
.float-element:nth-child(2) { top: 60%; right: 15%; }
.float-element:nth-child(3) { bottom: 30%; left: 20%; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

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

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0;
}

.logo-container-right {
    text-align: right;
    margin-bottom: 2rem;
}

.hero-logo {
    height: 60px;
    width: auto;
    /* White knockout logo - no filter needed */
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    margin-bottom: 2rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.gradient-text {
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light-grey);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.disclaimer-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--text-light-grey);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

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

.cta-buttons-phone {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 2rem;
    text-align: right;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary-modern {
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(188, 151, 110, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(188, 151, 110, 0.4);
    color: var(--primary-color);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* App Screens Carousel */
.app-screens-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-screen.active {
    opacity: 1;
}

.app-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* Screen Indicators */
.screen-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

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

.indicator.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(188, 151, 110, 0.7);
}

/* App Screen Animation */
@keyframes screenFade {
    0%, 100% { opacity: 1; }
    25%, 75% { opacity: 1; }
    50% { opacity: 0; }
}

.orbit-elements {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px dashed rgba(188, 151, 110, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: reverseRotate 20s linear infinite;
    animation-delay: var(--orbit-delay);
}

.orbit-item:nth-child(1) { top: -30px; left: 50%; margin-left: -30px; }
.orbit-item:nth-child(2) { top: 50%; right: -30px; margin-top: -30px; }
.orbit-item:nth-child(3) { bottom: -30px; left: 50%; margin-left: -30px; }
.orbit-item:nth-child(4) { top: 50%; left: -30px; margin-top: -30px; }

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

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

/* Icon-specific rotations for proper vertical orientation */
.orbit-item:nth-child(4) i.fa-home {
    transform: rotate(0deg);
}

.orbit-item:nth-child(2) i.fa-brain {
    transform: rotate(-20deg);
}

.orbit-item:nth-child(3) i.fa-peace {
    transform: rotate(-36deg);
}

/* Intro Section */
.intro-section {
    background: var(--primary-color);
    padding: 3rem 0 1rem 0;
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, 
        var(--primary-color) 0%, 
        var(--primary-02) 100%);
    padding: 0 0 3rem 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light-grey);
    margin-bottom: 3rem;
}

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

.modern-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.modern-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.feature-icon-modern {
    margin-bottom: 2rem;
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: var(--primary-color);
    animation: iconFloat 3s ease-in-out infinite;
}

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

.modern-feature-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.modern-feature-card p {
    color: var(--text-light-grey);
    line-height: 1.6;
}

.feature-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    border-radius: 2px;
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, 
        var(--primary-02) 0%, 
        #1a1c33 25%,
        var(--primary-color) 50%,
        #0f1124 75%,
        var(--primary-02) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(188, 151, 110, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(188, 151, 110, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Journey Options Styling */
.option-section {
    margin: 4rem 0;
    padding: 2rem;
    border: 2px solid rgba(188, 151, 110, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
}

.option-title {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Option 1: Vertical Timeline */
.vertical-timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color), rgba(188, 151, 110, 0.3));
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 2rem;
    z-index: 2;
}

.timeline-content h5 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light-grey);
    margin: 0;
}

/* Option 2: Progress Bar */
.progress-journey {
    max-width: 800px;
    margin: 0 auto;
}

.progress-bar {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-bottom: 3rem;
}

.progress-fill {
    position: absolute;
    height: 100%;
    width: 20%;
    background: linear-gradient(90deg, var(--accent-color), #d4af85);
    border-radius: 2px;
    animation: progressFill 5s ease-in-out infinite;
}

@keyframes progressFill {
    0% { width: 20%; }
    100% { width: 100%; }
}

.progress-step {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary-02);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 700;
    transform: translateY(-13px);
}

.progress-step.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.progress-step[data-step="1"] { left: 0%; }
.progress-step[data-step="2"] { left: 25%; }
.progress-step[data-step="3"] { left: 50%; }
.progress-step[data-step="4"] { left: 75%; }
.progress-step[data-step="5"] { left: 100%; }

.progress-steps {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.progress-item {
    flex: 1;
}

.progress-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.progress-item h6 {
    color: var(--text-white);
    margin: 0;
    font-size: 0.9rem;
}

/* Option 3: Circular Flow */
.circular-journey {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 2rem auto;
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    animation: centerPulse 3s ease-in-out infinite;
}

.circle-center span {
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 0.2rem;
}

@keyframes centerPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.circle-step {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-150px) rotate(calc(-1 * var(--angle)));
}

.circle-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-02);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.3rem;
    margin: 0 auto 0.5rem;
}

.circle-label {
    color: var(--text-white);
    font-size: 0.8rem;
    text-align: center;
}

/* Option 4: Card Journey */
.card-journey {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
}

.journey-card {
    min-width: 180px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-5px);
}

.journey-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.journey-card h6 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.journey-card p {
    color: var(--text-light-grey);
    font-size: 0.8rem;
    margin: 0;
}

.card-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.5rem;
    background: var(--primary-color);
    padding: 5px;
    border-radius: 50%;
}

.journey-card:last-child .card-arrow {
    display: none;
}

/* Option 5: Minimal Dots */
.dots-journey {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.dot-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.5);
}

.dot-line {
    width: 50px;
    height: 2px;
    background: rgba(188, 151, 110, 0.4);
    margin: 0 1rem;
    align-self: flex-start;
    margin-top: 6px;
}

.dot-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dot-content i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.dot-content span {
    color: var(--text-white);
    font-size: 0.9rem;
}

/* Cyclical Evaluation Styles for Each Option */

/* Option 1: Timeline Cyclical Elements */
.cycling-progress {
    animation: cycling-progress 4s ease-in-out infinite;
}

.pulsing-step {
    animation: pulse 2.5s infinite ease-in-out;
}

.ongoing-item {
    position: relative;
}

.ongoing-item::after {
    content: '●';
    position: absolute;
    top: -5px;
    right: -5px;
    color: var(--success-color);
    animation: pulse 1.5s infinite;
}

.progress-cycle {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-light-grey);
    font-size: 0.9em;
}

/* Simple Clean Journey Styling */
/* Two-Row Journey Styles */
.two-row-journey {
    max-width: 900px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.5rem;
    position: relative;
}

.two-row-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(188, 151, 110, 0.02), rgba(188, 151, 110, 0.05));
    border-radius: 24px;
    z-index: -1;
}

.journey-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(-27px); /* Move all steps left by 3/8 inch (1/2 - 1/8) */
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-height: 160px;
    justify-content: flex-start;
}

.step-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(188, 151, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(188, 151, 110, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(188, 151, 110, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.step-circle:hover {
    transform: translateY(-12px) scale(1.08);
    border-color: rgba(188, 151, 110, 0.6);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 3px rgba(188, 151, 110, 0.15),
        0 0 30px rgba(188, 151, 110, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.step-circle:hover::after {
    width: 100%;
    height: 100%;
}

.step-circle.ai-powered {
    background: linear-gradient(135deg, 
        rgba(188, 151, 110, 0.15) 0%, 
        rgba(188, 151, 110, 0.08) 100%);
    border: 2px solid rgba(188, 151, 110, 0.4);
    animation: aiPulse 3s ease-in-out infinite;
}

.step-circle.ai-powered::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(188, 151, 110, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: aiGlow 2s ease-in-out infinite alternate;
}

@keyframes aiGlow {
    0% { 
        width: 40px; 
        height: 40px; 
        opacity: 0.3; 
    }
    100% { 
        width: 60px; 
        height: 60px; 
        opacity: 0.6; 
    }
}

@keyframes aiPulse {
    0%, 100% { 
        box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.1),
            0 0 20px rgba(188, 151, 110, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% { 
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.15),
            0 0 30px rgba(188, 151, 110, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.step-circle.ongoing {
    /* Override any inherited styles to match exactly */
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

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

.step-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.step-content {
    max-width: 140px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.ongoing-label {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--accent-color);
    background: rgba(188, 151, 110, 0.1);
    border: 1px solid rgba(188, 151, 110, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

/* Row Connector */
.row-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    position: relative;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.connector-badge {
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 
        0 15px 35px rgba(188, 151, 110, 0.4),
        0 5px 15px rgba(188, 151, 110, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    animation: connectorFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes connectorFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
}

.connecting-line.horizontal {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(188, 151, 110, 0.4), rgba(255, 255, 255, 0.1));
    border-radius: 1px;
    position: relative;
    justify-self: center;
}

.connecting-line.vertical {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(188, 151, 110, 0.5), rgba(255, 255, 255, 0.1));
    border-radius: 1px;
    margin-bottom: 1rem;
}

.connecting-line.ai-flow {
    background: linear-gradient(90deg, 
        rgba(188, 151, 110, 0.2), 
        rgba(188, 151, 110, 0.6), 
        rgba(188, 151, 110, 0.2)
    );
    animation: flowPulse 2s ease-in-out infinite;
}

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

.journey-step:last-child + .connecting-line {
    display: none;
}

/* Old setup flow - keeping for compatibility */
.setup-flow {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 160px;
}

.connecting-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), rgba(188, 151, 110, 0.6));
    border-radius: 2px;
    margin: 0 1rem;
}

/* Step Circles */
.step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.step-number {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Setup Steps (1-2-3) */
.step-circle.setup {
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    color: var(--primary-color);
    border: 3px solid transparent;
    box-shadow: 0 5px 20px rgba(188, 151, 110, 0.3);
}

.step-circle.setup:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(188, 151, 110, 0.4);
}

/* Junction Step (3) */
.step-circle.junction {
    background: linear-gradient(45deg, var(--accent-color), var(--success-color));
    color: var(--primary-color);
    border: 3px solid var(--success-color);
    box-shadow: 0 5px 20px rgba(120, 181, 126, 0.4);
    transform: scale(1.1);
}

/* Ongoing Steps (4-5) */
.step-circle.ongoing {
    background: linear-gradient(45deg, var(--success-color), #a8d4ad);
    color: var(--primary-color);
    border: 3px solid var(--success-color);
    box-shadow: 0 5px 20px rgba(120, 181, 126, 0.3);
    animation: ongoingPulse 2s ease-in-out infinite;
}

@keyframes ongoingPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(120, 181, 126, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(120, 181, 126, 0.5);
    }
}

/* Step Content */
.step-content {
    max-width: 140px;
}

.step-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light-grey);
    margin: 0;
    line-height: 1.3;
}

/* Curved Arrow Connector */
.curve-connector {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.curve-arrow {
    width: 200px;
    height: 120px;
    opacity: 0.8;
}

/* Connecting Line to Loop */
.connecting-line.to-loop {
    background: linear-gradient(90deg, var(--accent-color), var(--success-color));
}

/* Continuous Loop with 3-4-5 */
.continuous-loop {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loop-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.loop-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.rotating-circle {
    animation: rotateLoop 8s linear infinite;
}

@keyframes rotateLoop {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -180; }
}

.center-pulse {
    animation: centerPulse 2s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% { 
        r: 12;
        opacity: 0.6;
    }
    50% { 
        r: 16;
        opacity: 0.3;
    }
}

/* Loop Steps positioned around circle */
.loop-step {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Step 3: Left side (entry point from 1-2) */
.loop-step.left-side {
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

/* Step 4: Top right */
.loop-step.top-right {
    top: 30px;
    right: 30px;
}

/* Step 5: Bottom right */
.loop-step.bottom-right {
    bottom: 30px;
    right: 30px;
}

/* Loop Step Circles */
.step-circle.loop-step-circle {
    background: linear-gradient(45deg, var(--success-color), #a8d4ad);
    color: var(--primary-color);
    border: 3px solid var(--success-color);
    box-shadow: 0 5px 20px rgba(120, 181, 126, 0.4);
    animation: loopPulse 3s ease-in-out infinite;
}

@keyframes loopPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(120, 181, 126, 0.4);
    }
    33% { 
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(120, 181, 126, 0.6);
    }
    66% { 
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(120, 181, 126, 0.5);
    }
}

/* Flow Arrows */
.flow-arrows {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flow-arrow {
    position: absolute;
    font-size: 1.5rem;
    color: var(--success-color);
    font-weight: bold;
    animation: arrowPulse 2s ease-in-out infinite;
}

.arrow-3-to-4 {
    top: 35%;
    right: 45%;
    transform: rotate(-30deg);
}

.arrow-4-to-5 {
    top: 55%;
    right: 15%;
    transform: rotate(90deg);
}

.arrow-5-to-3 {
    bottom: 35%;
    left: 25%;
    transform: rotate(150deg);
}

@keyframes arrowPulse {
    0%, 100% { 
        opacity: 0.7;
        transform: scale(1) rotate(var(--arrow-rotation, 0deg));
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(var(--arrow-rotation, 0deg));
    }
}

.ongoing-label {
    font-size: 0.7rem;
    color: var(--success-color);
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

/* Individual step adjustments for alignment */
.journey-step[data-step="4"] {
    transform: translateY(-9px); /* 1/8 inch up */
}

.journey-step[data-step="6"] {
    transform: translateY(9px); /* 1/8 inch down */
}

/* Journey Summary */
.journey-summary {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.summary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    min-width: 200px;
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.summary-card h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.summary-card p {
    color: var(--text-light-grey);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.setup-summary {
    border-left: 4px solid var(--accent-color);
}

.ongoing-summary {
    border-left: 4px solid var(--success-color);
}

.setup-summary h6 i {
    color: var(--accent-color);
}

.ongoing-summary h6 i {
    color: var(--success-color);
    animation: spin 3s linear infinite;
}

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

/* Option 3: Circular Flow Cyclical */
.center-pulse {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7em;
    color: var(--success-color);
    font-weight: 600;
    animation: pulse 2s infinite;
}

.active-cycle .circle-icon {
    animation: pulse 2s infinite ease-in-out;
}

.rotation-indicator {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-light-grey);
    font-size: 0.9em;
}

/* Option 4: Card Journey Cyclical */
.cycling-card {
    position: relative;
    border: 2px solid rgba(120, 181, 126, 0.3);
    background: rgba(120, 181, 126, 0.05);
}

.pulsing-icon {
    animation: pulse 2s infinite ease-in-out;
}

.card-ongoing {
    color: var(--success-color);
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
}

.card-loop {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.loop-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 1rem;
    animation: rotate 4s linear infinite;
}

.loop-text {
    color: var(--text-light-grey);
    font-size: 0.9em;
}

/* Option 5: Dots Cyclical */
.pulsing-dot {
    animation: pulse 2s infinite ease-in-out;
    background: var(--success-color) !important;
}

.cycling-line {
    background: var(--success-color);
    animation: pulse 3s infinite ease-in-out;
}

.cycling-dot .dot-content span {
    color: var(--success-color);
}

.dots-cycle {
    text-align: center;
    margin-top: 3rem;
}

.sequence-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.dot-sequence {
    display: flex;
    gap: 0.5rem;
}

.seq-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-03);
    animation: sequential-light 5s infinite;
}

.seq-dot:nth-child(1) { animation-delay: 0s; }
.seq-dot:nth-child(2) { animation-delay: 1s; }
.seq-dot:nth-child(3) { animation-delay: 2s; }
.seq-dot:nth-child(4) { animation-delay: 3s; }
.seq-dot:nth-child(5) { animation-delay: 4s; }

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(188, 151, 110, 0.3);
    transition: all 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(188, 151, 110, 0.4);
}

.step-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.step-info p {
    font-size: 0.9rem;
    color: var(--text-light-grey);
    line-height: 1.4;
    margin: 0;
}

/* Products Section */
.products-section {
    background: linear-gradient(135deg, 
        var(--primary-03) 0%, 
        #1a1c33 50%, 
        var(--primary-03) 100%);
    padding: 3rem 0;
}

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

/* AI Workflow Design */
.ai-workflow {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.workflow-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.workflow-item:last-child {
    margin-bottom: 0;
}

.workflow-item:last-child .workflow-line {
    display: none;
}

.workflow-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2rem;
    position: relative;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    position: relative;
    z-index: 2;
    animation: workflowPulse 3s ease-in-out infinite;
}

.workflow-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, var(--accent-color), rgba(188, 151, 110, 0.3));
    margin-top: 1rem;
    border-radius: 2px;
    animation: lineGlow 2s ease-in-out infinite alternate;
}

.workflow-content {
    flex: 1;
    padding-top: 1rem;
}

.workflow-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.workflow-content p {
    color: var(--text-light-grey);
    line-height: 1.6;
    margin: 0;
}

@keyframes workflowPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(188, 151, 110, 0.7);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(188, 151, 110, 0);
    }
}

@keyframes lineGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(188, 151, 110, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-03), var(--primary-02));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    color: var(--primary-color);
    transform: rotate(5deg) scale(1.1);
}

.product-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-light-grey);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.modern-steps {
    margin-top: 2rem;
}

.modern-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.modern-step:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-right: 1.5rem;
    min-width: 60px;
}

.step-content h5 {
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-light-grey);
    margin: 0;
}

/* Process Visualization */
.process-visualization {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-process-flow {
    position: relative;
    width: 300px;
    height: 300px;
}

.process-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-03), var(--primary-02));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-grey);
    font-size: 2rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.process-node.active {
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    color: var(--primary-color);
    animation: processPulse 2s infinite;
}

@keyframes processPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(188, 151, 110, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(188, 151, 110, 0); }
}

.process-node[data-step="1"] { top: 0; left: 50%; transform: translateX(-50%); }
.process-node[data-step="2"] { top: 50%; right: 0; transform: translateY(-50%); }
.process-node[data-step="3"] { bottom: 0; left: 50%; transform: translateX(-50%); }

.process-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    animation: lineGlow 2s ease-in-out infinite;
}

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

.ai-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: aiCenterPulse 3s infinite;
}

@keyframes aiCenterPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(2); opacity: 0.3; }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(180deg, 
        var(--primary-03) 0%, 
        var(--primary-color) 100%);
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light-grey);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Free Badge */
.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(45deg, var(--success-color), #a8d4ad);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: pulse 3s infinite;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(120, 181, 126, 0.3);
}

/* Security Section */
.security-section {
    background: linear-gradient(135deg, 
        var(--primary-03) 0%, 
        var(--primary-02) 100%);
    padding: 5rem 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.security-feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.security-feature:hover {
    transform: translateY(-10px);
    border-color: var(--success-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--success-color), #a8d4ad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--primary-color);
    animation: iconFloat 3s ease-in-out infinite;
}

.security-feature h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.security-feature p {
    color: var(--text-light-grey);
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, 
        var(--primary-02) 0%, 
        #1a1c33 50%,
        var(--primary-02) 100%);
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(188, 151, 110, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light-grey);
}

.savings-badge {
    background: linear-gradient(45deg, var(--success-color), #a8d4ad);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--primary-02) 100%);
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(188, 151, 110, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.faq-question i {
    color: var(--accent-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: var(--text-light-grey);
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, 
        var(--primary-02) 0%, 
        var(--primary-color) 100%);
    padding: 3rem 0;
}

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

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

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    /* Using KO version - no filter needed */
}

.footer-brand p {
    color: var(--text-light-grey);
    font-size: 0.95rem;
}

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

.link-column h4 {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-column li {
    margin-bottom: 0.5rem;
}

.link-column a {
    color: var(--text-light-grey);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.legal-text {
    margin-bottom: 2rem;
}

.legal-text p {
    color: var(--text-light-grey);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.legal-text strong {
    color: var(--text-white);
}

.footer-copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright p {
    color: var(--text-light-grey);
    font-size: 0.8rem;
    margin: 0.25rem 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

.modern-cta-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.modern-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(188, 151, 110, 0.1), 
        transparent);
    animation: shine 3s infinite;
}

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

.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-light-grey);
    margin: 0 0 1rem 0;
}

.section-subtitle-large {
    font-size: 1.3rem;
    color: var(--text-light-grey);
    margin-bottom: 2rem;
    font-weight: 500;
}

.disclaimer-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light-grey);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .modern-hero .container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .orbit-elements {
        width: 300px;
        height: 300px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons-final {
        justify-content: center;
        margin-top: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .modern-hero .container {
        display: block;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 2rem;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .btn-modern {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .modern-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .ai-process-flow {
        width: 200px;
        height: 200px;
    }
    
    .process-node {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .orbit-elements {
        display: none;
    }
}

@media (max-width: 768px) {
    .customer-journey {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .journey-steps {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        height: auto;
        align-items: center;
    }
    
    .journey-step {
        position: static;
        transform: none;
        animation: none;
        max-width: 300px;
    }
    
    .journey-path {
        display: none;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .step-info h5 {
        font-size: 1.2rem;
    }
    
    .step-info p {
        font-size: 1rem;
    }
}

/* Simple Journey Responsive Design */
@media (max-width: 992px) {
    .two-row-journey {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }
    
    .journey-row {
        gap: 1.5rem;
    }
    
    .connector-badge {
        font-size: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
    
    .setup-flow {
        gap: 1.5rem;
    }
    
    .connecting-line {
        width: 60px;
    }
    
    .loop-container {
        width: 250px;
        height: 250px;
    }
    
    .journey-summary {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .two-row-journey {
        padding: 1.5rem 1rem;
    }
    
    .journey-row {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .connecting-line.horizontal {
        width: 3px;
        height: 30px;
        margin: 0.5rem 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(188, 151, 110, 0.4), rgba(255, 255, 255, 0.1));
    }
    
    .row-connector {
        margin: 2rem 0;
    }
    
    .setup-flow {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .connecting-line {
        width: 4px;
        height: 40px;
        background: linear-gradient(180deg, var(--accent-color), rgba(188, 151, 110, 0.6));
    }
    
    .connecting-line.to-loop {
        background: linear-gradient(180deg, var(--accent-color), var(--success-color));
    }
    
    .continuous-loop {
        margin-top: 1rem;
    }
    
    .loop-container {
        width: 220px;
        height: 220px;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-number {
        font-size: 1.5rem;
    }
    
    .step-content {
        max-width: 140px;
    }
    
    .step-content h5 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .loop-step.left-side {
        left: -20px;
    }
    
    .loop-step.top-right {
        top: 20px;
        right: 20px;
    }
    
    .loop-step.bottom-right {
        bottom: 20px;
        right: 20px;
    }
    
    .flow-arrow {
        font-size: 1.2rem;
    }
    
    .journey-summary {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        margin-top: 3rem;
    }
    
    .summary-card {
        max-width: 300px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ai-workflow {
        padding: 1rem 0;
    }
    
    .workflow-item {
        margin-bottom: 2rem;
    }
    
    .workflow-icon {
        margin-right: 1rem;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .workflow-line {
        height: 40px;
    }
    
    .two-row-journey {
        padding: 1rem 0.5rem;
    }
    
    .journey-row {
        gap: 1.5rem;
    }
    
    .step-circle {
        width: 65px;
        height: 65px;
    }
    
    .connector-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }
    
    .linear-steps {
        gap: 1.5rem;
    }
    
    .connecting-line {
        height: 30px;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
    }
    
    .step-number {
        font-size: 1.3rem;
    }
    
    .step-content h5 {
        font-size: 0.9rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .loop-container {
        width: 180px;
        height: 180px;
    }
    
    .ongoing-label {
        font-size: 0.6rem;
    }
    
    .summary-card {
        padding: 1rem;
    }
    
    .summary-card h6 {
        font-size: 1rem;
    }
    
    .summary-card p {
        font-size: 0.85rem;
    }
}

/* Getting Started Section - WBF App Inspired */
.getting-started-hero {
    text-align: left;
    margin-bottom: 2rem;
}

.wbf-logo-small {
    margin-bottom: 1.5rem;
}

.logo-small {
    width: 60px;
    height: auto;
}

.getting-started-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.getting-started-subtitle {
    font-size: clamp(1rem, 4vw, 1.1rem);
    color: var(--text-light-grey);
    margin-bottom: 2rem;
}

.benefits-showcase-card {
    background: #2B3A47;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-header {
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-white);
}

.benefit-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 24px;
    flex-shrink: 0;
}

.benefit-item.ai-highlight {
    font-weight: 700;
    background: rgba(188, 151, 110, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.benefit-item.ai-highlight i {
    color: #78B57E;
}

.assessment-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.assessment-preview-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.assessment-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.assessment-icon.mortgage {
    background: linear-gradient(45deg, #4F46E5, #6366F1);
    color: white;
}

.assessment-icon.personal-loan {
    background: linear-gradient(45deg, #059669, #10B981);
    color: white;
}

.assessment-icon.credit-card {
    background: linear-gradient(45deg, #DC2626, #EF4444);
    color: white;
}

.assessment-icon.equity {
    background: linear-gradient(45deg, var(--accent-color), #d4af85);
    color: var(--primary-color);
}

.assessment-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.assessment-info p {
    color: var(--text-light-grey);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.potential-savings {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--success-color);
}

.savings-indicator {
    color: var(--success-color);
    font-size: 0.6rem;
}

.cta-section {
    text-align: center;
    padding-top: 1rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 300px;
}

.btn-outline-modern {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline-modern:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(188, 151, 110, 0.4);
}

.login-link {
    color: var(--text-light-grey);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.login-link a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}

.login-link a:hover {
    color: #d4af85;
}

@media (min-width: 768px) {
    .assessment-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .getting-started-hero {
        text-align: center;
    }
    
    .cta-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-large,
    .btn-outline-modern {
        width: auto;
        min-width: 250px;
    }
}