/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    line-height: 1.5;
    background-color: #ffffff;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

.container-xl {
    max-width: 1440px;
}

.container-lg {
    max-width: 1200px;
}

.container-md {
    max-width: 900px;
}

.container-fluid {
    max-width: 2200px;
}

@media (max-width: 600px) {
    .container {
        padding-right: 16px;
        padding-left: 16px;
    }
}

/* Header Styles */
.styled-app-bar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    height: 64px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 96%;
    max-width: 1440px;
    border-radius: 4px;
    z-index: 1100;
}

.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 24px;
}

.logo {
    height: 32px;
    object-fit: contain;
}

.right-box {
    display: flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    height: 42px;
    border-radius: 2px;
}

.login-btn {
    height: 100%;
    padding: 0 28px;
    border: none;
    background: transparent;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s;
}

.login-btn:hover {
    background-color: #f9f9f9;
}

@media (max-width: 960px) {
    .styled-app-bar {
        width: 92%;
    }
}

@media (max-width: 600px) {
    .styled-app-bar {
        top: 0;
        width: 100%;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        border-top: 0;
    }

    .toolbar {
        padding: 0 12px;
    }

    .logo {
        height: 24px;
    }

    .right-box {
        height: 36px;
    }

    .login-btn {
        padding: 0 16px;
        font-size: 11px;
    }
}

/* NeoHeroPage Styles */
.neo-hero {
    padding-top: 184px;
    padding-bottom: 184px;
    background-color: #1C7F85;
    background-image: linear-gradient(90deg, #1C7F85 0%, #30A880 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.neo-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/HeroBackground.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.hero-title {
    color: #fff;
    font-weight: 600;
    font-size: 5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 960px) {
    .neo-hero {
        padding-top: 104px;
        padding-bottom: 104px;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 600px) {
    .neo-hero {
        padding-top: 80px;
        padding-bottom: 80px;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* HeroPage Styles */
.hero-page {
    background-color: #ffffff;
    padding: 96px 0;
    text-align: center;
}

.solution-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.solution-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 32px;
}

.demo-btn {
    background-color: #1f5f75;
    color: #ffffff;
    padding: 10px 32px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 48px;
    transition: background-color 0.2s;
}

.demo-btn:hover {
    background-color: #174a5c;
}

.hero-img {
    width: 100%;
    max-width: 900px;
    height: 300px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

@media (max-width: 960px) {
    .hero-page {
        padding: 64px 0;
    }

    .solution-title {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .hero-img {
        height: 250px;
    }
}

@media (max-width: 600px) {
    .hero-page {
        padding: 48px 0;
    }

    .solution-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .solution-desc {
        font-size: 14px;
    }

    .demo-btn {
        width: 100%;
        margin-bottom: 32px;
    }

    .hero-img {
        height: 200px;
    }
}

/* AdvanceSafer Styles */
.advance-safer {
    background-color: #ffffff;
    padding: 80px 0;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.grid-item {
    flex: 1;
    min-width: 300px;
}

.advance-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.advance-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.more-btn {
    background-color: #50B848;
    color: #ffffff;
    padding: 10px 32px;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.more-btn:hover {
    background-color: #43a047;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.image-grid img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 960px) {
    .advance-safer {
        padding: 64px 0;
    }

    .grid-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 600px) {
    .advance-safer {
        padding: 48px 0;
    }

    .advance-title {
        font-size: 20px;
        letter-spacing: 1.5px;
    }

    .advance-desc {
        font-size: 14px;
    }

    .more-btn {
        width: 100%;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .image-grid img {
        height: 120px;
    }
}

/* Privacy Section Styles */
.privacy-section {
    padding: 96px 0;
    background-color: #ffffff;
}

.privacy-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 64px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.privacy-card {
    background-color: #f6f6f6;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 4px;
}

.card-icon {
    height: 70px;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.privacy-card h4 {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.privacy-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 960px) {
    .privacy-section {
        padding: 64px 0;
    }

    .privacy-intro {
        font-size: 18px;
        margin-bottom: 48px;
    }

    .privacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .privacy-section {
        padding: 48px 0;
    }

    .privacy-intro {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .privacy-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.footer-wrapper {
    background-color: #EAF6FD;
    padding-top: 64px;
    padding-bottom: 24px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    margin-bottom: 24px;
    margin-left: 10px;
}

.footer-cert-icons {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-left: 10px;
}

.footer-cert-icons img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-cert-icons img:last-child {
    height: 40px;
}

.footer-spacer {
    flex-grow: 1;
}

.footer-contact {
    min-width: 150px;
    padding-top: 40px;
    margin-right: 20px;
}

.footer-locations {
    min-width: 150px;
    margin-right: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    transition: fill 0.2s;
}

.social-icon:hover svg {
    fill: #1C7F85;
}

.footer-wrapper h5 {
    font-weight: 600;
    color: #1B1D22;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-wrapper p {
    color: #474C5C;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-divider {
    border-top: 1px solid #DAE8F4;
    margin-bottom: 24px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #757D94;
    font-size: 0.9rem;
}

@media (max-width: 960px) {
    .footer-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-contact {
        padding-top: 0;
    }

    .footer-cert-icons,
    .social-links {
        justify-content: center;
    }

    .footer-spacer {
        display: none;
    }
}

@media (max-width: 600px) {
    .footer-wrapper {
        padding-top: 48px;
        padding-bottom: 16px;
    }

    .footer-cert-icons {
        flex-wrap: wrap;
    }

    .footer-logo img {
        height: 32px;
    }
}

/* App Download Section Styles */
.app-download-section {
    margin: 32px 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.get-app-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.myneo-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nc-btn {
    margin-bottom: 10px;
}

.market-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem 1rem 0.5rem 3.5rem;
    transition: all 0.25s ease-in-out;
    border: 2px solid #204EA8;
    background-position: center left 1rem;
    background-color: #fff;
    background-size: 1.8rem 1.8rem;
    background-repeat: no-repeat;
    text-decoration: none;
    border-radius: 12px;
    color: #204EA8;
    text-align: left;
    min-width: 180px;
}

.market-btn .market-button-subtitle {
    font-size: 0.7rem;
    line-height: 1;
    margin-bottom: 2px;
}

.market-btn .market-button-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.1;
}

.market-btn:hover {
    background-color: #204EA8;
    color: #ffffff !important;
}

.google-btn {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23204EA8' d='M6 10.3c-.3.4-.5 1-.5 1.8v23.8c0 .8.2 1.4.5 1.8l.1.1L19.4 24l-13.3-13.6z'/%3E%3Cpath fill='%23204EA8' d='M26.4 31.1l-7-7.1-13.3 13.6c.4.4 1.1.5 1.9.1l18.4-10.5c2 1.1 2 2.9 0 3.9z'/%3E%3Cpath fill='%23204EA8' d='M26.4 16.9l-18.4-10.5c-.8-.4-1.5-.3-1.9.1L19.4 24l7-7.1z'/%3E%3Cpath fill='%23204EA8' d='M33.4 20.9l-7-4-7 7.1 7 7.1 7-4c2-1.1 2-2.9 0-4z'/%3E%3C/svg%3E");
}

.apple-btn {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23204EA8' d='M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z'/%3E%3C/svg%3E");
}

.google-btn:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23ffffff' d='M6 10.3c-.3.4-.5 1-.5 1.8v23.8c0 .8.2 1.4.5 1.8l.1.1L19.4 24l-13.3-13.6z'/%3E%3Cpath fill='%23ffffff' d='M26.4 31.1l-7-7.1-13.3 13.6c.4.4 1.1.5 1.9.1l18.4-10.5c2 1.1 2 2.9 0 3.9z'/%3E%3Cpath fill='%23ffffff' d='M26.4 16.9l-18.4-10.5c-.8-.4-1.5-.3-1.9.1L19.4 24l7-7.1z'/%3E%3Cpath fill='%23ffffff' d='M33.4 20.9l-7-4-7 7.1 7 7.1 7-4c2-1.1 2-2.9 0-4z'/%3E%3C/svg%3E");
}

.apple-btn:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23ffffff' d='M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z'/%3E%3C/svg%3E");
}