/* Your existing CSS */
*, *::before, *::after {
    box-sizing: border-box;
}

.text-content h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -1px;
}

.text-content p {
    font-size: 1.1em;
    line-height: 1.6;
    opacity: 0.95;
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
    }
    25% {
        border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    }
    50% {
        border-radius: 70% 30% 40% 60% / 50% 70% 50% 30%;
    }
    75% {
        border-radius: 50% 50% 60% 40% / 70% 30% 40% 60%;
    }
}

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

@keyframes shimmer {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

/* Responsive design */
@media (max-width: 600px) {
    .irregular-oval {
        width: 90vw;
        height: 250px;
        padding: 30px;
    }

    .text-content h2 {
        font-size: 2em;
    }

    .text-content p {
        font-size: 1em;
    }
}

.container-bubble:hover .edit-hint {
    opacity: 1;
}

/* Editable content styling */
[contenteditable="true"]:focus {
    outline: 2px dashed rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
}

.go-through {
    align-items: center;
    justify-content: center;
    padding: 80px 24px 80px;
    background: white;
    gap: 40px;
    flex-wrap: wrap; /* makes it stack nicely on smaller screens */
}

.hero-section-with-timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 24px 80px; /* reduced top padding */
    background: #30313D;
    gap: 40px;
    flex-wrap: wrap; /* makes it stack nicely on smaller screens */
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-timer {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.timer-frame {
    display: inline-block;
    padding: clamp(15px, 4vw, 30px);
    border: 2px solid #06AB78;
    border-radius: 24px;
    background: rgba(40, 167, 69, 0.05);
    margin: 20px auto;
    width: 90%;
    max-width: 1000px;
}

.timer-display-home, #demo-timer {
    font-size: clamp(48px, 10vw, 96px);
    padding: clamp(10px, 2vw, 20px);
    background: #ffffff;
    color: black;
    border-radius: 12px;
    display: inline-block;
    width: 100%; /* fill the frame */
    max-width: 100%; /* never overflow */
    box-sizing: border-box;
    text-align: center;
}

/* Optional: make font smaller on very small screens */
@media (max-width: 400px) {
    .timer-display-home, #demo-timer {
        font-size: clamp(32px, 8vw, 64px);
        padding: 8px 12px;
    }
}


.button {
    padding: 12px 24px;
    margin: 5px;
    font-size: clamp(14px, 2vw, 18px);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.start-btn {
    background-color: #06AB78;
    color: white;
}

.start-btn:hover {
    background-color: #059267;
}

/* Default container (desktop) */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.container > * {
    flex: 0 1 50%;
}

/* Responsive: stack vertically on mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* stack children vertically */
        align-items: center; /* center content */
        gap: 24px;
    }

    .container > * {
        flex: 1 1 100%; /* full width */
        text-align: center; /* center text and images */
    }

    /* Fix alternating order on mobile */
    .container:nth-child(even) img {
        order: -1; /* make image appear above text for "text -> image" containers */
    }
}


.cta-button {
    background: linear-gradient(135deg, #06AB78, #059267);
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block; /* or block */
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 171, 120, 0.3);
}


.hero-badge {
    display: inline-block;
    background: rgba(6, 171, 120, 0.1);
    color: #06AB78;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: white;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 auto 24px;
    max-width: 900px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #CCCCCC;
    margin: 0 auto 48px;
    max-width: 700px;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
}

.hero-cta-group {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
    flex-direction: column; /* ← stack vertically */
    align-items: center;
    margin: 4px 0 0;
}

.hero-cta-group p {
    margin: 0; /* remove browser default margins */
    line-height: 1; /* tighten text spacing if needed */
    font-size: 0.9rem;
    color: white;
}

.secondary-button {
    background: white;
    color: #30313D;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #e5e5e5;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.secondary-button:hover {
    border-color: #06AB78;
    color: #06AB78;
}


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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #30313D;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 1fr;
    gap: 40px; /* space between ovals */
    justify-items: center; /* center ovals in each cell */
    align-items: center;
}


.features-columns .feature {
    flex: 1 1 45%; /* 2 columns, responsive */
    min-width: 280px; /* prevent too small on mobile */
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06AB78, #059267);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(6, 171, 120, 0.1), rgba(6, 171, 120, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 1.4rem;
    color: #30313D;
    margin-bottom: 12px;
    font-weight: 600;
}

/*.feature-description {*/
/*    color: #666;*/
/*    line-height: 1.6;*/
/*}*/

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* flexible columns */
    gap: 20px; /* spacing between cards */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* center */
    justify-items: center;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* flexible columns */
    gap: 20px; /* spacing between cards */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* center */
    justify-items: center;
}


.use-case-card {
    padding: 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0fdf4, #e6f7ed);
    border: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
}

.use-case-card:hover {
    border-color: #06AB78;
    transform: scale(1.05);
    background: white;
    box-shadow: 0 8px 24px rgba(6, 171, 120, 0.15);
}

.use-case-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.use-case-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #30313D;
}

.feature-description {
    color: #666;
    line-height: 1.5;
}


.pricing-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, #fafafa, #f0f0f0);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 48px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(6, 171, 120, 0.2);
    border: 2px solid #06AB78;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #06AB78, #059267);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-plan {
    font-size: 1.4rem;
    color: #30313D;
    margin-bottom: 8px;
    font-weight: 600;
}

.pricing-price {
    font-size: 3rem;
    color: #06AB78;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-period {
    color: #666;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.pricing-features li {
    padding: 12px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: '✓';
    color: #06AB78;
    font-weight: bold;
    font-size: 1.2rem;
}

.footer {
    background: #30313D;
    color: white;
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 32px;
}

.footer-section h4 {
    margin-bottom: 16px;
    color: #06AB78;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #06AB78;
}

.footer-bottom {
    width: 100%; /* ensure full width */
    text-align: center; /* center text */
    padding: 12px 24px; /* padding inside */
    border-top: 1px solid #444; /* optional */
    box-sizing: border-box; /* include padding in width */
}

@media (max-width: 768px) {
    .footer-bottom {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #30313D;
}

@media (max-width: 768px) {

    .mobile-menu-toggle {
        display: block;
    }

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

    .pricing-card.featured {
        transform: none;
    }
}


.progress-container-viewer {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin: 20px auto;
    max-width: 90%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right,
    #ef5350 0%,
    #ef5350 10%,
    #ffa726 10%,
    #ffa726 33%,
    #4caf50 33%,
    #4caf50 100%);
}

.progress-mask-viewer {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: #757575;
    border-radius: 20px 0 0 20px;
    width: 0%;
    transition: width 1s linear;
}


.progress-container-loop {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin: 20px auto;
    max-width: 90%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right,
    #ef5350 0%,
    #ef5350 10%,
    #ffa726 10%,
    #ffa726 33%,
    #4caf50 33%,
    #4caf50 100%);
}

.progress-mask-loop {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: #757575;
    border-radius: 20px 0 0 20px;
    width: 0%;
    transition: width 1s linear;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.faq-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.faq-list {
    background: white;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: #f8f9fa;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-item.active .faq-question {
    /*background: linear-gradient(135deg, #9df57d 0%, #4df517 100%);*/
    /*color: white;*/
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 100%;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 3px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-answer p + p {
    margin-top: 10px;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 18px 20px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
        margin-left: 15px;
    }
}

/* Animation for opening */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-answer {
    animation: fadeIn 0.4s ease;
}

@media (max-width: 768px) {

    .go-through {
        flex-direction: column; /* stack vertically */
        align-items: center; /* center children horizontally */
        text-align: center; /* center text inside children */
    }

    .go-through > div {
        min-width: 100%; /* make the div full width */
    }

    .section-title {
        margin-bottom: 40px; /* reduce spacing for mobile */
    }

    .hero-subtitle {
        margin-bottom: 24px; /* reduce spacing for mobile */
    }


    .use-cases-grid {
        gap: 16px;
    }

    .use-case-card {
        padding: 24px;
    }

    .use-case-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .use-case-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }

}

.responsive-image {
    width: 80%; /* scale with parent */
    max-width: 800px; /* desktop cap */
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 680px) {
    .responsive-image {
        width: 380px; /* take most of mobile screen */
        max-width: none; /* remove desktop cap */
    }
}


