:root {
    --primary-color: #688F24;
    --secondary-color: #BFE47F;
    --secondary-light-color: #E8F5D0;
    --background-color: #f2f7e9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--background-color);
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    opacity: 0.7;
    mix-blend-mode: multiply;
}

.blob-1 {
    width: 1200px;
    height: 1200px;
    top: -400px;
    right: -400px;
    animation: float 25s ease-in-out infinite alternate;
}

.blob-2 {
    width: 1400px;
    height: 1400px;
    bottom: -600px;
    left: -500px;
    animation: float 30s ease-in-out infinite alternate-reverse;
}

.blob-3 {
    width: 1000px;
    height: 1000px;
    top: 20%;
    right: -300px;
    animation: float 35s ease-in-out infinite alternate;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(10px, 10px) rotate(2deg);
    }
}

header {
    background: white;
    border-bottom: 1px solid rgba(104, 143, 36, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

@media (max-width: 900px) {
    header {
        padding: 0.5rem 0;
        margin-bottom: 0;
    }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 38px;
    width: auto;
    transition: transform 0.2s ease;
}

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

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin: 0 0.8rem;
    text-decoration: none;
    color: #688F24;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: #5a7c1f;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.auth-buttons {
    display: flex;
    align-items: center;
    height: 100%;
}

.auth-buttons button {
    margin-left: 1rem;
    transition: all 0.2s ease;
    text-align: center;
}


.hamburger-menu {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    padding: 8px;
    background-color: rgba(104, 143, 36, 0.05);
    border-radius: 4px;
    transition: background-color 0.2s ease;
    align-items: center;
    justify-content: center;
}

.hamburger-menu:hover {
    background-color: rgba(104, 143, 36, 0.1);
}

.hamburger-menu svg {
    width: 24px;
    height: 24px;
}


.hamburger-menu.change svg line:nth-child(1) {
    transform: translate(0, 6px) rotate(45deg);
}

.hamburger-menu.change svg line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.change svg line:nth-child(3) {
    transform: translate(0, -6px) rotate(-45deg);
}


.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-top: 1px solid rgba(104, 143, 36, 0.1);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
}

.mobile-nav.show {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #688F24;
    padding: 1rem 0;
    font-weight: 500;
    border-bottom: 1px solid rgba(104, 143, 36, 0.1);
    transition: background-color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-links a::after {
    content: '›';
    font-size: 1.5rem;
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav-links a:hover {
    background-color: rgba(104, 143, 36, 0.05);
}

.mobile-nav-links a:hover::after {
    transform: translateX(3px);
    opacity: 1;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem 0;
}

.mobile-auth-buttons button {
    width: 100%;
}

.mobile-auth-buttons .login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.765rem 1.53rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-auth-buttons .signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.765rem 1.53rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-auth-buttons .login:hover {
    background-color: rgba(104, 143, 36, 0.1);
    transform: translateY(-2px);
}

.mobile-auth-buttons .signup:hover {
    background-color: #5a7c1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(104, 143, 36, 0.3);
}


body.menu-open {
    overflow: hidden;
}


@media (max-width: 480px) {
    .mobile-nav-links a {
        padding: 1.2rem 0.5rem;
        font-size: 1.1rem;
    }

    .mobile-auth-buttons {
        padding: 0.5rem 0 1rem;
    }

    .mobile-auth-buttons button {
        padding: 0.9rem 1.5rem;
    }
}

.signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.765rem 1.53rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(104, 143, 36, 0.2);
}

.login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.765rem 1.53rem;
    background-color: #F4FAEA;
    color: #688F24;
    border: 1px solid #688F24;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(104, 143, 36, 0.1);
}

.signup:hover {
    background-color: #5a7c1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(104, 143, 36, 0.3);
}

.login:hover {
    background-color: #E8F5D0;
    border-color: #5a7c1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(104, 143, 36, 0.2);
}

main {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: auto;
    justify-content: flex-start;
    overflow: visible;
    z-index: 5;
}

@media (max-width: 900px) {
    main {
        margin: 0 auto;
        padding: 0;
    }

    header {
        border-bottom: none;
        box-shadow: none;
    }
}

.main-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding-bottom: 2rem;
    min-height: 600px;
    max-width: 1100px;
    margin: 0 auto;
    gap: 1rem;
}

@media (max-width: 900px) {
    .main-content {
        padding-bottom: 0;
        min-height: auto;
    }
}

.splash-title-container {
    flex: 0 1 35%;
    text-align: left;
    padding-right: 1rem;
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.splash-title {
    font-size: 3.6rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: #0f172a;
    line-height: 1.2;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.typing-container {
    position: relative;
    display: inline-block;
    min-width: 120px;
}

#typing-text {
    color: #688F24;
    font-weight: 800;
}

#typing-text::after {
    content: '|';
    position: absolute;
    color: #688F24;
    animation: blink-cursor 0.8s step-end infinite;
}

@keyframes blink-cursor {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.hide-cursor {
    color: #688F24;
}

.hide-cursor::after {
    display: none;
}

.cursor-hidden::after {
    display: none;
}

.accent-color {
    color: #688F24;
    font-weight: 800;
}

.splash-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.upload-container {
    flex: 0 1 38%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background-color: #E0E8D2;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.upload-box {
    margin-top: 0.5rem;
    padding: 1.5rem 1.2rem;
    border: 2px dashed #688F24;
    border-radius: 8px;
    background-color: #F4FAEA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: none;
}

.upload-box:hover {
    background-color: #F4FAEA;
}

.upload-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #688F24;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(104, 143, 36, 0.2);
    margin: 1.2rem 0 0.8rem;
    width: auto;
}

.upload-button:hover {
    background-color: #5a7c1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(104, 143, 36, 0.3);
}

.drag-drop-text {
    color: #688F24;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    margin-top: 0.2rem;
}

.file-type-icons {
    display: grid;
    grid-template-columns: repeat(4, 77px);
    grid-template-rows: repeat(2, 77px);
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 400px;
    justify-content: center;
}

.file-type-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.5rem;
    border: 1px solid #688F24;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    width: 77px;
    height: 77px;
    justify-content: center;
    box-sizing: border-box;
}

.file-type-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(104, 143, 36, 0.2);
    border-color: #557A1F;
    background-color: rgba(255, 255, 255, 0.95);
}

.file-type-icon img {
    width: 26px;
    height: 26px;
    margin: 0 auto 0.4rem;
    object-fit: contain;
    display: block;
    position: relative;
    transform: translateY(-25%);
}

.file-type-icon span {
    display: block;
    font-size: 0.7rem;
    color: #688F24;
    font-weight: 600;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    line-height: 1.2;
    margin: 0 auto;
    position: absolute;
    bottom: 8px;
    left: 0;
}

.file-type-icon .tooltip {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    width: 180px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
    z-index: 100;
    text-align: center;
}

.file-type-icon .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.file-type-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
    top: -75px;
}

.url-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #688F24;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f9f9f9;
    margin-bottom: 1.5rem;
    width: 100%;
}

.url-prefix, .url-suffix {
    padding: 0.75rem 1rem;
    background-color: #f4faea;
    color: #688F24;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.url-main-input {
    flex: 1;
}

.url-main-input input {
    width: 100%;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    background-color: #fff;
    color: #333;
}

.url-main-input input::placeholder {
    color: #aaa;
    text-align: center;
    font-style: italic;
}

.url-main-input input:focus {
    outline: none;
}

.idrop-girl-container {
    flex: 0 1 27%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Xidrop-girl-container::after {
    content: 'idrop, do YOU?';
    position: absolute;
    top: 15%;
    right: 0;
    background: #fff;
    border-radius: 50% 50% 50% 0;
    padding: 20px;
    font-weight: bold;
    font-style: italic;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    line-height: 1.1;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(5deg);
}

.idrop-girl-image {
    max-width: 112.5%;  /* 90% * 1.25 = 112.5% */
    height: auto;
    filter: none;
}

@media (max-width: 1200px) {
    .idrop-girl-container::after {
        right: -20px;
        width: 100px;
        height: 100px;
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 1024px) {
    .main-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .splash-title-container {
        padding-right: 0;
        text-align: center;
        max-width: 600px;
        flex: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
        margin-top: 0;
    }

    .splash-title {
        font-size: 3.5rem;
        text-align: center;
    }

    .upload-container {
        max-width: 600px;
        width: 100%;
        flex: none;
        order: 3;
        margin: 0;
    }

    .idrop-girl-container {
        flex: none;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2rem 0;
        width: 100%;
        max-width: 300px;
        order: 2;
    }

    .idrop-girl-container::after {
        top: 10px;
        right: -30px;
    }

    .idrop-girl-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .idrop-girl-container::after {
        width: 90px;
        height: 90px;
        font-size: 0.9rem;
        padding: 12px;
        right: -20px;
    }

    .splash-title {
        font-size: 4rem;
    }

    .upload-container {
        padding: 15px;
    }
}

@media (max-width: 600px) {
    .idrop-girl-container::after {
        display: none;
    }
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .main-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .splash-title-container, .upload-container, .idrop-girl-container {
        margin: 0 auto;
        max-width: 100%;
        flex: none;
    }

    .splash-title-container {
        text-align: left;
        order: 1;
        min-height: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1rem;
        padding-top: 2rem;
        padding-bottom: 1rem;
        margin: 0 auto;
        position: relative;
        width: 80%;
    }

    .splash-title {
        font-size: 3.5rem;
        text-align: left;
        width: 100%;
        line-height: 1.3;
        max-width: 100%;
        padding: 0;
    }

    .splash-buttons {
        justify-content: flex-start;
        margin-top: 2rem;
        width: 100%;
    }

    .idrop-girl-container {
        position: relative;
        margin: 1rem auto;
        display: flex;
        justify-content: center;
        order: 2;
        pointer-events: auto;
        overflow: visible;
        padding: 0;
        width: 80%;
        height: auto;
    }

    .upload-container {
        order: 3;
        margin: 1rem auto 2rem;
        padding: 1.5rem;
        background-color: #E0E8D2;
        border-radius: 8px;
        box-shadow: none;
        width: 95% !important;
        max-width: 625px;
        height: auto;
    }

    .idrop-girl-image {
        max-height: 300px;
        transform: none;
        width: auto;
    }
}

@media (max-width: 768px) {
    .splash-title {
        font-size: 4rem;
        width: 100%;
        max-width: 100%;
        line-height: 1.3;
        padding: 0;
        text-align: left;
    }

    .main-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .splash-title-container {
        width: 80%;
        max-width: 600px;
        padding: 1rem;
        margin: 0 auto;
        min-height: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 2rem;
        padding-bottom: 1rem;
        position: relative;
        text-align: left;
        order: 1;
    }

    .idrop-girl-container {
        position: relative;
        margin: 1rem auto;
        padding: 0;
        overflow: visible;
        width: 80%;
        display: flex;
        justify-content: center;
        order: 2;
        height: auto;
    }

    .idrop-girl-image {
        max-height: 320px;
        transform: none;
        filter: none;
    }

    .upload-container {
        margin: 1rem auto 2rem;
        padding: 1.5rem;
        max-width: 600px;
        width: 90%;
        background-color: #E0E8D2;
        border-radius: 8px;
        order: 3;
        height: auto;
    }

    .upload-box {
        margin-top: 0;
        padding: 1.5rem 1rem;
        width: 100%;
        background-color: #F4FAEA;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .file-type-icons {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
        justify-items: center;
    }

    .splash-buttons {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 2rem;
    }

    .modal-image {
        max-width: 85% !important;
    }

    .upload-button {
        padding: 0.8rem 1.6rem;
    }
}

@media (max-width: 600px) {
    .splash-title {
        font-size: 3.5rem;
        line-height: 1.3;
        padding: 0;
        max-width: 100%;
        text-align: left;
    }

    .file-type-icons {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6rem;
        justify-items: center;
        padding: 0.5rem;
    }

    .file-type-icon {
        padding: 0.25rem;
        border: 1px solid #688F24;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .file-type-icon span {
        display: none;
    }

    .file-type-icon img {
        width: 35px;
        height: 35px;
        display: block;
        margin: 0;
        position: static;
        transform: none;
    }

    .idrop-girl-image {
        max-height: 392px;
        filter: none;
        transform: scale(1.4);
        transform-origin: center;
    }

    .main-content {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .splash-title-container {
        order: 1;
        width: 80%;
        min-height: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1rem;
        padding-top: 2rem;
        padding-bottom: 1rem;
        position: relative;
        text-align: left;
        margin: 0 auto;
    }

    .idrop-girl-container {
        position: relative;
        width: 80%;
        display: flex;
        justify-content: center;
        opacity: 1;
        order: 2;
        padding: 0;
        margin: 1rem auto;
        height: auto;
    }

    .upload-container {
        order: 3;
        width: 90%;
        max-width: 500px;
        padding: 1.5rem;
        background-color: #E0E8D2;
        border-radius: 8px;
        margin: 1rem auto 2rem;
        height: auto;
    }

    main {
        padding: 0;
        margin: 0;
    }

    .upload-box {
        padding: 1.5rem 1rem;
        background-color: #F4FAEA;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .url-prefix, .url-suffix {
        padding: 0.5rem;
    }

    .url-main-input input {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    main {
        padding: 0;
        min-height: auto;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .main-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        overflow: visible;
        position: relative;
    }

    .splash-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        text-align: left;
        padding: 0;
        max-width: 100%;
    }

    .splash-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .splash-title-container {
        min-height: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1rem;
        padding-top: 2rem;
        padding-bottom: 1rem;
        width: 80%;
        position: relative;
        text-align: left;
        margin: 0 auto;
        order: 1;
        padding-right: 0;
    }

    .splash-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
        padding: 0;
        align-items: flex-start;
    }

    .splash-buttons button {
        width: 100%;
        margin: 0;
    }

    .file-type-icons {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        justify-items: center;
        padding: 0.5rem;
    }

    .file-type-icon {
        padding: 0.15rem;
        border: 1px solid #688F24;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
    }

    .file-type-icon img {
        width: 35px;
        height: 35px;
        display: block;
        margin: 0;
        position: static;
        transform: none;
    }

    .file-type-icon span {
        display: none;
    }

    .drag-drop-text {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    .idrop-girl-image {
        max-height: 350px;
        filter: none;
        width: auto;
        display: block;
        transform: scale(1.4);
        transform-origin: center;
    }

    .idrop-girl-container {
        opacity: 1;
        position: relative;
        margin: 1rem auto;
        padding: 0;
        order: 2;
        display: flex;
        justify-content: center;
        width: 80%;
        z-index: 5;
        overflow: visible;
        height: auto;
        min-height: 400px;
    }

    .modal-image {
        max-width: 95% !important;
    }

    .upload-container {
        padding: 1rem;
        background-color: #E0E8D2;
        border-radius: 8px;
        margin: 1rem auto 2rem;
        width: 80%;
        max-width: 400px;
        order: 3;
        height: auto;
    }

    .upload-box {
        padding: 1rem 0.5rem;
        background-color: #F4FAEA;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .upload-button {
        width: auto;
        padding: 0.6rem 1.5rem;
    }
}

.screenshot-container {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 2rem 2rem;
    position: relative;
    overflow: visible;
    clear: both;
    z-index: 10;
    margin-top: 75px;
}

.screenshot-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 15;
}

.screenshot-text {
    flex: 1;
    max-width: 500px;
}

.screenshot-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-text {
    color: #688F24;
}

.screenshot-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.try-it-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(104, 143, 36, 0.2);
}

.try-it-now-btn:hover {
    background-color: #5a7c1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(104, 143, 36, 0.3);
}

.screenshot-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 15;
    margin-top: 0;
    width: 100%;
}

.modal-image {
    max-width: 55%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    position: relative;
    z-index: 16;
}

.file-browser {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 2;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.file-item:hover {
    background-color: #f5f5f5;
}

.file-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
}

.file-item span {
    flex: 1;
    font-size: 0.9rem;
    color: #333;
}

.file-action, .file-date {
    color: #888;
    font-size: 0.8rem;
    text-align: right;
}

.file-menu {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    position: absolute;
    top: 40%;
    right: 0;
    width: 180px;
    z-index: 1;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
}

.menu-item:hover {
    background-color: #f5f5f5;
}

.menu-item svg {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
}

.menu-item span {
    font-size: 0.9rem;
    color: #333;
}

@media (max-width: 1024px) {
    .screenshot-content {
        flex-direction: column;
        gap: 3rem;
    }

    .screenshot-text {
        max-width: 100%;
        text-align: center;
    }

    .screenshot-text h2 {
        font-size: 2.5rem;
    }

    .screenshot-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .modal-image {
        max-width: 49.5%;
        width: auto;
    }
}

@media (max-width: 768px) {
    .screenshot-container {
        margin-top: 4rem;
        padding-top: 0;
        z-index: 20;
    }

    .screenshot-text h2 {
        font-size: 2rem;
    }

    .screenshot-text p {
        font-size: 1rem;
    }

    .screenshot-image {
        max-width: 100%;
    }

    .modal-image {
        max-width: 55%;
    }
}

@media (max-width: 480px) {
    .screenshot-container {
        margin-top: 1rem;
    }

    .modal-image {
        max-width: 77%;
        margin-top: 20px;
    }

    .idrop-girl-image {
        max-height: 350px;
        transform: scale(1.4);
        transform-origin: center;
    }
}


@media (max-width: 360px) {
    .idrop-girl-container {
        width: 90%;
        margin: 1rem auto;
    }

    .idrop-girl-image {
        max-height: 280px;
    }
}

.features-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 1rem 2rem;
    position: relative;
    overflow: visible;
}

.features-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 5;
}

.features-text {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 3em;
}

.features-title {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
    text-align: left;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 5;
}

.features-subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 5;
    flex: 2;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transform-origin: top left;
    margin-right: -10%;
    margin-bottom: -10%;
    border: 1px solid #688F24;
}

.feature-card:hover {
    transform: scale(0.9) translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background-color: #F4FAEA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.blob-accent {
    position: absolute;
    border-radius: 50%;
    background-color: #E8F5D0;
    z-index: 1;
    opacity: 0.7;
}

.blob-accent-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -150px;
}

.blob-accent-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .feature-card {
        transform: scale(0.95);
        margin-right: -5%;
        margin-bottom: -5%;
    }

    .feature-card:hover {
        transform: scale(0.95) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .features-content {
        flex-direction: column;
        align-items: center;
    }

    .features-text {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 2em; /* Reduced font size for mobile */
    }

    .features-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .feature-card {
        transform: scale(1);
        margin-right: 0;
        margin-bottom: 0;
    }

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

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

    .feature-card {
        padding: 1.5rem;
    }


.testimonials-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem 5rem;
    position: relative;
    background-color: #f0f7e6;
    border-radius: 0;
    overflow: visible;
    z-index: 5;
}

.testimonials-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-text {
    flex: 1;
    max-width: 450px;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
    text-align: left;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 5;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1.5;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #688F24;
    display: flex;
    flex-direction: column;
    max-width: 480px;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 26.4px;
    height: 26.4px;
    border-radius: 50%;
    background-color: #e8f5d0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.1rem;
}

.author-info p {
    font-size: 0.75rem;
    color: #666;
}

.blob-accent-3 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -100px;
}

@media (max-width: 1200px) {
    .testimonials-content {
        gap: 3rem;
    }

    .testimonials-text {
        max-width: 400px;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .testimonials-container {
        padding: 3rem 2rem;
        margin-top: 2rem;
    }

    .testimonials-content {
        flex-direction: column-reverse;
        align-items: center;
        gap: 3rem;
    }

    .testimonials-text {
        max-width: 100%;
        text-align: center;
    }

    .testimonials-title {
        text-align: center;
    }

    .testimonials-grid {
        width: 100%;
        max-width: 600px;
    }

    .testimonial-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        padding: 2.5rem 1.5rem;
        margin: 6rem auto 3rem;
        overflow: visible;
    }

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

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

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-content p {
        font-size: 0.95rem;
    }
}


.integrations-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 1rem 2rem;
    position: relative;
    text-align: center;
}

.integrations-badge {
    display: inline-block;
    background-color: #f0f7e6;
    color: #688F24;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.integrations-title {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #688F24;
}

.integrations-subtitle {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.integrations-hexgrid {
    max-width: 1000px;
    margin: 2rem auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.hex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%;
}

.hexgrid-row {
    display: block;
    width: 100%;
}

.hex-row-offset {
    margin-left: 0;
}

.hex-item {
    width: auto;
    height: auto;
    margin: 10px;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.hex-item:hover {
    transform: scale(1.05);
}

.hex-item:hover .hex-content {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hex-item::after {
    content: attr(data-name);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.hex-item:hover::after {
    opacity: 1;
    visibility: visible;
}

.hex-content {
    width: 60px;
    height: 60px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 5px;
}

.hex-item-center .hex-content {
    border: 2px solid #688F24;
}

.hex-content img,
.hex-content svg {
    width: 65%;
    height: auto;
    max-height: 65%;
    object-fit: contain;
}


.hex-item[data-name="Salesforce"] .hex-content svg {
    width: 85.8%;
    height: auto;
    max-height: 85.8%;
    transform: scale(0.99);
    transform-origin: center;
    aspect-ratio: 1;
}

.hex-item[data-name="Salesforce"] .hex-content {
    overflow: visible;
}


.hex-item[data-name="MS Teams"] .hex-content svg {
    width: 71.5%;
    height: auto;
    max-height: 71.5%;
    transform: scale(1.1);
    transform-origin: center;
    aspect-ratio: 1;
}

.hex-item[data-name="MS Teams"] .hex-content {
    overflow: visible;
}

@media (max-width: 1024px) {
    .integrations-hexgrid {
        max-width: 800px;
    }

    .hex-content {
        width: 70px;
        height: 70px;
    }

    .hex-row-offset {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .integrations-title {
        font-size: 2.5rem;
    }

    .integrations-hexgrid {
        max-width: 600px;
    }

    .hex-content {
        width: 60px;
        height: 60px;
    }

    .hex-row-offset {
        margin-left: 0;
    }
}

.faq-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 1.5rem 2rem;
    background-color: var(--background-color);
    border-radius: 12px;
    position: relative;
    z-index: 5;
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    background-color: #e1efd6;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    font-size: 1.1rem;
}

.faq-question:hover {
    background-color: #d9e9cb;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 1px;
}

.faq-toggle::before {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
    transition: transform 0.3s ease;
}

.faq-toggle::after {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-toggle::before {
    transform: rotate(90deg);
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }
}

/* Pricing Section */
.pricing-container {
    max-width: 1500px; /* Increased to match pricing grid */
    margin: 3rem auto; /* Reduced margin */
    padding: 3rem 2rem; /* Reduced padding */
    text-align: center;
    background-color: #f8fcf2;
    border-radius: 24px;
    position: relative;
    overflow: visible;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 1.5rem;
}

.pricing-subtitle {
    max-width: 700px;
    margin: 1rem auto 1.5rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.year-plan-badge {
    display: inline-block;
    background-color: #F4E9B0;
    color: #333;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.pricing-toggle {
    display: flex;
    position: relative;
    background-color: #f5f5f5;
    border-radius: 37.5px; /* 25% smaller than 50px */
    padding: 0.19rem; /* 25% smaller than 0.25rem */
    width: fit-content;
    border: 1px solid #688F24;
}

.toggle-btn {
    font-size: 0.95rem; /* Increased from 0.75rem */
    font-weight: 600; /* Increased from 500 for better visibility */
    color: #555;
    background: none;
    border: none;
    padding: 0.56rem 1.13rem;
    cursor: pointer;
    border-radius: 37.5px;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background-color: #688F24;
    color: white;
    font-weight: 600;
}

.toggle-btn:focus {
    outline: none;
}

.most-popular-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -12px;
    background-color: #688F24;
    color: white;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.42rem 0;
    border-radius: 20px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.15);
    z-index: 1;
    width: 60%;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem; /* Further reduced gap to allow for wider boxes */
    margin-top: 2rem;
    max-width: 1500px; /* Increased max-width for wider boxes */
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem; /* Added padding for better spacing */
}

.pricing-card {
    background-color: white;
    border-radius: 16px;
    padding: 2.5rem 2.5rem; /* Increased horizontal padding */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    text-align: left;
    min-height: 550px;
    position: relative;
    border: 1px solid #688F24;
    width: 100%; /* Ensure full width */
    max-width: 100%; /* Ensure it doesn't exceed container width */
}

.pricing-card.free {
    background-color: white;
    color: inherit;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    display: flex;
    align-items: flex-start;
}

.currency {
    font-size: 1.75rem;
    margin-right: 0.2rem;
}

.period {
    font-size: 1.1rem;
    color: #777;
    margin-left: 0.2rem;
    align-self: flex-end;
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.check-icon {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    color: #688F24;
}

.pricing-button {
    display: inline-block;
    background-color: #688F24;
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(104, 143, 36, 0.25);
    width: 100%;
    margin: 0 auto 0.75rem;
}

.pricing-button:hover {
    background-color: #557A1F;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(104, 143, 36, 0.35);
}

.guarantee-text {
    font-size: 1rem;
    color: #688F24;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}

.pricing-note {
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }

    .pricing-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 3rem 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .year-plan-badge {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .pricing-toggle {
        width: 90%;
        max-width: 262.5px; /* 25% smaller than 350px */
        margin: 0 auto;
        padding: 0.26rem; /* 25% smaller than 0.35rem */
        box-shadow: 0 2px 8px rgba(104, 143, 36, 0.15);
    }

    .toggle-btn {
        padding: 0.56rem 1.13rem; /* 25% smaller than 0.75rem 1.5rem */
        font-size: 0.95rem; /* Updated from 0.75rem to match main style */
        flex: 1;
        text-align: center;
    }

    .most-popular-badge {
        font-size: 0.74rem; /* 25% smaller than 0.98rem */
        padding: 0.34rem 0; /* 25% smaller than 0.45rem */
        width: 60%; /* 25% smaller than 80% */
    }

    .guarantee-text {
        font-size: 1.05rem;
        margin-bottom: 1.3rem;
    }
}

@media (max-width: 480px) {
    .pricing-toggle {
        flex-direction: column;
        border-radius: 9px; /* 25% smaller than 12px */
        padding: 0.23rem; /* 25% smaller than 0.3rem */
    }

    .toggle-btn {
        border-radius: 7.5px; /* 25% smaller than 10px */
        margin: 0.15rem 0; /* 25% smaller than 0.2rem */
        padding: 0.49rem 0.75rem; /* 25% smaller than 0.65rem 1rem */
    }

    .guarantee-text {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 1.4rem;
    }
}

.try-it-now-container {
    max-width: 1200px;
    margin: 3rem auto; /* Reduced margin */
    padding: 3rem 2rem; /* Reduced padding */
    position: relative;
    overflow: visible;
    text-align: center;
    background-color: #f9fcf4;
    border-radius: 16px;
}

.try-it-now-content {
    position: relative;
    z-index: 5;
}

.try-it-now-container h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 1.5rem;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Vertically center the children */
    justify-content: center; /* Center horizontally */
    flex-wrap: wrap; /* Allow wrapping if needed */
    gap: 0.5rem; /* Add gap between elements */
}

.try-it-now-container p {
    font-size: 1.2rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.accent-text {
    color: var(--primary-color);
    font-weight: 600;
}

.upload-zip-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(104, 143, 36, 0.2);
}

.upload-zip-button:hover {
    background-color: #5a7c1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(104, 143, 36, 0.3);
}

.upload-zip-button svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.blob-accent-4 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
    z-index: 1;
}

@media (max-width: 768px) {
    .try-it-now-container {
        padding: 3rem 1.5rem;
        margin: 5rem auto;
    }

    .try-it-now-container h2 {
        font-size: 2.5rem;
    }

    .try-it-now-container p {
        font-size: 1.1rem;
    }

    .try-it-now-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .try-it-now-content button {
        margin: 0 auto;
    }
}

.site-footer {
    background-color: white;
    padding: 3rem 2rem 2rem; /* Reduced padding */
    margin-top: 3rem; /* Reduced margin */
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(104, 143, 36, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-tagline {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f4faea;
    color: #688F24;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #688F24;
    color: white;
    transform: translateY(-3px);
}

.social-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    display: inline-block;
    vertical-align: middle;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(104, 143, 36, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

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

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.typing-container-bottom {
    position: relative;
    display: inline-flex; /* Change to inline-flex */
    align-items: center; /* Center content vertically */
    width: 260px; /* Increased from 200px to accommodate longer text */
    height: 60px; /* Fixed height to prevent layout shifts */
    line-height: normal; /* Reset line height */
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 1em;
    font-weight: inherit;
    overflow: visible; /* Changed from hidden to visible to prevent cutting off text */
    vertical-align: middle; /* Align text vertically */
}

#typing-text-bottom {
    position: relative;
    color: var(--primary-color);
    display: inline-block; /* Ensure transform works correctly */
    transform: none; /* Remove previous transform */
    top: 0; /* Reset top position */
}

#typing-text-bottom::after {
    content: '|';
    position: absolute;
    color: var(--primary-color);
    height: 70%;
    top: -4px;
    width: 2px;
    animation: blink-cursor 0.8s step-end infinite;
}

.hide-cursor-bottom::after {
    display: none !important;
}

/* Scroll to top button */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #688F24;
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0; /* Start hidden */
}

#scroll-to-top:hover {
    background-color: #7ba02d;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

#scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Green circular button with up arrow */
.green-circle-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #688F24;
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.green-circle-button:hover {
    background-color: #7ba02d;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.green-circle-button svg {
    width: 30px;
    height: 30px;
}

/* Stats Section */
.stats-container {
    padding: 40px 20px;
    background-color: #f9faf7;
    border-top: 1px solid rgba(104, 143, 36, 0.1);
    border-bottom: 1px solid rgba(104, 143, 36, 0.1);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #688F24;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        margin-bottom: 30px;
    }

    .stat-number {
        font-size: 2.8rem;
    }
}

/* Analytics Section */
.analytics-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    position: relative;
    overflow: visible;
}

.analytics-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 5;
}

.analytics-text {
    flex: 1;
    max-width: 500px;
}

.analytics-title {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.analytics-subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.analytics-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.analytics-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.analytics-feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.analytics-feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.analytics-graphic {
    flex: 1;
    position: relative;
}

.dashboard-card {
    background-color: #1e2b3c;
    border-radius: 12px;
    padding: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1rem;
    margin-bottom: 1rem;
}

.metric {
    position: relative;
}

.metric h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.metric p {
    font-size: 0.8rem;
    color: #a5b4c8;
    margin-bottom: 0.5rem;
}

.trend {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    position: absolute;
    right: 0;
    top: 0.5rem;
}

.trend.up {
    background-color: rgba(104, 143, 36, 0.2);
    color: #94c43d;
}

.trend.down {
    background-color: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
}

.dashboard-chart {
    height: 200px;
    width: 100%;
    margin-top: 1rem;
}

.chart {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .analytics-content {
        flex-direction: column;
    }

    .analytics-text, .analytics-graphic {
        max-width: 100%;
    }

    .dashboard-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .analytics-container {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .analytics-title {
        font-size: 2.5rem;
    }

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

    .dashboard-metrics {
        grid-template-columns: 1fr;
    }

    .dashboard-card {
        padding: 1.5rem;
    }

    .trend {
        position: static;
        display: inline-block;
        margin-left: 0.5rem;
    }
}

@media (max-width: 480px) {
    .analytics-container {
        padding: 1rem;
        margin: 1.5rem auto;
    }

    .analytics-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .analytics-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .analytics-features {
        gap: 1rem;
    }

    .analytics-icon {
        width: 28px;
        height: 28px;
    }

    .analytics-feature h3 {
        font-size: 1.1rem;
    }

    .analytics-feature p {
        font-size: 0.9rem;
    }

    .dashboard-card {
        padding: 1rem;
        border-radius: 8px;
    }

    .dashboard-metrics {
        gap: 1rem 0.5rem;
    }

    .metric {
        padding-bottom: 0.5rem;
    }

    .metric h3 {
        font-size: 1.3rem;
        display: inline-block;
        margin-right: 0.5rem;
        margin-bottom: 0;
    }

    .metric p {
        display: inline-block;
        font-size: 0.75rem;
    }

    .trend {
        padding: 0.1rem 0.25rem;
        font-size: 0.7rem;
        display: block;
        margin-left: 0;
        margin-top: 0.25rem;
        width: fit-content;
    }

    .dashboard-chart {
        height: 150px;
        margin-top: 0.5rem;
    }

    .try-it-now-container {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

