/* --- GLOBAL RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-blue: #0a1118;
    --hero-green-tint: rgba(13, 43, 45, 0.85);
    --accent-orange: #f5a623;
    --text-white: #ffffff;
    --nav-bg: #ffffff;
    --os-bg: #010409;
    --ui-green: #52b69a;
    --deep-navy: #1a2b3c;
    --soft-red: #b33939;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-white);
    line-height: 1.6;
    background-color: var(--os-bg);
    overflow-x: hidden;
}

/* Headings use Josefin Sans */
h1, h2, h3, h4, h5, .logo-text, .main-headline, .feature-content h2, 
.os-text h2, .growth-header h3, .cta-card h1, .industry-header h2,
.integration-header h2, .f-title, .btn-sign-in, .btn-demo, .nav-links a {
    font-family: 'Josefin Sans', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- NAVIGATION --- */
.navbar {
    background: var(--nav-bg);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
}

.logo-icon .sq {
    width: 12px;
    height: 12px;
    background: #000;
    margin-bottom: 3px;
}

.logo-text {
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #1e2a36;
    margin: 0 12px;
    font-size: 13px;
    font-weight: 700;
    transition: opacity 0.2s;
}

.nav-contact a {
    color: black;        /* keeps same color as surrounding text */
    text-decoration: none; /* removes underline */
}
.nav-links a:hover {
    opacity: 0.7;
}

.cart-icon {
    font-size: 18px;
}

.nav-btns {
    display: flex;
    gap: 12px;
}

.btn-sign-in {
    background: #1e2d3d;
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-sign-in:hover {
    background: #0f1e2c;
}

.btn-demo {
    background: #000;
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-demo:hover {
    background: #2c2c2c;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: #020a0c url('images/bg.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 10, 12, 0.7);
    z-index: 1;
}

.hero-flex {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    align-items: center;
    padding: 0 0;
    gap: 0; /* Tight gap to fit inside the frame graphics */
}

.hero-banner {
    background: transparent;
    padding: 40px 0 40px 60px; /* Aligns text inside the left frame */
    width: 50%;
    border-left: 2px solid #00e6ff; /* The glowing cyan divider */
    box-shadow: -10px 0 20px -10px rgba(0, 230, 255, 0.4);
}

.hero-banner h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 0.95;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.accent-text {
    color: #00e6ff;
    font-size: 34px;
    margin-bottom: 35px;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(0, 230, 255, 0.8);
    line-height: 1.1;
}

.feature-list {
    list-style: none;
    margin-bottom: 10px;
}

.feature-list li {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    opacity: 0.9;
}

.feature-list li::before {
    content: '—';
    font-size: 10px;
    color: #00e6ff;
    margin-right: 15px;
    font-weight: bold;
}

.hero-content {
    width: 50%;
    padding-left: 80px;
    display: flex;
    flex-direction: column;
}

.top-tagline {
    color: #00e6ff;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.main-headline {
    font-size: 68px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
    color: #fff;
    max-width: 600px;
}

.description {
    font-size: 16px;
    max-width: 500px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

/* --- BUSINESS OS SECTION --- */
.business-os {
    background: var(--os-bg);
    padding: 120px 0;
}

.os-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.os-text { flex: 1; }

.os-text h2 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
}

.os-description p {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.85;
}

.os-media { flex: 1; }

.media-frame {
    background: #000;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0,0,0,0.5);
}

.media-header {
    padding: 14px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: #0a0f14;
    font-family: 'Roboto', sans-serif;
}

.media-content {
    position: relative;
}

.media-content img {
    width: 100%;
    display: block;
    filter: brightness(0.75);
}

.enable-sound {
    position: absolute;
    top: 18px; left: 18px;
    background: rgba(0,0,0,0.7);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    font-family: 'Roboto', sans-serif;
}

.stat-circle {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    font-family: 'Roboto', sans-serif;
}

.stat-circle.left {
    bottom: 30%; left: 8%;
    width: 48px; height: 48px;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    font-size: 13px; font-weight: 800;
}

.stat-circle.center-ui {
    top: 25%; right: 12%;
    width: 74px; height: 74px;
    border: 2px solid var(--ui-green);
    color: var(--ui-green);
    font-size: 26px; font-weight: 800;
}

.media-footer {
    padding: 20px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    background: #03070c;
    font-family: 'Roboto', sans-serif;
}

/* --- SECTION STYLES --- */
.lead-gen,
.appointment-booking,
.boost-sales {
    background-color: #ffffff;
    padding: 100px 0;
    color: #000000;
}

.convert-leads,
.membership-section,
.expand-confidence {
    background-color: var(--deep-navy);
    padding: 100px 0;
    color: #ffffff;
}

.text-center { text-align: center; }

.red-tag {
    color: var(--soft-red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
}

.growth-header h3 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #111;
}

.growth-subtitle {
    max-width: 850px;
    margin: 0 auto 80px auto;
    font-size: 16px;
    line-height: 1.5;
    color: #444;
}

.feature-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-content { flex: 1.2; }
.feature-image { flex: 1; position: relative; }

.feature-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.feature-list-item {
    margin-bottom: 28px;
}

.feature-list-item h4 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
    font-family: 'Josefin Sans', sans-serif;
}

/* White background sections text colors */
.lead-gen .main-desc,
.appointment-booking .main-desc,
.boost-sales .main-desc {
    color: #000000;
}

.lead-gen .feature-list-item p,
.appointment-booking .feature-list-item p,
.boost-sales .feature-list-item p {
    color: #000000;
}

/* Navy background sections text colors */
.convert-leads .main-desc,
.membership-section .main-desc,
.expand-confidence .main-desc {
    color: #ffffff;
}

.convert-leads .feature-list-item p,
.membership-section .feature-list-item p,
.expand-confidence .feature-list-item p {
    color: #ffffff;
}

.convert-leads .feature-content h2,
.convert-leads .bullet,
.membership-section .bullet,
.membership-section .feature-content h2,
.expand-confidence .bullet,
.expand-confidence .feature-content h2 {
    color: #ffffff;
}

/* Browser Mockup */
.browser-mockup {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 30px 40px rgba(0,0,0,0.1);
    border: 1px solid #eaeef2;
    overflow: hidden;
    position: relative;
}

.browser-dots {
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    background: #f8fafc;
    border-bottom: 1px solid #edf2f7;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.browser-mockup img {
    width: 100%;
    display: block;
}

.floating-tooltip {
    position: absolute;
    top: 20%;
    left: -30px;
    background: #0070e0;
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    width: 240px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 12px 20px rgba(0,112,224,0.3);
    font-family: 'Roboto', sans-serif;
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 12px solid #0070e0;
}

/* Convert Leads Chat Mockup */
.chat-ui-mockup {
    background: #0e1622;
    border: 1px solid #2a3748;
}

.mockup-placeholder {
    position: relative;
}

.mini-bubble {
    position: absolute;
    padding: 10px 16px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    font-family: 'Roboto', sans-serif;
}

.blue-msg {
    background: #0084ff;
    top: 18%;
    left: 8%;
    border-bottom-left-radius: 4px;
}

.green-msg {
    background: #2ecc71;
    bottom: 22%;
    right: 8%;
    border-bottom-right-radius: 4px;
}

/* Appointment Mobile Mockup */
.mobile-mockup {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 24px 48px rgba(0,0,0,0.08);
    overflow: hidden;
    margin: 0 auto;
}

.mobile-header {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f2f5;
    font-weight: 700;
    font-family: 'Josefin Sans', sans-serif;
}

.mobile-chat-area {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #f7fafc;
    height: 460px;
    overflow-y: auto;
}

.msg {
    max-width: 84%;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
}

.msg.received {
    align-self: flex-start;
    background: #e5e9f0;
    color: #1a2b3c;
    border-radius: 18px 18px 18px 4px;
}

.msg.sent {
    align-self: flex-end;
    background: #007aff;
    color: #fff;
    border-radius: 18px 18px 4px 18px;
}

/* Membership Stacked Mockup */
.stacked-mockup-container {
    position: relative;
    width: 100%;
    height: 420px;
}

.back-card {
    width: 88%;
    height: 320px;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    border-radius: 20px;
    opacity: 0.9;
}

.ui-interface-card {
    width: 88%;
    height: 320px;
    background: #ffffff;
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    box-shadow: 0 20px 35px rgba(0,0,0,0.25);
    overflow: hidden;
}

.ui-sidebar {
    width: 70px;
    background: #f1f5f9;
    border-right: 1px solid #e2e8f0;
}

.ui-main {
    flex: 1;
    padding: 24px;
    background: #fff;
}

.ui-nav-dummy {
    height: 12px;
    width: 100%;
    background: #eef2f6;
    margin-bottom: 32px;
    border-radius: 6px;
}

.community-icon-set {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.user-bubble, .chat-bubble-ui {
    font-size: 28px;
    opacity: 0.7;
}

.ui-label {
    color: #1f2a3e;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.stats-grid-dummy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 40px;
}

.stat-box {
    height: 40px;
    background: #eef2fa;
    border-radius: 8px;
}

/* Boost Sales Pipeline Mockup */
.pipeline-mockup-container {
    position: relative;
    width: 100%;
    height: 440px;
}

.layer-1 {
    width: 90%;
    height: 320px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fdfdfd;
    z-index: 1;
    opacity: 0.6;
    border-radius: 20px;
    border: 1px solid #eef2f8;
}

.layer-2 {
    width: 90%;
    height: 340px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    background: #ffffff;
    box-shadow: 0 20px 35px rgba(0,0,0,0.08);
    border-radius: 20px;
    border: 1px solid #edf2f7;
}

.mockup-header-grey {
    height: 42px;
    background: #f8fafc;
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid #edf2f7;
}

.dashboard-content {
    padding: 20px;
}

.calendar-header {
    height: 28px;
    background: #f1f5f9;
    border-radius: 12px;
    margin-bottom: 20px;
}

.notif-bubble {
    position: absolute;
    background: #007aff;
    color: #fff;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    z-index: 15;
    box-shadow: 0 10px 18px rgba(0,122,255,0.3);
    font-family: 'Roboto', sans-serif;
}

.notif-top {
    top: 20px;
    right: 15%;
}

.notif-left {
    top: 45%;
    left: -18px;
}

/* Expand Confidence Analytics Mockup */
.analytics-stack-container {
    position: relative;
    width: 100%;
    height: 380px;
}

.main-card {
    width: 88%;
    height: 280px;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    border-radius: 20px;
}

.chart-area {
    padding: 40px;
}

.svg-graph {
    width: 100%;
    height: auto;
}

.stat-overlay {
    width: 82%;
    background: #ffffff;
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    padding: 20px 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-mini-grid {
    display: flex;
    gap: 24px;
}

.s-box strong {
    display: block;
    color: #1e2a36;
    font-size: 18px;
    font-family: 'Josefin Sans', sans-serif;
}

.s-box p {
    color: #5b6e8c;
    font-size: 11px;
    margin-top: 4px;
    font-family: 'Roboto', sans-serif;
}

.funnel-graphic {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 60px;
}

.f-bar { height: 8px; border-radius: 4px; }
.f-bar.green { background: #52b69a; width: 100%; }
.f-bar.orange { background: #f5a623; width: 70%; }
.f-bar.red { background: #e74c3c; width: 40%; }

/* Industry section */
.industry-section {
    background-color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.industry-header h2 {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 12px;
}

.industry-header p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 56px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.industry-card {
    background: #f8fafd;
    border: 1px solid #e2edf2;
    border-radius: 18px;
    padding: 32px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s ease;
}

.industry-card:hover {
    background: #ffffff;
    border-color: #cbdde6;
    transform: translateY(-4px);
}

.card-icon {
    width: 52px;
    height: auto;
    margin-bottom: 18px;
    filter: brightness(0) saturate(100%) invert(13%) sepia(16%) saturate(1617%) hue-rotate(171deg) brightness(95%) contrast(97%);
}

.industry-card p {
    font-size: 16px;
    font-weight: 700;
    color: var(--soft-red);
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
}

/* Final CTA + marquee */
.final-cta-section {
    background: linear-gradient(135deg, #fef9f0 0%, #e6e9f0 100%);
    padding: 100px 0 140px 0;
    overflow: hidden;
}

.integration-header h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #111;
}

.integration-header p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 60px;
}

.logo-marquee {
    width: 100%;
    margin-bottom: 80px;
    white-space: nowrap;
    overflow: hidden;
}

.marquee-content {
    display: inline-block;
    animation: marquee 28s linear infinite;
}

.marquee-content img {
    height: 38px;
    margin: 0 36px;
    opacity: 0.7;
    vertical-align: middle;
    filter: grayscale(0.2);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.cta-card {
    background-color: var(--deep-navy);
    border-radius: 28px;
    padding: 64px 48px;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    color: #ffffff;
    box-shadow: 0 32px 64px rgba(0,0,0,0.2);
}

.cta-card .pre-title {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 18px;
    opacity: 0.8;
    font-family: 'Roboto', sans-serif;
}

.cta-card h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 28px;
}

.cta-card .cta-desc {
    font-size: 16px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.btn-primary-black {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 16px 48px;
    border-radius: 60px;
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    font-family: 'Josefin Sans', sans-serif;
}

.btn-primary-black:hover {
    background: #ffffff;
    color: #000;
    border: 1px solid #000;
}

/* Footer */
.site-footer {
    background-color: var(--deep-navy);
    color: #ffffff;
    padding: 80px 0 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
    gap: 32px;
    margin-bottom: 70px;
}

.f-logo {
    height: 44px;
    margin-bottom: 20px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #ffffff;
}

.f-tagline {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #ffffff;
}

.f-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.f-socials a {
    color: #ffffff;
    font-size: 20px;
    transition: opacity 0.2s;
    text-decoration: none;
}

.f-socials a:hover {
    opacity: 0.8;
}

.f-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.second-title {
    margin-top: 42px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.2s;
    font-family: 'Roboto', sans-serif;
}

.footer-column ul li a:hover {
    opacity: 0.8;
}

.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 32px;
    text-align: center;
}

.footer-copyright p {
    font-size: 12px;
    color: #ffffff;
}

/* Base styles */
.feature-list-item p {
    font-size: 14px;
    line-height: 1.6;
}

.main-desc {
    font-size: 16px;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-flex, .os-flex, .feature-split { flex-direction: column; }
    .hero-banner, .hero-content { width: 100%; }
    .hero-banner { clip-path: none; margin-bottom: 20px; }
    .industry-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .main-headline { font-size: 40px; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-card h1 { font-size: 36px; }
}
html {
    scroll-behavior: smooth;
}



/* Animation Keyframes - Faster animations */
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Base styles for animated elements */
.feature-image, .feature-content {
    opacity: 0;
}

.feature-image.animated, .feature-content.animated {
    animation-duration: 0.4s; /* Changed from 0.6s to 0.4s for faster animation */
    animation-fill-mode: forwards;
    animation-timing-function: ease-out; /* Smoother easing */
}

/* Specific animations based on section layout */
/* Sections with image on left (convert-leads, membership-section, expand-confidence) */
.convert-leads .feature-image.animated {
    animation: fadeLeft 0.4s ease-out forwards;
}

.convert-leads .feature-content.animated {
    animation: fadeRight 0.4s ease-out forwards;
}

.membership-section .feature-image.animated {
    animation: fadeLeft 0.4s ease-out forwards;
}

.membership-section .feature-content.animated {
    animation: fadeRight 0.4s ease-out forwards;
}

.expand-confidence .feature-image.animated {
    animation: fadeLeft 0.4s ease-out forwards;
}

.expand-confidence .feature-content.animated {
    animation: fadeRight 0.4s ease-out forwards;
}

/* Sections with image on right (lead-gen, appointment-booking, boost-sales) */
.lead-gen .feature-image.animated {
    animation: fadeRight 0.4s ease-out forwards;
}

.lead-gen .feature-content.animated {
    animation: fadeLeft 0.4s ease-out forwards;
}

.appointment-booking .feature-image.animated {
    animation: fadeRight 0.4s ease-out forwards;
}

.appointment-booking .feature-content.animated {
    animation: fadeLeft 0.4s ease-out forwards;
}

.boost-sales .feature-image.animated {
    animation: fadeRight 0.4s ease-out forwards;
}

.boost-sales .feature-content.animated {
    animation: fadeLeft 0.4s ease-out forwards;
}

/* Remove delays for instant animation */
.feature-image.animated, 
.feature-content.animated {
    animation-delay: 0s;
}