/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    font-smooth: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Sticky Navigation Bar */
.sticky-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 85%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sticky-nav:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 24px;
    gap: 16px;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo {
    height: 24px;
    width: auto;
    transition: transform 0.3s ease;
    display: block;
    margin: 0;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #10b981;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #10b981;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.demo-btn {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    text-decoration: none;
    display: inline-block;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

/* Main Header Section */
.main-header {
    padding: 100px 80px 60px;
    text-align: center;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #FAFEF9 39%, #83E56D 85%, #FFFFFF 85%);
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.demo-capsule {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.9);
    color: #10b981;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(16, 185, 129, 0.2);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s ease-in-out infinite;
}

.demo-capsule::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.demo-capsule:hover::before {
    left: 100%;
}

.demo-capsule:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(16, 185, 129, 0.4);
    animation: none;
}

.capsule-text {
    letter-spacing: 0.5px;
}

.main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.sub-title {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: #64748b;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
}

.hero-image {
    max-width: 66%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

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

/* About Section */
.about-section {
    padding: 60px 40px 80px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(146, 232, 127, 0.3) 50%, transparent 100%);
}

.about-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-text {
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
    font-size: 26px;
    line-height: 1.6;
    color: #1f2937;
    font-weight: 300;
    margin: 0 auto;
    letter-spacing: -0.02em;
    max-width: 1000px;
}

/* How it Works Section */
.how-it-works-section {
    padding: 80px 40px 100px;
    background: #ffffff;
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(146, 232, 127, 0.2) 50%, transparent 100%);
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(146, 232, 127, 0.3);
}

.how-it-works-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.how-it-works-image-left,
.how-it-works-image-right {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.how-it-works-image {
    max-width: 85%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Capabilities Section */
.capabilities-section {
    padding: 60px 40px 80px;
    background: linear-gradient(to bottom, white 80%, rgba(255,232,110,0.05) 100%);
    overflow: hidden;
}

/* Navi Section */
.navi-section {
    padding: 80px 40px 100px;
    background-image: radial-gradient(circle at 70% 71%, rgba(255,232,110,0.46) 0%, rgba(88,255,120,0.25) 73%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.navi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(146, 232, 127, 0.4) 50%, transparent 100%);
}

.navi-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.navi-headline {
    font-size: 44px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.navi-content {
    font-size: 19px;
    line-height: 1.6;
    color: #374151;
    max-width: 800px;
    margin: 0 auto 40px;
}

.navi-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navi-image {
    max-width: 70%;
    height: auto;
    border-radius: 20px;
}

.capabilities-container {
    max-width: 1400px;
    margin: 0 auto;
}

.capabilities-header {
    font-size: 44px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -1px;
}

.capabilities-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 16px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.capabilities-scroll::-webkit-scrollbar {
    display: none;
}

.capability-box {
    flex: 0 0 80%;
    height: 580px;
    background: #92E87F;
    border-radius: 48px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    color: #1f2937;
    box-shadow: 0 4px 20px rgba(146, 232, 127, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}



.capability-box h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.capability-box p {
    font-size: 20px;
    line-height: 1.5;
    color: #374151;
    margin: 0;
}

.capability-header {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    text-align: center;
}

.capability-subheader {
    font-size: 15px;
    line-height: 1.5;
    color: #4b5563;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 400;
}

.capability-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    flex-shrink: 0;
}

.campaign-image {
    width: 85%;
}

.dashboard-image {
    width: 75%;
}

.security-box {
    justify-content: center;
}

.capability-content {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.capability-text {
    flex: 1;
    text-align: left;
}

.capability-image-right {
    flex: 0 0 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.capability-text .capability-header {
    text-align: left;
    margin-bottom: 15px;
}

.capability-text .capability-subheader {
    text-align: left;
    margin-bottom: 0;
}

/* Navi Section Styles */
.capability-box.navi-section {
    background-image: radial-gradient(circle at 70% 71%, rgba(255,232,110,0.8) 0%, rgba(88,255,120,0.6) 30%, rgba(255,255,255,0.7) 55%) !important;
    background-color: #f8fafc !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 50px 40px !important;
    min-height: 600px !important;
    border: 3px solid #ff6b6b !important;
    position: relative !important;
}

.navi-headline {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937 !important;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: -0.02em;
    z-index: 10;
    position: relative;
}

.navi-content {
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563 !important;
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
    font-weight: 400;
    z-index: 10;
    position: relative;
}

.navi-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.navi-image {
    max-width: 70%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.navi-image:hover {
    transform: scale(1.02);
}

/* Meet the Team Section */
.meet-team-section {
    padding: 80px 40px 100px;
    background: linear-gradient(to bottom, rgba(255,232,110,0.03) 0%, white 15%);
    position: relative;
}

.meet-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(146, 232, 127, 0.3) 50%, transparent 100%);
}

.meet-team-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.team-headline {
    font-size: 44px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 48px;
    letter-spacing: -1px;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: flex-start;
}

.team-member {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.member-photo {
    margin-bottom: 24px;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.member-image:hover {
    transform: scale(1.05);
}

.member-name {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    text-align: left;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 40px 100px;
    background: #f8fafc;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(146, 232, 127, 0.3) 50%, transparent 100%);
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pricing-headline {
    font-size: 44px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.pricing-subtitle {
    font-size: 19px;
    color: #6b7280;
    margin-bottom: 48px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1;
    max-width: 450px;
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid #10b981;
    transform: scale(1.05);
}

.pricing-card.coming-soon {
    border: 2px solid #e5e7eb;
    opacity: 0.8;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.coming-soon-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6b7280;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-billing {
    margin-bottom: 15px;
    text-align: center;
}

.billing-option {
    display: block;
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 5px;
}

.savings {
    display: block;
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
}

.plan-perfect-for {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 10px;
    font-style: italic;
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    color: #6b7280;
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
}

.period {
    font-size: 16px;
    color: #6b7280;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 25px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.pricing-btn {
    width: 100%;
    background: #10b981;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pricing-btn:hover {
    background: #059669;
}

.coming-soon-btn {
    background: #6b7280;
    cursor: not-allowed;
}

.coming-soon-btn:hover {
    background: #6b7280;
}

/* Contact Section */
.contact-section {
    padding: 80px 40px 100px;
    background: white;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(146, 232, 127, 0.3) 50%, transparent 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-headline {
    font-size: 44px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.contact-subtitle {
    font-size: 19px;
    color: #6b7280;
    margin-bottom: 48px;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    flex: 1;
    text-align: left;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: #6b7280;
}

.contact-form {
    flex: 1;
}

.contact-form-centered {
    max-width: 600px;
    width: 100%;
}

.contact-form form,
.contact-form-centered form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form-centered input,
.contact-form-centered textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form-centered input:focus,
.contact-form-centered textarea:focus {
    outline: none;
    border-color: #10b981;
}

.contact-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #059669;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 48px 40px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #9ca3af;
    font-size: 16px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.scroll-indicators-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.scroll-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: rgba(146, 232, 127, 0.1);
    border: 2px solid #92E87F;
    border-radius: 50px;
    padding: 12px 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(146, 232, 127, 0.2);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #92E87F;
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(146, 232, 127, 0.5);
}

.indicator:hover {
    background: #92E87F;
    opacity: 0.7;
}


/* Responsive Design */
@media (max-width: 768px) {
    .sticky-nav {
        width: 92%;
        top: 10px;
    }
    
    .nav-container {
        padding: 6px 16px;
        gap: 12px;
    }
    
    .nav-logo {
        height: 20px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 14px;
    }

    /* Mobile: show only How it works, Contact Us, and Sign Up */
    .nav-links a[href="#capabilities"],
    .nav-links a[href="#pricing"] {
        display: none;
    }
    
    .demo-btn {
        padding: 6px 14px;
        font-size: 13px;
    }
    
    .main-header {
        padding: 80px 40px 50px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .sub-title {
        font-size: 1.2rem;
        margin-bottom: 32px;
    }
    
    .demo-capsule {
        font-size: 13px;
        padding: 10px 20px;
        margin-top: 48px;
        margin-bottom: 32px;
    }
    
    .hero-image {
        max-width: 88%;
    }
    
    .about-section {
        padding: 50px 20px 60px;
    }
    
    .about-text {
        font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
        font-size: 26px;
        max-width: 800px;
    }
    
    .how-it-works-section {
        padding: 60px 20px 80px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    .how-it-works-images-container {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }
    
    .how-it-works-image-left,
    .how-it-works-image-right {
        max-width: 100%;
    }
    
    .capabilities-section {
        padding: 50px 20px 60px;
    }
    
    .capabilities-header {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    .navi-section {
        padding: 60px 20px 80px;
    }
    
    .navi-headline {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .navi-content {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .capability-box {
        flex: 0 0 85%;
        height: 500px;
        padding: 30px 25px;
    }

    /* Security card: reduce typography on tablet to avoid overflow */
    .capability-box.security-box .capability-header {
        font-size: 20px;
    }
    .capability-box.security-box .capability-subheader {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .capability-box h3 {
        font-size: 28px;
    }
    
    .capability-box p {
        font-size: 18px;
    }
    
    .capability-header {
        font-size: 24px;
    }
    
    .capability-subheader {
        font-size: 14px;
    }
    
    .capability-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .capability-image-right {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .capability-text .capability-header {
        text-align: center;
    }
    
    .capability-text .capability-subheader {
        text-align: center;
    }
    
    .capability-box.navi-section {
        padding: 40px 30px;
    }
    
    .navi-headline {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .navi-content {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* Stack pricing cards on tablet/mobile */
    .pricing-cards {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .pricing-card {
        max-width: 600px;
        width: 100%;
    }
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
    }
    
    .nav-links {
        order: 3;
        width: 100%;
        justify-content: space-around;
        gap: 12px;
    }
    
    .demo-btn {
        order: 2;
        width: 100%;
        max-width: 200px;
    }
    
    .nav-logo {
        height: 18px;
    }

    /* Ensure hidden links also remain hidden on very small screens */
    .nav-links a[href="#capabilities"],
    .nav-links a[href="#pricing"] {
        display: none;
    }
    
    .main-header {
        padding: 80px 30px 30px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .sub-title {
        font-size: 1.1rem;
    }
    
    .demo-capsule {
        font-size: 12px;
        padding: 8px 18px;
        margin-top: 40px;
        margin-bottom: 28px;
    }
    
    .hero-image {
        max-width: 99%;
    }
    
    .about-section {
        padding: 20px 10px 40px;
    }
    
    .about-text {
        font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
        font-size: 24px;
        line-height: 1.5;
        max-width: 700px;
    }
    
    .how-it-works-section {
        padding: 60px 10px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .how-it-works-images-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
    
    .how-it-works-image-left,
    .how-it-works-image-right {
        max-width: 100%;
    }
    
    .how-it-works-image {
        border-radius: 12px;
    }
    
    .capabilities-section {
        padding: 40px 10px;
    }
    
    .capabilities-header {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .navi-section {
        padding: 60px 10px;
    }
    
    .navi-headline {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .navi-content {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .navi-image {
        border-radius: 16px;
    }
    
    .meet-team-section {
        padding: 60px 10px;
    }
    
    .team-headline {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .team-members {
        gap: 40px;
    }
    
    .member-image {
        width: 120px;
        height: 120px;
    }
    
    .member-name {
        font-size: 20px;
    }
    
    .member-bio {
        font-size: 14px;
    }
    
    .pricing-section {
        padding: 60px 10px;
    }
    
    .pricing-headline {
        font-size: 28px;
    }
    
    .pricing-subtitle {
        font-size: 16px;
    }
    
    .contact-section {
        padding: 60px 10px;
    }
    
    .contact-headline {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .footer {
        padding: 40px 10px 20px;
    }
    
    .pricing-section {
        padding: 80px 15px;
    }
    
    .pricing-headline {
        font-size: 36px;
    }
    
    .pricing-cards {
        flex-direction: column;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-section {
        padding: 80px 15px;
    }
    
    .contact-headline {
        font-size: 36px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-form-centered {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .meet-team-section {
        padding: 80px 15px;
    }
    
    .team-headline {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .team-members {
        flex-direction: column;
        gap: 50px;
    }
    
    .member-image {
        width: 150px;
        height: 150px;
    }
    
    .capability-box {
        flex: 0 0 90%;
        height: 400px;
        padding: 25px 20px;
    }

    /* Security card: further reduce typography on small mobile */
    .capability-box.security-box .capability-header {
        font-size: 18px;
    }
    .capability-box.security-box .capability-subheader {
        font-size: 11px;
        line-height: 1.35;
    }
    
    .capability-box h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .capability-box p {
        font-size: 16px;
    }
    
    .capability-header {
        font-size: 20px;
    }
    
    .capability-subheader {
        font-size: 12px;
    }
    
    .capability-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .capability-image-right {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .capability-text .capability-header {
        text-align: center;
    }
    
    .capability-text .capability-subheader {
        text-align: center;
    }
    
    .capability-box.navi-section {
        padding: 30px 20px;
    }
    
    .navi-headline {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .navi-content {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .scroll-indicators-container {
        margin-top: 15px;
    }
    
    .scroll-indicators {
        padding: 10px 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Keyframe animations */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
        border-color: rgba(16, 185, 129, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4), 0 0 20px rgba(16, 185, 129, 0.1);
        border-color: rgba(16, 185, 129, 0.4);
    }
}
