/* ========================================
   Hyzap - Custom Styles
   Clean & Organized CSS
   ======================================== */

/* ----------------------------------------
   CSS Variables (Design Tokens)
   ---------------------------------------- */
:root {
    /* Hyzap Theme Colors */
    --brand-green: rgb(62, 95, 68);          /* #3E5F44 - Primary */
    --brand-green-dark: rgb(50, 76, 56);     /* #324C38 - Dark variant */
    --brand-green-secondary: rgb(94, 147, 108); /* #5E936C - Secondary */
    --brand-green-light: rgb(232, 255, 215); /* #E8FFD7 - Light bg */
    --brand-green-mid: rgb(147, 218, 151);   /* #93DA97 - Mid-light */
    --text-dark: rgb(7, 0, 25);
    --text-primary: rgb(12, 12, 12);
    --text-secondary: rgb(61, 61, 61);
    --text-muted: rgb(102, 102, 102);
    --text-light: rgb(76, 76, 76);
    --border-light: rgb(230, 233, 238);
    --bg-light: rgb(249, 250, 251);
    --bg-section: rgb(248, 249, 250);
    --star-filled: rgb(255, 190, 76);
    --star-empty: rgb(209, 213, 219);
}

/* ----------------------------------------
   Base & Utility Classes
   ---------------------------------------- */
.bg-grid-pattern {
    background-image: linear-gradient(to right, #f0f0f0 1px, transparent 1px),
                      linear-gradient(to bottom, #f0f0f0 1px, transparent 1px);
    background-size: 40px 40px;
}

.no-scrollbar::-webkit-scrollbar { 
    display: none; 
}

.no-scrollbar { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

/* ----------------------------------------
   Footer Animations
   ---------------------------------------- */
@keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(62, 95, 68, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(62, 95, 68, 0.3);
    }
    100% {
        box-shadow: 0 0 0 12px rgba(62, 95, 68, 0);
    }
}

.whatsapp-channel-btn {
    background: rgb(232, 255, 215);
    color: rgb(62, 95, 68);
    border: 4px solid rgb(50, 76, 56);
    animation: borderPulse 1.5s ease-out infinite;
}

.whatsapp-channel-btn:hover {
    box-shadow: 0 10px 25px rgba(62, 95, 68, 0.3);
}

.footer-logo-icon {
    background: rgb(62, 95, 68);
    box-shadow: 0 4px 12px rgba(62, 95, 68, 0.3);
}

.footer-brand-text {
    color: rgb(62, 95, 68);
}

/* ----------------------------------------
   Typography Utility Classes
   ---------------------------------------- */
.text-brand-green {
    color: var(--brand-green);
}

.text-dark {
    color: var(--text-dark);
}

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted);
}

/* Background Utility Classes */
.bg-brand-green {
    background-color: var(--brand-green);
}

.bg-brand-green-dark {
    background-color: var(--brand-green-dark);
}

/* Mobile Try Now Button */
.mobile-try-now-btn {
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
    transition: all 0.3s ease;
}

.mobile-try-now-btn:hover {
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
    transform: translateY(-2px);
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.hero-section {
    background-color: white;
}

.hero-blob {
    background-color: rgba(22, 163, 74, 0.3);
}

.hero-blob-1 {
    background-color: rgba(22, 163, 74, 0.3);
}

.hero-blob-2 {
    background-color: rgba(59, 130, 246, 0.3);
}

.hero-blob-3 {
    background-color: rgba(168, 85, 247, 0.3);
}

.hero-badge {
    background: white;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero-title {
    color: var(--text-dark);
}

.hero-description {
    color: var(--text-light);
}

/* Avatar Placeholder */
.avatar-placeholder {
    background: linear-gradient(135deg, var(--border-light) 0%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Placeholder */
.image-placeholder {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e5e7eb 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ----------------------------------------
   Buttons
   ---------------------------------------- */
.btn-primary {
    background-color: var(--brand-green);
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--brand-green-dark);
}

.btn-whatsapp {
    background-color: var(--brand-green);
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    min-width: 180px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    font-size: 15px;
}

.btn-whatsapp i {
    font-size: 18px;
}

.btn-whatsapp:hover {
    background-color: var(--brand-green-dark);
}

/* Toggle CTA Button (Chrome Extension) */
.toggle-cta-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-weight: bold;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.toggle-cta-btn .chrome-icon {
    position: absolute;
    left: 5px;
    z-index: 10;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-cta-btn .chrome-icon i {
    font-size: 16px;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-cta-btn:hover .chrome-icon {
    left: calc(100% - 40px);
    background-color: var(--brand-green) !important;
}

.toggle-cta-btn:hover .chrome-icon i {
    color: white !important;
}

.toggle-cta-btn span {
    position: relative;
    z-index: 5;
    margin-left: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(20px);
}

.toggle-cta-btn:hover span {
    transform: translateX(-20px);
}

/* Button Variants */
.toggle-cta-btn.btn-green {
    background-color: var(--brand-green);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    min-width: 180px;
}

.toggle-cta-btn.btn-green .chrome-icon {
    background-color: white;
}

.toggle-cta-btn.btn-green .chrome-icon i {
    color: var(--brand-green);
}

.toggle-cta-btn.btn-green:hover .chrome-icon {
    background-color: var(--brand-green-dark);
}

.toggle-cta-btn.btn-green:hover .chrome-icon i {
    color: white;
}

.toggle-cta-btn.btn-white {
    background-color: white;
    color: var(--brand-green);
    padding: 1rem 2rem;
    border-radius: 12px;
    min-width: 220px;
}

.toggle-cta-btn.btn-white .chrome-icon {
    background-color: var(--brand-green);
}

.toggle-cta-btn.btn-white .chrome-icon i {
    color: white;
}

/* ----------------------------------------
   CTA Chrome Button (Bottom CTA Section)
   ---------------------------------------- */
.btn-cta-chrome {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background-color: white;
    color: var(--brand-green);
    border-radius: 10px;
    min-width: 200px;
    padding: 0.75rem 2rem;
    font-weight: bold;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-chrome .chrome-icon {
    position: absolute;
    left: 5px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-chrome .chrome-icon i {
    font-size: 22px;
    color: white;
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-chrome:hover .chrome-icon {
    left: calc(100% - 50px);
}

.btn-cta-chrome span {
    position: relative;
    z-index: 5;
    margin-left: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(16px);
}

.btn-cta-chrome:hover span {
    transform: translateX(-16px);
}

/* ----------------------------------------
   Typing Animation
   ---------------------------------------- */
.typing-cursor::after {
    content: '|';
    animation: blink 1s step-start infinite;
}

@keyframes blink { 
    50% { opacity: 0; } 
}

/* ----------------------------------------
   Animation Classes
   ---------------------------------------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation delays */
.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-400 { animation-delay: 0.4s; }
.animation-delay-2000 { animation-delay: 2s; }
.animation-delay-4000 { animation-delay: 4s; }

/* ----------------------------------------
   Stats Section
   ---------------------------------------- */
.stats-container {
    background-color: var(--brand-green);
    border-radius: 20px;
    display: flex;
    flex-flow: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: min-content;
    padding: 25px 36px;
    position: relative;
    overflow: visible;
    box-shadow: 0 10px 30px -5px rgba(62, 95, 68, 0.2);
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 0;
}

.stat-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-direction: row;
    font-size: 40px;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 2px;
    line-height: 1;
}

.stat-number span {
    font-weight: 700;
    color: rgb(255, 255, 255);
}

.stat-label {
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

/* ----------------------------------------
   Features Marquee
   ---------------------------------------- */
.features-marquee-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
}

.features-marquee-track {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 1rem;
    animation: scroll-testimonials 40s linear infinite;
}

.feature-marquee-item {
    flex-shrink: 0;
    display: flex;
    flex-flow: row;
    place-content: center flex-start;
    align-items: center;
    gap: 6px;
    width: min-content;
    height: min-content;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 8px 12px;
    background-color: white;
    white-space: nowrap;
}

.feature-marquee-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brand-green);
}

/* ----------------------------------------
   Section Components
   ---------------------------------------- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2em;
    text-align: center;
    color: #000;
    margin-bottom: 40px;
}

.section-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-muted);
}

/* ----------------------------------------
   Features Section
   ---------------------------------------- */
.features-section {
    padding-bottom: 15vh;
}

.feature-card-wrapper {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 2.5rem;
    position: sticky;
}

.feature-card-wrapper:nth-child(1) { top: 20vh; z-index: 1; }
.feature-card-wrapper:nth-child(2) { top: 22vh; z-index: 2; }
.feature-card-wrapper:nth-child(3) { top: 24vh; z-index: 3; }
.feature-card-wrapper:nth-child(4) { top: 26vh; z-index: 4; }
.feature-card-wrapper:nth-child(5) { top: 28vh; z-index: 5; }
.feature-card-wrapper:nth-child(6) { top: 30vh; z-index: 6; }

.feature-card {
    position: relative;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15), 0 16px 32px rgba(0, 0, 0, 0.1);
}

.feature-image-container {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.feature-badge {
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.feature-title {
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-muted);
}

.feature-list {
    border-top: 1px solid var(--border-light);
}

.feature-list-item {
    border-bottom: 1px solid var(--border-light);
}

.icon-check {
    color: var(--brand-green);
}

/* ----------------------------------------
   Feature Pills
   ---------------------------------------- */
.feature-pill {
    background-color: white;
    border: 1px solid var(--border-light);
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    transition: all 0.15s ease;
}

.feature-pill:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-green);
}

.feature-pill-v2 {
    background-color: white;
    border: 1px solid #e2e8f0;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3E5F44;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.15s ease;
}

.feature-pill-v2:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-color: #93DA97;
    transform: translateY(-1px);
}

/* ----------------------------------------
   Testimonials Section
   ---------------------------------------- */
.testimonials-section {
    background-color: var(--bg-light);
    flex-flow: column;
    flex: none;
    place-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
    height: min-content;
    padding: 100px 20px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-testimonials 40s linear infinite;
    width: fit-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid rgb(221, 229, 237);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -3px rgba(0, 0, 0, 0.12), 0 6px 12px -2px rgba(0, 0, 0, 0.08);
    border-color: rgb(221, 229, 237);
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 300px;
        padding: 10px;
    }
    .testimonials-track {
        animation-duration: 30s;
    }
}

/* ----------------------------------------
   CTA Feature Pills Auto-Scroll
   ---------------------------------------- */
.cta-features-container {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%);
}

.cta-features-track {
    display: flex;
    gap: 1rem;
    animation: scroll-cta-features 30s linear infinite;
    width: fit-content;
}

.cta-features-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-cta-features {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.cta-feature-pill {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: none;
    transition: all 0.15s ease;
    font-family: 'Instrument Sans', 'Instrument Sans Placeholder', sans-serif;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-feature-pill:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.cta-feature-pill i {
    color: rgba(255, 255, 255, 0.95);
}

/* ----------------------------------------
   Feature Cards (Sticky Stack)
   ---------------------------------------- */
.feature-card-wrapper {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 2.5rem;
    position: sticky;
}

.feature-card-wrapper:nth-child(1) { 
    top: 20vh;
    z-index: 1;
}

.feature-card-wrapper:nth-child(2) { 
    top: 22vh;
    z-index: 2;
}

.feature-card-wrapper:nth-child(3) { 
    top: 24vh;
    z-index: 3;
}

.feature-card-wrapper:nth-child(4) { 
    top: 26vh;
    z-index: 4;
}

.feature-card-wrapper:nth-child(5) { 
    top: 28vh;
    z-index: 5;
}

.feature-card-wrapper:nth-child(6) { 
    top: 30vh;
    z-index: 6;
}

.feature-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15), 0 16px 32px rgba(0, 0, 0, 0.1);
}

.feature-card img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover img {
    transform: scale(1.08) rotate(1deg);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(62, 95, 68, 0.05) 0%, rgba(62, 95, 68, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .feature-card-wrapper {
        position: relative;
        top: auto !important;
        margin-bottom: 2rem;
    }
}

/* ----------------------------------------
   FAQ Section
   ---------------------------------------- */
.faq-icon {
    transition: transform 0.3s ease;
}

.faq-btn.active .faq-icon > div:last-child {
    transform: rotate(0deg);
}

/* ----------------------------------------
   Canvas Logo Wrapper
   ---------------------------------------- */
.canvas-logo-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}

.canvas-logo-wrapper canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ----------------------------------------
   Navbar Styles
   ---------------------------------------- */
#main-navbar {
    transition: background-color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}

#main-navbar.navbar-minimal {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#main-navbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(241, 245, 249, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar-minimal .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-scrolled .nav-logo {
    position: relative;
    left: 0;
    transform: translateX(0);
}

.nav-logo-img {
    height: 48px;
    width: auto;
    max-width: 238px;
    object-fit: contain;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.navbar-scrolled .nav-logo-img {
    height: 41px;
    max-width: 202px;
}

.nav-links, .nav-cta, .nav-mobile-btn {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, 
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.navbar-scrolled .nav-links,
.navbar-scrolled .nav-cta,
.navbar-scrolled .nav-mobile-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.navbar-scrolled .nav-links { 
    transition-delay: 0.4s; 
}

.navbar-scrolled .nav-cta { 
    transition-delay: 0.5s; 
}

.navbar-scrolled .nav-mobile-btn {
    transition-delay: 0.4s;
}

/* Navbar CTA Button */
.nav-cta a {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.nav-cta a .chrome-icon {
    position: absolute;
    left: 5px;
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta a:hover .chrome-icon {
    left: calc(100% - 44px);
    background-color: rgb(50, 76, 56);
}

.nav-cta a span {
    position: relative;
    z-index: 5;
    margin-left: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease;
    transform: translateX(20px);
}

.nav-cta a:hover span {
    transform: translateX(-20px);
}

.nav-cta a .chrome-icon i {
    transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta a:hover .chrome-icon i {
    color: white !important;
}

/* ----------------------------------------
   Section Components
   ---------------------------------------- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.section-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.section-title {
    font-family: 'Clash Grotesk', 'Clash Grotesk Placeholder', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2em;
    text-align: center;
    color: #000;
    margin-bottom: 40px;
}

/* ----------------------------------------
   Stats Section
   ---------------------------------------- */
.stats-container {
    background-color: var(--brand-green);
    border-radius: 17px;
    display: flex;
    flex-flow: row;
    place-content: center space-between;
    align-items: center;
    width: 100%;
    height: min-content;
    padding: 22px 75px;
    position: relative;
    overflow: visible;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 10;
}

.stat-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    flex-direction: row;
    font-size: 56px;
    font-family: 'Outfit', 'Outfit Placeholder', sans-serif;
    font-weight: 600;
    color: rgb(255, 255, 255);
    margin-bottom: 8px;
}

.stat-label {
    color: rgb(255, 255, 255);
    font-family: 'Outfit', 'Outfit Placeholder', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* ----------------------------------------
   Feature Marquee
   ---------------------------------------- */
.features-marquee-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 1rem 0;
    background-color: rgba(250, 251, 252);
    border-radius: 16px;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 12.5%, rgb(0, 0, 0) 87.5%, rgba(0, 0, 0, 0) 100%);
}

.features-marquee-track {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 1.25rem;
    animation: scroll-testimonials 40s linear infinite;
    width: fit-content;
}

.feature-marquee-item {
    flex-shrink: 0;
    display: flex;
    flex-flow: row;
    place-content: center flex-start;
    align-items: center;
    gap: 6px;
    width: min-content;
    height: min-content;
    border: 1px solid #edeff3;
    border-radius: 10px;
    padding: 8px 12px;
    background-color: #fff;
    white-space: nowrap;
    position: relative;
    overflow: visible;
}

/* ----------------------------------------
   CTA Section
   ---------------------------------------- */
.cta-section {
    background: var(--brand-green);
    border-radius: 2.5rem;
    padding: 2.5rem 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-section .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
}

.cta-section .blob {
    position: absolute;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    filter: blur(48px);
}

/* ----------------------------------------
   Responsive Adjustments
   ---------------------------------------- */

/* Large tablets and below (max-width: 1024px) */
@media (max-width: 1024px) {
    .nav-container {
        padding: 15px 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-section {
        padding: 2rem 2rem;
        border-radius: 1.5rem;
    }
}

/* Tablets and below (max-width: 768px) */
@media (max-width: 768px) {
    /* Navbar */
    .nav-container {
        padding: 12px 16px;
    }
    
    .nav-logo-img {
        height: 36px !important;
        max-width: 180px !important;
    }
    
    .navbar-scrolled .nav-logo-img {
        height: 32px !important;
        max-width: 160px !important;
    }
    
    /* Hero Buttons */
    .toggle-cta-btn,
    .btn-whatsapp {
        padding: 12px 20px;
        font-size: 15px;
        white-space: nowrap;
    }
    
    /* Stats Section */
    .stats-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 20px 16px;
        gap: 16px;
        border-radius: 16px;
    }
    
    .stat-item {
        width: 100%;
        padding: 12px 8px;
        border: none;
    }
    
    .stat-number {
        font-size: 32px !important;
    }
    
    .stat-label {
        font-size: 13px !important;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    /* Feature Cards */
    .feature-card-wrapper {
        position: relative !important;
        top: auto !important;
        margin-bottom: 1.5rem;
    }
    
    .feature-card {
        border-radius: 16px;
    }
    
    /* Testimonials */
    .testimonial-card {
        flex: 0 0 300px;
        padding: 10px;
    }
    
    .testimonials-track {
        gap: 1rem;
        animation-duration: 30s;
    }
    
    .testimonial-name {
        font-size: 16px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 2rem 1.5rem;
        border-radius: 1.25rem;
    }
    
    .cta-feature-pill {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    /* Toggle CTA Button */
    .toggle-cta-btn {
        min-width: 160px;
        padding: 10px 14px;
    }
    
    .toggle-cta-btn .chrome-icon {
        width: 28px;
        height: 28px;
        left: 10px;
    }
    
    .toggle-cta-btn:hover .chrome-icon {
        left: calc(100% - 38px);
    }
    
    .toggle-cta-btn span {
        font-size: 14px;
        transform: translateX(16px);
    }
    
    .toggle-cta-btn:hover span {
        transform: translateX(-16px);
    }
    
    /* FAQ Section */
    .faq-btn {
        padding: 16px 20px !important;
    }
    
    .faq-content {
        padding: 16px 20px !important;
    }
    
    /* Canvas Logo */
    .canvas-logo-wrapper {
        width: 56px;
        height: 56px;
    }
}

/* Mobile phones (max-width: 640px) */
@media (max-width: 640px) {
    /* Navbar */
    .nav-container {
        padding: 10px 12px;
    }
    
    .nav-logo-img {
        height: 30px !important;
        max-width: 150px !important;
    }
    
    .navbar-scrolled .nav-logo-img {
        height: 28px !important;
        max-width: 140px !important;
    }
    
    /* Hero Section */
    .hero-badge {
        padding: 8px 12px;
    }
    
    /* Hero Buttons - Make them fit in single row on mobile */
    .toggle-cta-btn,
    .btn-whatsapp {
        padding: 12px 16px !important;
        font-size: 14px !important;
        min-width: auto !important;
        white-space: nowrap !important;
        gap: 8px !important;
    }
    
    .toggle-cta-btn span,
    .btn-whatsapp span {
        font-size: 13px !important;
    }
    
    /* Disable toggle animation on mobile - make icon static */
    .toggle-cta-btn .chrome-icon {
        position: static !important;
        width: auto !important;
        height: auto !important;
        left: auto !important;
        background-color: transparent !important;
    }
    
    .toggle-cta-btn .chrome-icon i {
        font-size: 14px !important;
        color: white !important;
    }
    
    .toggle-cta-btn span {
        transform: none !important;
        margin-left: 0 !important;
    }
    
    /* Disable hover effects on mobile */
    .toggle-cta-btn:hover .chrome-icon {
        left: auto !important;
        background-color: transparent !important;
    }
    
    .toggle-cta-btn:hover .chrome-icon i {
        color: white !important;
    }
    
    .toggle-cta-btn:hover span {
        transform: none !important;
    }
    
    .btn-whatsapp i {
        font-size: 16px !important;
    }
    
    /* Stats */
    .stats-container {
        padding: 16px 12px;
        gap: 12px;
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 28px !important;
    }
    
    .stat-label {
        font-size: 12px !important;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    /* Feature Pills */
    .feature-pill,
    .feature-pill-v2 {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        flex: 0 0 280px;
        padding: 8px;
    }
    
    .testimonial-name {
        font-size: 14px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 1.5rem 1rem;
        border-radius: 1rem;
    }
    
    .toggle-cta-btn {
        min-width: 140px;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .toggle-cta-btn .chrome-icon {
        width: 24px;
        height: 24px;
        left: 8px;
    }
    
    .toggle-cta-btn:hover .chrome-icon {
        left: calc(100% - 32px);
    }
    
    .toggle-cta-btn span {
        font-size: 13px;
        transform: translateX(14px);
    }
    
    .toggle-cta-btn:hover span {
        transform: translateX(-14px);
    }
    
    /* CTA Feature Pills */
    .cta-features-container {
        margin-top: 2rem;
    }
    
    .cta-feature-pill {
        padding: 6px 8px;
        font-size: 0.65rem;
        border-radius: 8px;
    }
    
    /* FAQ */
    .faq-btn {
        padding: 14px 16px !important;
    }
    
    .faq-btn h4 {
        font-size: 15px !important;
    }
    
    .faq-content {
        padding: 14px 16px !important;
        font-size: 14px !important;
    }
    
    /* Canvas Logo */
    .canvas-logo-wrapper {
        width: 48px;
        height: 48px;
    }
}

/* Small mobile phones (max-width: 480px) */
@media (max-width: 480px) {
    .nav-logo-img {
        height: 26px !important;
        max-width: 130px !important;
    }
    
    .navbar-scrolled .nav-logo-img {
        height: 24px !important;
        max-width: 120px !important;
    }
    
    .stats-container {
        padding: 12px 12px;
        gap: 12px;
    }
    
    .stat-number {
        font-size: 24px !important;
    }
    
    .stat-label {
        font-size: 11px !important;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .testimonial-card {
        flex: 0 0 260px;
    }
    
    .cta-section {
        padding: 1.25rem 0.75rem;
    }
    
    .toggle-cta-btn {
        min-width: 120px;
        padding: 8px 10px;
    }
}

/* ----------------------------------------
   Additional Utility Classes
   ---------------------------------------- */
.nav-container {
    padding: 5px 60px;
}

.btn-nav-cta {
    background-color: var(--brand-green);
    color: white;
    height: 100%;
    min-width: 180px;
}

.border-subtle {
    border: 1px solid var(--border-light);
}

.shadow-subtle {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.shadow-card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.bg-feature {
    background: var(--bg-light);
}

.hero-badge {
    background: white;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.feature-badge {
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.feature-list-item {
    border-bottom: 1px solid var(--border-light);
}

.feature-list {
    border-top: 1px solid var(--border-light);
}

.icon-check {
    color: var(--brand-green);
}

/* Animation delays for staggered animations */
.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-400 { animation-delay: 0.4s; }
.animation-delay-2000 { animation-delay: 2s; }
.animation-delay-4000 { animation-delay: 4s; }

/* Star colors for testimonials */
.star-filled { color: rgb(255, 190, 76); }
.star-empty { color: rgb(209, 213, 219); }

/* Testimonial text styles */
.testimonial-name {
    color: rgb(28, 28, 28);
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
}

.testimonial-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    color: rgb(51, 51, 51);
}

.testimonial-inner {
    background-color: var(--bg-light);
    border-radius: 20px;
    box-shadow: rgba(83, 109, 128, 0.1) 0px 2px 2px 0px;
}

/* ----------------------------------------
   Placeholder Styles (for external images removed)
   ---------------------------------------- */
.avatar-placeholder {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 50%, #a5b4fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 50%, #d1d5db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

.image-placeholder span {
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 500;
}

.logo-placeholder {
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.logo-placeholder span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
}

/* ----------------------------------------
   FAQ Section Styles
   ---------------------------------------- */
.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-btn {
    padding: 20px 24px;
    cursor: pointer;
}

.faq-btn:hover {
    background: rgba(22, 163, 74, 0.02);
}

.faq-question {
    color: #1c1c1c;
    font-size: 17px;
}

.faq-content {
    padding: 0 24px 20px 24px;
    color: #4b5563;
    line-height: 1.7;
}

.faq-icon-bar {
    background-color: var(--text-primary);
    transition: transform 0.3s ease;
}
