/* landing.css - Complete landing page styles with animations */


/* ============================================
   LANDING PAGE SPECIFIC STYLES
   ============================================ */

/* Main Container */
body{
    background: var(--surface-color) !important;
}
.landing-main-container {
    width: 100%;
    max-width: min(1400px, 100%);
    margin: 0 auto;
    padding: 0 20px;
    min-width: 0;
    box-sizing: border-box;
    overflow-x: clip;
    transition: visibility 0.1s ease;
    background: transparent !important;
}

.landing-main-container.visible {
    visibility: visible !important;
}

/* ============================================
   HERO SECTION - FIXED LAYOUT WITH REDUCED TOP SPACING
   ============================================ */

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: auto;
    padding: 15px 40px 15px 40px;
    position: relative;
    overflow: hidden;
    margin-top: 60px ;
}

.hero-content {
    max-width: 600px;
}

.hero-pre-title {
    font-size: 1.2rem;
    color: var(--navbar-icon-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0;
    transform: scale(0.8) translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    animation: popIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary-text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.hero-image-wrapper {
    position: relative;
    height: auto;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    max-height: 450px;
    width: auto;
    height: auto;
    border-radius: 20px;
   /** box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);  **/
    position: relative;
    z-index: 2;
     transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02) translateY(-10px);
}

.hero-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--electric-lime) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(60px);
    z-index: 1;
    animation: glowPulse 3s infinite;
}

/* ============================================
   HERO CAROUSEL STYLES
   ============================================ */

.hero-carousel {
    position: relative;
    min-height: 200px;
}

.carousel-text-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.carousel-text-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--electric-lime);
    transform: scale(1.3);
}

/* ============================================
   CTA BUTTONS - THEME AWARE
   ============================================ */

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    border: none;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--sapphire-blue), var(--electric-lime));
    color: white;
    box-shadow: 0 10px 20px rgba(6, 197, 6, 0.2);
}

.cta-btn.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 30px rgba(6, 197, 6, 0.3);
}

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

.cta-btn.primary:hover i {
    transform: translateX(8px);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.cta-btn.secondary:hover {
    border-color: var(--electric-lime);
    color: var(--electric-lime);
    transform: translateY(-3px);
    background: rgba(6, 197, 6, 0.05);
}

/* ============================================
   STATS SECTION - THEME AWARE
   ============================================ */

.stats-section {
  /**  padding: 60px 0;
    background: linear-gradient(135deg, rgba(var(--sapphire-blue-rgb), 0.02), rgba(var(--electric-lime-rgb), 0.02));
   **/
    border-radius: 40px;
    margin: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: var(--surface-color);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sapphire-blue), var(--electric-lime));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.stat-card:hover {
    animation: stat-glow 2s infinite;
    transform: translateY(-5px);
}

@keyframes stat-glow {
    0% { box-shadow: 0 4px 12px rgba(var(--electric-lime-rgb), 0.1); }
    50% { box-shadow: 0 8px 25px rgba(var(--electric-lime-rgb), 0.3); }
    100% { box-shadow: 0 4px 12px rgba(var(--electric-lime-rgb), 0.1); }
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(var(--sapphire-blue-rgb), 0.1), rgba(var(--electric-lime-rgb), 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--electric-lime);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--secondary-text-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-trend.positive {
    background: rgba(var(--electric-lime-rgb), 0.1);
    color: var(--electric-lime);
}

.stat-trend i {
    font-size: 0.8rem;
}

/* ============================================
   BENEFITS SECTION - THEME AWARE
   ============================================ */

.benefits-section {
   padding: 10px 0; 
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--surface-color);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 40px rgba(var(--sapphire-blue-rgb), 0.15);
    border-color: var(--electric-lime);
}

.benefit-icon-wrapper {
    margin-bottom: 25px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sapphire-blue), var(--electric-lime));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.benefit-description {
    font-size: 1rem;
    color: var(--secondary-text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.benefit-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.benefit-stat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(var(--navbar-icon-color-rgb), 0.05);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
}

.benefit-stat i {
    color: var(--electric-lime);
}

/* ============================================
   HOW IT WORKS SECTION - THEME AWARE
   ============================================ */

.how-it-works-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(var(--sapphire-blue-rgb), 0.02), rgba(var(--electric-lime-rgb), 0.02));
    border-radius: 40px;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    background: var(--surface-color);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sapphire-blue), var(--electric-lime));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(var(--electric-lime-rgb), 0.3);
}

.step-icon {
    font-size: 3rem;
    color: var(--electric-lime);
    margin: 20px 0;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.step-description {
    font-size: 0.95rem;
    color: var(--secondary-text-color);
    line-height: 1.6;
}

.step-connector {
    font-size: 2rem;
    color: var(--electric-lime);
    animation: pulse 2s infinite;
}

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

/* ============================================
   TESTIMONIALS SECTION - THEME AWARE
   ============================================ */

.testimonials-section {
    padding: 15px 0;
}

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

.testimonial-card {
    background: var(--surface-color);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--electric-lime);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sapphire-blue), var(--electric-lime));
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-color);
}

.author-title {
    font-size: 0.85rem;
    color: var(--secondary-text-color);
}

/* ============================================
   GROW WITH US SECTION - WITH BACKGROUND IMAGE AND OVERLAY
   ============================================ */

.landing-onboarding-section {
    padding: 120px 20px;
    text-align: center;
    border-radius: 40px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    /* Background image with gradient overlay */
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85), rgba(6, 197, 6, 0.85)), 
                url('/images/growth-banner.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.landing-onboarding-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
    pointer-events: none;
}

.landing-onboarding-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.grow-animate-item {
    opacity: 0;
    transform: scale(0.8) translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.grow-animate-item.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.grow-animate-item:nth-child(1) {
    transition-delay: 0.1s;
}

.grow-animate-item:nth-child(2) {
    transition-delay: 0.3s;
}

.grow-animate-item:nth-child(3) {
    transition-delay: 0.5s;
}

.landing-onboarding-heading {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0;
    color: white;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.landing-onboarding-subheading {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.landing-onboarding-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    border: none;
    background: white;
    color: var(--sapphire-blue);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}

.landing-onboarding-btn span {
    color: var(--sapphire-blue);
}

.landing-onboarding-btn i {
    transition: transform 0.3s ease;
    color: var(--sapphire-blue);
    font-size: 1.1rem;
}

.landing-onboarding-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4);
    background: white;
}

.landing-onboarding-btn:hover i {
    transform: translateX(10px);
}

/* ============================================
   ABOUT SECTION - THEME AWARE
   ============================================ */

.landing-about-section {
    padding: 28px 16px 22px;
    margin: 28px 0;
    background: var(--surface-color);
    border-radius: 40px;
    border: 1px solid var(--border-color);
    overflow-x: clip;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.landing-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 40px);
    max-width: 1200px;
    margin: 0 auto;
}

.landing-about-left,
.landing-about-right {
    text-align: left;
}

.landing-about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 10px;
}

.landing-about-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--sapphire-blue), var(--electric-lime));
    border-radius: 3px;
}

.landing-about-text {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--secondary-text-color);
    margin-bottom: 16px;
}

.landing-about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.landing-about-feature:hover {
    background: rgba(var(--navbar-icon-color-rgb), 0.05);
    transform: translateX(10px);
}

.landing-about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sapphire-blue), var(--electric-lime));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.landing-about-feature-text {
    flex: 1;
}

.landing-about-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text-color);
}

.landing-about-feature:last-child {
    margin-bottom: 0;
}

.landing-about-feature-desc {
    font-size: 0.95rem;
    color: var(--secondary-text-color);
}

.landing-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    padding: 10px 12px;
    background: rgba(var(--navbar-icon-color-rgb), 0.03);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.landing-contact-item:hover {
    transform: translateY(-5px);
    background: rgba(var(--navbar-icon-color-rgb), 0.08);
}

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

.landing-contact-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--sapphire-blue), var(--electric-lime));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.landing-contact-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text-color);
}

.landing-contact-info p {
    font-size: 1rem;
    color: var(--secondary-text-color);
}

.landing-social-links-large {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.landing-social-link-large {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: rgba(var(--navbar-icon-color-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.5rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.landing-social-link-large:hover,
.landing-social-link-large:focus-visible {
    background: linear-gradient(135deg, var(--sapphire-blue), var(--electric-lime));
    color: white;
    transform: translateY(-8px) scale(1.1);
    text-decoration: none !important;
}

/* X (Twitter) — bundled FA has bird only; render typographic X */
.cx-pub-biz-social-icon-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 1.05rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.cx-pub-biz-social-icon-x::before {
    content: "X";
}

.landing-social-link-large .cx-pub-biz-social-icon-x {
    font-size: 1.25rem;
}

.landing-social-link-large[aria-label="X"] {
    background: #0f1419;
    color: #fff;
}

.landing-social-link-large[aria-label="X"]:hover,
.landing-social-link-large[aria-label="X"]:focus-visible {
    background: #0f1419;
    color: #fff;
    box-shadow: 0 10px 22px rgba(15, 20, 25, 0.35);
}

html[data-theme="dark"] .landing-social-link-large[aria-label="X"] {
    background: #f5f5f5;
    color: #0f1419;
}

html[data-theme="dark"] .landing-social-link-large[aria-label="X"]:hover,
html[data-theme="dark"] .landing-social-link-large[aria-label="X"]:focus-visible {
    background: #f5f5f5;
    color: #0f1419;
}

/* ============================================
   POWERED BY KALVERSE SECTION - THEME AWARE
   ============================================ */

.landing-powered-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(var(--sapphire-blue-rgb), 0.02), rgba(var(--electric-lime-rgb), 0.02));
    border-radius: 40px;
    margin: 40px 0;
}

.landing-powered-content {
    max-width: 600px;
    margin: 0 auto;
}

.landing-powered-text {
    font-size: 1.2rem;
    color: var(--secondary-text-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.landing-powered-logo {
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
   
}

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

.landing-powered-logo img {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(var(--sapphire-blue-rgb), 0.3);
    transition: all 0.3s ease;
     background:  #020202 !important;
}

.landing-powered-logo:hover img {
    box-shadow: 0 15px 35px rgba(var(--electric-lime-rgb), 0.4);
}

/* ============================================
   FOOTER STYLES - THEME AWARE
   ============================================ */

.landing-footer {
    background-color: var(--surface-color);
    color: var(--text-color);
    padding: 20px 0 20px;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
}

.landing-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.landing-footer-left,
.landing-footer-right {
    text-align: left;
}

.landing-footer-heading {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 15px;
}

.landing-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--sapphire-blue), var(--electric-lime));
    border-radius: 3px;
}

.landing-footer-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary-text-color);
    margin-bottom: 25px;
}

.landing-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.landing-footer-contact-item:hover {
    transform: translateX(10px);
}

.landing-footer-contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(var(--navbar-icon-color-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-lime);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.landing-footer-contact-item:hover .landing-footer-contact-icon {
    background: linear-gradient(135deg, var(--sapphire-blue), var(--electric-lime));
    color: white;
}

.landing-footer-contact-info {
    flex: 1;
}

.landing-footer-contact-label {
    font-size: 0.9rem;
    color: var(--secondary-text-color);
    margin-bottom: 3px;
}

.landing-footer-contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.landing-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.landing-footer-social-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(var(--navbar-icon-color-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.3rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.landing-footer-social-link:hover,
.landing-footer-social-link:focus-visible {
    background: linear-gradient(135deg, var(--sapphire-blue), var(--electric-lime));
    color: white;
    transform: translateY(-5px) scale(1.1);
    text-decoration: none !important;
}

.landing-footer-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-footer-quick-links li {
    margin-bottom: 15px;
}

.landing-footer-quick-links a {
    color: var(--secondary-text-color);
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.landing-footer-quick-links a i {
    font-size: 0.9rem;
    color: var(--electric-lime);
    opacity: 0;
    transition: all 0.3s ease;
}

.landing-footer-quick-links a:hover {
    color: var(--electric-lime);
    transform: translateX(10px);
}

.landing-footer-quick-links a:hover i {
    opacity: 1;
}

/* Footer Bottom */
.landing-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
   /** border-top: 1px solid var(--border-color);  **/
}

.landing-copyright {
    font-size: 0.95rem;
    color: var(--secondary-text-color);
}

.landing-legal-links {
    display: flex;
    gap: 30px;
}

.landing-legal-links a {
    color: var(--secondary-text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.landing-legal-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sapphire-blue), var(--electric-lime));
    transition: width 0.3s ease;
}

.landing-legal-links a:hover {
    color: var(--electric-lime);
}

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

/* ============================================
   ANIMATIONS
   ============================================ */

.animate-pop {
    opacity: 0;
    transform: scale(0.8) translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-pop.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.float-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.float-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.float-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.float-in-down {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.float-in-visible {
    opacity: 1;
    transform: translate(0, 0);
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(40px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .landing-onboarding-heading {
        font-size: 4rem;
    }
    
    .landing-about-heading,
    .landing-footer-heading {
        font-size: 2.8rem;
    }
}

/* Desktop */
@media (max-width: 1199px) {
    .hero-section {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 15px 0 40px 0;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
        min-height: 350px;
    }
    
    .hero-image {
        max-height: 350px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-connector {
        transform: rotate(90deg);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-about-grid,
    .landing-footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .landing-about-left,
    .landing-about-right,
    .landing-footer-left,
    .landing-footer-right {
        text-align: center;
    }
    
    .landing-about-heading::after,
    .landing-footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .landing-about-feature {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 12px;
        max-width: min(100%, 520px);
    }

    .landing-about-feature:hover {
        transform: none;
    }

    .landing-about-feature-text {
        text-align: center;
        width: 100%;
    }

    .landing-about-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 14px;
        max-width: min(100%, 42rem);
        padding-left: 8px;
        padding-right: 8px;
        box-sizing: border-box;
    }

    .landing-about-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .landing-contact-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 12px;
        max-width: min(100%, 400px);
        width: 100%;
    }

    .landing-contact-info {
        text-align: center;
        width: 100%;
    }

    .landing-contact-info h4,
    .landing-contact-info p {
        text-align: center;
    }

    .landing-social-links-large {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .benefits-section {
        padding: 24px 0 32px;
    }

    .benefits-section .section-header {
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 40px;
    }

    .benefits-grid {
        justify-items: center;
        width: 100%;
        max-width: 100%;
        gap: 20px;
        padding-left: 0;
        padding-right: 0;
    }

    .benefit-card {
        width: 100%;
        max-width: min(100%, 520px);
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }
    
    .landing-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .landing-legal-links {
        justify-content: center;
    }
}

/* Mobile — smaller horizontal animation offsets to prevent overflow */
@media (max-width: 768px) {
    .float-in-left {
        transform: translateX(-24px);
    }

    .float-in-right {
        transform: translateX(24px);
    }

    .landing-main-container {
        padding: 0 15px;
    }

    body.cx-pub-page-body > .landing-about-section,
    body.cx-pub-page-body > .landing-about-section.cx-pub-biz-marketing-about {
        margin: 20px auto;
        padding: 24px 14px 18px;
        width: calc(100% - 30px);
        max-width: min(1400px, calc(100% - 30px));
        box-sizing: border-box;
    }

    .landing-about-grid {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .landing-about-left,
    .landing-about-right {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .landing-about-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .landing-about-feature {
        justify-content: center;
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .landing-about-feature:hover {
        transform: none;
    }

    .landing-about-feature-text {
        text-align: center;
        flex: 1 1 auto;
        min-width: 0;
    }

    .landing-about-feature {
        margin-bottom: 12px;
        padding: 8px 10px;
    }

    .landing-contact-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: min(100%, 400px);
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 12px;
        padding: 10px 12px;
        gap: 10px;
    }

    .landing-contact-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .landing-contact-info {
        text-align: center;
        width: 100%;
    }

    .landing-contact-info h4,
    .landing-contact-info p {
        text-align: center;
    }

    .landing-about-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 14px;
        max-width: min(100%, 42rem);
        padding-left: clamp(4px, 2vw, 12px);
        padding-right: clamp(4px, 2vw, 12px);
        box-sizing: border-box;
    }

    .landing-about-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .landing-social-links-large {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        margin-top: 16px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 8px;
        padding-right: 8px;
        gap: 12px;
    }

    .benefits-section {
        padding: 20px 0 28px;
    }

    .benefits-section .section-header {
        margin-bottom: 32px;
        padding-left: 4px;
        padding-right: 4px;
    }

    .section-subtitle {
        padding-left: 8px;
        padding-right: 8px;
    }

    .benefits-grid {
        justify-items: center;
        gap: 18px;
    }

    .benefit-card {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 32px 24px;
        text-align: center;
    }

    .benefit-icon-wrapper {
        display: flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-stats {
        justify-content: center;
    }

    /* Reduce horizontal slide-in offset inside home sections */
    body.cx-pub-page-body .landing-main-container .float-in-left,
    body.cx-pub-page-body .landing-about-section .float-in-left {
        transform: translateY(24px);
    }

    body.cx-pub-page-body .landing-main-container .float-in-right,
    body.cx-pub-page-body .landing-about-section .float-in-right {
        transform: translateY(24px);
    }

    body.cx-pub-page-body .landing-main-container .float-in-left.float-in-visible,
    body.cx-pub-page-body .landing-main-container .float-in-right.float-in-visible,
    body.cx-pub-page-body .landing-about-section .float-in-left.float-in-visible,
    body.cx-pub-page-body .landing-about-section .float-in-right.float-in-visible {
        transform: translate(0, 0);
    }
    
    .hero-section {
        padding: 10px 0 30px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        font-size: 1.05rem;
        padding: 14px 28px;
    }
    
    .hero-image-wrapper {
        min-height: 300px;
    }
    
    .hero-image {
        max-height: 300px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }

    .benefit-title {
        font-size: 1.4rem;
    }

    .landing-social-link-large {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }
    
    .landing-onboarding-section {
        padding: 80px 15px;
        background-attachment: scroll;
    }
    
    .landing-onboarding-heading {
        font-size: 2.5rem;
    }
    
    .landing-onboarding-subheading {
        font-size: 1.2rem;
    }
    
    .landing-about-heading,
    .landing-footer-heading {
        font-size: 2rem;
    }
    
    .landing-about-text,
    .landing-footer-text {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-section {
        padding: 5px 0 20px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }

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

    .cta-btn {
        font-size: 1rem;
        min-height: 44px;
        padding: 14px 24px;
    }
    
    .hero-image-wrapper {
        min-height: 260px;
    }
    
    .hero-image {
        max-height: 260px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .landing-onboarding-section {
        padding: 60px 15px;
    }
    
    .landing-onboarding-heading {
        font-size: 2rem;
    }
    
    .landing-onboarding-subheading {
        font-size: 1rem;
    }
    
    .landing-onboarding-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1.05rem;
        min-height: 48px;
    }

    .landing-social-link-large {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }

    .landing-footer-social-link {
        width: 44px;
        height: 44px;
    }
    
    .landing-about-heading,
    .landing-footer-heading {
        font-size: 1.8rem;
    }

    .landing-about-text,
    .landing-footer-text {
        font-size: 1.05rem;
    }
    
    body.cx-pub-page-body > .landing-about-section,
    body.cx-pub-page-body > .landing-about-section.cx-pub-biz-marketing-about {
        padding: 20px 14px 16px;
        border-radius: 24px;
        margin: 16px auto;
        width: calc(100% - 28px);
        max-width: min(1400px, calc(100% - 28px));
        box-sizing: border-box;
    }

    .landing-about-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
        padding: 8px 10px;
    }

    .landing-about-feature-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .landing-about-text {
        margin-bottom: 12px;
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .landing-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin-bottom: 10px;
        padding: 8px 10px;
        gap: 8px;
    }
    
    .landing-social-links-large,
    .landing-footer-social {
        justify-content: center;
        margin-top: 14px;
        gap: 10px;
        width: 100%;
    }

    .benefit-card {
        padding: 28px 20px;
    }

    .benefits-section .section-header {
        margin-bottom: 28px;
    }
    
    .landing-legal-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .landing-main-container {
        padding: 0 12px;
    }

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

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

    .cta-btn {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .benefit-stats {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

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

/* ============================================
   DARK THEME ADAPTATIONS - COMPREHENSIVE
   ============================================ */

[data-theme="dark"] {
    --bg-color: var(--dark-background);
    --text-color: var(--primary-text-dark);
    --secondary-text-color: var(--secondary-text);
    --surface-color: var(--surface-dark);
    --border-color: var(--border-dark);
    --accent-color: var(--accent-dark);
    --navbar-icon-color: var(--electric-lime);
    --card-bg: var(--dark-surface);
    --placeholder-text-color: var(--secondary-text-light);
    --stat-label-color: var(--secondary-text);
}

[data-theme="dark"] .hero-title {
    color: var(--primary-text-dark);
}

[data-theme="dark"] .hero-subtitle {
    color: var(--secondary-text);
}

[data-theme="dark"] .cta-btn.secondary {
    color: var(--primary-text-dark);
    border-color: var(--border-dark);
}

[data-theme="dark"] .cta-btn.secondary:hover {
    border-color: var(--electric-lime);
    color: var(--electric-lime);
}

[data-theme="dark"] .stat-card,
[data-theme="dark"] .benefit-card,
[data-theme="dark"] .step-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .landing-about-section,
[data-theme="dark"] .landing-footer {
    background: var(--dark-surface);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .stat-icon {
    background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .stat-number,
[data-theme="dark"] .stat-label,
[data-theme="dark"] .section-title,
[data-theme="dark"] .benefit-title,
[data-theme="dark"] .step-title,
[data-theme="dark"] .testimonial-text,
[data-theme="dark"] .author-name,
[data-theme="dark"] .landing-about-heading,
[data-theme="dark"] .landing-about-feature-title,
[data-theme="dark"] .landing-contact-info h4,
[data-theme="dark"] .landing-footer-heading,
[data-theme="dark"] .landing-footer-contact-value {
    color: var(--primary-text-dark);
}

[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .benefit-description,
[data-theme="dark"] .step-description,
[data-theme="dark"] .author-title,
[data-theme="dark"] .landing-about-text,
[data-theme="dark"] .landing-about-feature-desc,
[data-theme="dark"] .landing-contact-info p,
[data-theme="dark"] .landing-footer-text,
[data-theme="dark"] .landing-footer-contact-label,
[data-theme="dark"] .landing-copyright,
[data-theme="dark"] .landing-legal-links a {
    color: var(--secondary-text);
}
[data-theme="dark"] .hero-image {
    filter: invert(1) hue-rotate(180deg);
}
[data-theme="dark"] .hero-image-glow {
    opacity: 0.1;
}

[data-theme="dark"] .benefit-stat {
    background: rgba(255, 255, 255, 0.05);
    color: var(--secondary-text);
}

[data-theme="dark"] .benefit-stat i {
    color: var(--electric-lime);
}

[data-theme="dark"] .landing-social-link-large,
[data-theme="dark"] .landing-footer-social-link,
[data-theme="dark"] .landing-footer-contact-icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-text);
}

[data-theme="dark"] .landing-about-feature:hover {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .landing-contact-item {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .landing-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .landing-footer-quick-links a {
    color: var(--secondary-text);
}

[data-theme="dark"] .landing-footer-quick-links a:hover {
    color: var(--electric-lime);
}

[data-theme="dark"] .landing-legal-links a:hover {
    color: var(--electric-lime);
}

/* Dark theme - Grow With Us section override */
[data-theme="dark"] .landing-onboarding-section {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85), rgba(6, 197, 6, 0.85)), 
                url('/images/growth-banner.webp');
    background-size: cover;
    background-position: center;
}

[data-theme="dark"] .landing-onboarding-heading,
[data-theme="dark"] .landing-onboarding-subheading {
    color: white;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .landing-onboarding-btn {
    background: white;
    color: var(--sapphire-blue);
}

[data-theme="dark"] .landing-onboarding-btn span,
[data-theme="dark"] .landing-onboarding-btn i {
    color: var(--sapphire-blue);
}

/* Dark theme - Powered section */
[data-theme="dark"] .landing-powered-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02));
}

[data-theme="dark"] .landing-powered-text {
    color: var(--secondary-text);
}

/* CSS Variables RGB values for opacity usage */
:root {
    --sapphire-blue-rgb: 0, 102, 204;
    --electric-lime-rgb: 6, 197, 6;
    --navbar-icon-color-rgb: 0, 102, 204;
}

[data-theme="dark"] {
    --sapphire-blue-rgb: 51, 153, 255;
    --electric-lime-rgb: 102, 255, 102;
    --navbar-icon-color-rgb: 102, 255, 102;
}