/* Modern Global Styles */
:root {
    --primary-color: #00A651;
    --primary-dark: #008040;
    --primary-light: #E8F5E9;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --white: #ffffff;
    --off-white: #ffffff;
    --gray-light: #ffffff;
    --gray-border: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.37);
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --gradient-1: linear-gradient(135deg, rgba(0, 166, 81, 0.1) 0%, rgba(0, 150, 255, 0.05) 100%);
    --gradient-2: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}

/* Three.js Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
}

/* Glassmorphism */
.glass-morphism {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    position: relative;
    overflow: hidden;
}

/* Glow Effects */
.glow-text {
    background: linear-gradient(45deg, var(--primary-color), #00d4aa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 166, 81, 0.3));
}

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

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #ffffff;
    font-size: 0.8rem;
}

/* Prevent page jump on reload */
html, body {
    scroll-behavior: smooth;
    overflow-anchor: none;
}

body {
    position: relative;
}

body.cursor-disabled {
    cursor: auto;
}

body.cursor-disabled .custom-cursor {
    display: none;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 800px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        padding: 0 10px;
        max-width: 90vw;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
        max-width: 90vw;
    }
    
    .feature-benefits {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        gap: 2.5rem;
    }
    
    .feature-item {
        grid-template-columns: 70px 1fr;
        grid-gap: 10px;
        width: 100%;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon img {
        width: 30px;
        height: 30px;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.25;
}

p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #00d966;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 166, 81, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--gray-border);
}

.navbar .container {
    max-width: 100%;
    padding: 0 2rem;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-img {
    height: 126px;
    width: auto;
    background: transparent;
    mix-blend-mode: multiply;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    position: relative;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 50%, #f5f5f5 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    pointer-events: none;
}

.ocean-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse at 20% 70%, rgba(0, 150, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(0, 166, 81, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 90%, rgba(100, 200, 255, 0.06) 0%, transparent 50%);
    animation: oceanFloat 25s ease-in-out infinite;
}

@keyframes oceanFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

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

.hero-title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 3.6rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding-top: 40px;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    left: -5px;
    bottom: -8px;
    width: calc(100% + 10px);
    height: 6px;
    background: url("data:image/svg+xml,%3csvg width='200' height='6' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M2,3 C20,1.5 40,4.5 60,2.5 C80,1 100,4 120,2 C140,0.5 160,3.5 180,2.5 C190,2 195,3 198,3' stroke='%2300A651' stroke-width='2' fill='none' opacity='0.8' stroke-linecap='round'/%3e%3c/svg%3e");
    background-size: 200px 6px;
    background-repeat: repeat-x;
    transform: rotate(-1deg);
    opacity: 0.9;
}

.no-break {
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}

.dashboard-mockup {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: var(--white);
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.dashboard-mockup:hover .dashboard-img {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.chat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: modernBubbleFloat 4s ease-in-out infinite;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.chat-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.chat-bubble-1 {
    top: 15%;
    right: -25%;
    animation-delay: 0s;
}

.chat-bubble-2 {
    top: 65%;
    left: -30%;
    animation-delay: 1.5s;
}

@keyframes modernBubbleFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.9;
    }
    25% { 
        transform: translateY(-8px) rotate(1deg); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-12px) rotate(0deg); 
        opacity: 0.95;
    }
    75% { 
        transform: translateY(-6px) rotate(-1deg); 
        opacity: 1;
    }
}

.chat-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    flex-shrink: 0;
}

.chat-text {
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
}

.stats-card {
    position: absolute;
    bottom: 10%;
    right: -20%;
    background: linear-gradient(135deg, var(--primary-color), #00d4aa);
    color: var(--white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 12px 32px rgba(0, 166, 81, 0.4);
    animation: modernBubbleFloat 5s ease-in-out infinite;
    animation-delay: 3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.stats-card:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 48px rgba(0, 166, 81, 0.5);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

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

/* Inline Metrics */
.metrics-inline {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 1.25rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    flex-wrap: nowrap;
    overflow-x: auto;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
}

.metric-divider {
    color: var(--gray-border);
    font-size: 1.2rem;
    font-weight: 400;
    flex-shrink: 0;
}

/* Legacy metrics for other sections */
.metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.metric {
    text-align: center;
}

.metric .metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric .metric-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}


.trust-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.trust-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    margin: 3rem auto;
    text-align: left;
    max-width: 480px;
    width: 100%;
}

.feature-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-gap: 10px;
    align-items: center;
}

.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.feature-icon img {
    width: 36px;
    height: 36px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.1;
    display: block;
    width: 100%;
    letter-spacing: -0.01em;
}

.feature-content p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
    width: 100%;
    word-wrap: break-word;
    font-weight: 400;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-color);
    margin: 3.5rem 0;
    max-width: 700px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    position: relative;
    padding: 0 20px;
}

.testimonial-quote p {
    color: var(--primary-color);
    font-size: inherit;
    font-weight: inherit;
    font-style: inherit;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.badge-text {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
}

/* Modern Bento Grid */
.bento-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 50%, #f8f9fa 100%);
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.8), 0 1px 0 rgba(0, 0, 0, 0.04);
    position: relative;
}

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

.bento-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    min-height: 280px;
    height: 100%;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 166, 81, 0.4);
}

.large-card {
    grid-column: span 1;
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
}

.medium-card {
    grid-column: span 1;
}

.medium-card.purple-accent {
    background: linear-gradient(135deg, #f3e5f5 0%, #ffffff 100%);
}

.medium-card.blue-accent {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}

.wide-card {
    grid-column: span 1;
}

.wide-card.gradient-bg {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bento-card:hover .card-glow {
    opacity: 1;
}

/* Floating Icons */
.floating-icon {
    position: relative;
    width: fit-content;
    margin-bottom: 1rem;
}

.icon-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: var(--gradient-1);
    border-radius: 50%;
    animation: iconFloat 3s ease-in-out infinite;
    z-index: -1;
}

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

/* Card Badge */
.card-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
}

.card-badge.success {
    background: #e8f5e9;
    color: var(--primary-color);
}

.badge-icon {
    line-height: 1;
}

/* Bento Typography */
.bento-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bento-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Metric Highlights */
.metric-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--gradient-2);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    white-space: nowrap;
    display: block;
}

.metric-text {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    display: block;
    margin-top: 0.25rem;
}

/* Stats Mini */
.stats-mini {
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Progress Bar */
.progress-bar {
    position: relative;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-top: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #00d4aa);
    border-radius: 4px;
    width: 0%;
    transition: width 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.progress-text {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* New Metric Showcase */
.metric-showcase {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.metric-box {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.metric-details {
    flex: 1;
}

.metric-details ul {
    list-style: none;
    padding: 0;
}

.metric-details li {
    padding: 0.5rem 0;
    color: #64748b;
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.metric-details li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Stats Display */
.stats-display {
    margin-top: 1.5rem;
}

.main-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stat-progress {
    height: 6px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.progress-visual {
    height: 100%;
    background: linear-gradient(90deg, #9c27b0, #ba68c8);
    border-radius: 3px;
    transition: width 2s ease;
}

/* Feature Tags */
.feature-list-mini {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.feature-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(156, 39, 176, 0.1);
    color: #7b1fa2;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Efficiency Metrics */
.efficiency-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.time-saved {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.time-icon {
    font-size: 2rem;
}

.time-info {
    display: flex;
    flex-direction: column;
}

.time-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.time-label {
    font-size: 0.85rem;
    color: #64748b;
}

.task-automation {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: rgba(0, 166, 81, 0.05);
    border-radius: 12px;
}

.automated-count {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.automated-label {
    font-size: 0.85rem;
    color: #64748b;
}

/* Platform Features Grid */
.platform-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 166, 81, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.feature-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}

.feature-desc {
    font-size: 0.85rem;
    color: #64748b;
}

/* Value Props */
.value-props {
    padding: 80px 0;
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-description {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Features */
/* Challenges Section */
.challenges-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.challenge-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-border);
    transition: all 0.3s ease;
    position: relative;
}

.challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 166, 81, 0.2);
}

.challenge-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.challenge-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    line-height: 1.3;
}

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

.challenge-highlight {
    font-weight: 600;
    color: var(--primary-color);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gray-border);
}

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

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    width: calc(50% - 50px);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.timeline-cta {
    text-align: center;
    margin-top: 3rem;
}

.timeline-text {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

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

.cta-title {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

/* Lead Form */
.lead-form-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.lead-form h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid var(--gray-border);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-success p {
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 5rem 0 1rem;
}

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


.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

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

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-button {
    min-width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    padding: 0 20px;
    gap: 10px;
}

.whatsapp-button-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-right: 6px;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    background: var(--text-dark);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 10px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
}

/* Responsive Design */
/* === Fix for hamburger/close ✕ clipping on mobile === */
/* === Mobile navbar hard-fix (overrides) === */
@media (max-width: 768px) {
  /* shrink logo so the row breathes */
  .logo-img { height: 56px; }

  /* hide desktop CTA reliably */
  .nav-cta { display: none !important; } /* desktop CTA shows by default in your CSS  */

  /* hamburger: bigger hitbox + pull off the edge + on top */
  .hamburger {
    display: flex !important;           /* ensure it shows on mobile */
    padding: 10px;
    margin-right: 10px;
    box-sizing: content-box;
    position: relative;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
  }
  .hamburger span { width: 28px; transform-origin: 50% 50%; }

  /* navbar container/safe area so the ✕ isn't clipped */
  .navbar { overflow: visible; }        /* base navbar is fixed with rounded bottom  */
  .navbar .container { padding: 0 12px; } /* you zero it on mobile; re-add a bit to avoid clipping  */
  .nav-wrapper { padding: 8px 12px; }

  /* turn the menu into a hidden, fixed dropdown (not inline!) */
  .nav-menu {
    position: fixed !important;         /* was absolute in your mobile rules  */
    top: 0; left: 0; right: 0; width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1001;                      /* under the ✕ */
    padding: 0;                         /* no stray padding when closed */
    transition:
      max-height 0.45s cubic-bezier(0.23,1,0.32,1),
      opacity 0.25s ease,
      visibility 0.25s ease,
      padding 0.3s ease;
  }

  .nav-menu.active {
    padding-top: 72px;                  /* push content below navbar */
    padding-bottom: 16px;
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
  }

  /* vertical list inside the dropdown */
  .nav-list {
    flex-direction: column !important;
    align-items: center;
    gap: 24px;
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
    .container {
        padding: 0 5px;
    }
    
    .hero-title {
        font-size: 1.3rem;
        line-height: 1.4;
        padding: 0 5px;
        word-break: break-word;
        white-space: normal;
        max-width: 98vw;
        margin: 0 auto 1.5rem auto;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        padding: 0 5px;
        line-height: 1.5;
        max-width: 98vw;
        margin: 0 auto 3rem auto;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .features-grid,
    .bento-grid,
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .challenge-card {
        padding: 1.25rem;
    }
    
    .challenge-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .challenge-title {
        font-size: 1.1rem;
    }

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

/* ===== Mobile X clipping fix (append to end of styles.css) ===== */
:root{
  --safe-r: max(12px, env(safe-area-inset-right, 0px));
  --safe-t: max(8px, env(safe-area-inset-top, 0px));
}

/* keep the navbar from cropping rotated lines */
.navbar{ overflow: visible; }  /* navbar exists already in your CSS :contentReference[oaicite:0]{index=0} */

@media (max-width:1024px){
  /* give breathing room near the notch/edge */
  .navbar .container{ padding-right: calc(2rem + var(--safe-r)); } /* container is defined in your nav already :contentReference[oaicite:1]{index=1} */
  .nav-wrapper{ position: relative; padding-top: var(--safe-t); }   /* nav-wrapper exists already :contentReference[oaicite:2]{index=2} */

  /* make the button a bigger, inset tap target and ensure it’s on top */
  .hamburger{
    display:flex;               /* already set for mobile in your CSS, kept here to win specificity :contentReference[oaicite:3]{index=3} */
    padding: 10px;
    margin-right: var(--safe-r);
    box-sizing: content-box;
    position: relative;
    z-index: 1002;              /* higher than the dropdown */
    -webkit-tap-highlight-color: transparent;
  }
  .hamburger span{
    width: 28px;                /* slightly longer strokes for the ✕ */
    transform-origin: 50% 50%;
    will-change: transform;
  }

  /* put the slide-down panel under the button, and pin to the viewport so it can’t overlap the ✕ edge */
  .nav-menu{
    position: fixed;            /* was absolute in your CSS :contentReference[oaicite:4]{index=4} */
    top: 0; left: 0; right: 0;
    width: 100%;
    z-index: 1001;              /* below the hamburger */
    border-radius: 0 0 16px 16px;
  }
  .nav-menu.active{
    padding-top: calc(72px + var(--safe-t)); /* push content below the nav height */
    max-height: 80vh;                         /* keep it scrollable if long */
    overflow-y: auto;
  }

  /* a hair more side padding so letters & the ✕ never feel cropped */
  .nav-list{ padding: 0 16px; }
}

/* === Mobile: stack the metrics as a card === */
@media (max-width: 768px) {
  .metrics-inline {
    display: block !important;            /* override desktop flex */
    margin: 1.5rem 0;
    padding: 1.25rem 1rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: visible;                    /* undo horizontal scroll */
  }

  .metrics-inline .metric-divider { 
    display: none !important;             /* remove the • separators */
  }

  .metrics-inline .metric-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .metrics-inline .metric-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .metrics-inline .metric-value { 
    font-size: 1.6rem;                    /* make the numbers pop */
    line-height: 1;
  }
  .metrics-inline .metric-label { 
    font-size: 1rem;
  }
}
