@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFF;
    color: #111F2F;
    overflow-x: hidden;
}

body:has(#menu-toggle:checked) {
    position: fixed;
    overflow: hidden;
    width: 100%;
}

.screen {
    min-height: 100vh;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    background: transparent linear-gradient(205deg, #021C39 0%, #1D4472 100%) 0% 0% no-repeat padding-box;
}

#menu-toggle {
    display: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    height: 56px;
    z-index: 1000;
    position: relative;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

header .icon {
    filter: brightness(0) saturate(100%) invert(1);
    cursor: pointer;
}

.login-link {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
}

.menu-toggle-icon {
    position: relative;
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.menu-toggle-icon img {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
    width: 25px;
    height: 25px;
}

.menu-icon {
    opacity: 1;
}

.close-icon {
    opacity: 0;
    filter: brightness(0) saturate(100%) invert(1);
}

#menu-toggle:checked+header .menu-icon {
    opacity: 0;
}

#menu-toggle:checked+header .close-icon {
    opacity: 1;
}

.hamburger-menu {
    position: fixed;
    top: 56px;
    right: 0;
    width: 100%;
    height: calc(100vh - 56px);
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 20px;
    box-sizing: border-box;
    z-index: 999;
    overflow: hidden;
    overscroll-behavior: contain;
}

#menu-toggle:checked~.hamburger-menu {
    transform: translateX(0);
}

.accordion-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

details {
    border-bottom: 1px solid #ffffff1a;
}

summary {
    list-style: none;
    cursor: pointer;
    font-size: 18px;
    color: #000000;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::marker {
    display: none;
}

details ul {
    padding: 10px 0 10px 16px;
    margin: 0;
    list-style: none;
}

details ul li {
    padding: 6px 0;
}

details ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 15px;
}

.chevron-icon {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%);
}

details[open] .chevron-icon {
    transform: rotate(-180deg);
}

.get-started {
    padding: 24px 0 0;
    font-size: 16px;
    color: transparent linear-gradient(205deg, #021C39 0%, #1D4472 100%) 0% 0%;
}

.demo-link {
    color: #0066cc;
    text-decoration: none;
    margin-left: 6px;
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 24px;
}

.contact-btn,
.cta-btn {
    flex: 1;
    padding: 14px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
}

.contact-btn {
    background: #f5f5f5;
    color: #222;
}

.cta-btn {
    background: #0066cc;
    color: white;
}

.hero {
    padding: 70px 19px;
    flex: 1;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    color: #cdcdcd;
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.hero span {
    color: #3664E3;
    font-weight: bold;
}

.hero p {
    font-weight: 600;
    color: #fff;
    font-size: 32px;
    margin-bottom: 38px;
}

.hero .p2 {
    color: #DEDEDE;
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
    width: 95%;
    margin-bottom: 66px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.btn-primary {
    background: #3664E3;
    color: #fff;
    font-size: 18px;
    font-weight: normal;
}

.chevron {
    font-size: 12px;
}

.get-started {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.platform {
    background: #F8FBFF;
    padding: 100px 30px;
    text-align: center;
}

.platform-label {
    font-size: 18px;
    color: #3664E3;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.platform-title {
    font-weight: 500;
    font-size: 28px;
    margin-top: 40px;
    width: 100%;
    color: #4A4A4A;
    margin-bottom: 70px;
    text-align: center;
    line-height: 1.2;
}

.platform-desc {
    font-size: 17px;
    color: #7B7B7B;
    line-height: 1.8;
    margin-bottom: 95px;

}

.platform-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    max-width: 480px;
    margin: 0 auto;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 30px;
}

.item-icon {
    width: 90px;
    height: 90px;
}

.item-text h2 {
    color: #3664E3;
    text-align: left;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 20px;
}

.item-text h3 {
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: #4A4A4A;
    margin-bottom: 15px;
}

.item-text p {
    text-align: left;
    font-size: 16px;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 80px;
}

.platform-cta {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.link-secondary {
    font-size: 16px;
    color: #007AFF;
    text-decoration: none;
}

.usecase-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

button {
    padding: 8px 16px;
    border-radius: 40px;
    border: none;
    background-color: #F9FAFB;
    font-size: 16px;
    color: #4B5563;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:focus {
    background-color: #007AFF;
    color: #ffffff;
    font-weight: 500;
}

.usecase-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 100px 30px;
}

.usecase {
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    padding-top: 40px;
}

.usecase img {
    width: 390px;
    margin-bottom: 20px;
}

.usecase h2 {
    font-size: 20px;
    color: #007AFF;
    text-align: left;
    margin-bottom: 15px;
    font-weight: 600;
}

.usecase h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111F2F;
    margin-bottom: 20px;
    text-align: left;
}

.usecase p {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: left;
}

.usecase-points {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.points {
    display: flex;
    gap: 15px;
}

.points img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.points p {
    font-size: 16px;
    color: #4B5563;
    font-weight: normal;
}

.tabs {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tab-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.tab-label {
    background: #EEEDEA;
    color: #4A4A4A;
    cursor: pointer;
    border: none;
    border-radius: 25px;
    padding: 0.625rem 1.25rem;
    font-size: 16px;
    font-weight: normal;
    transition: background 0.3s, color 0.3s;
}

.tab-label:active {
    background: #3664E3;
}

.tab-visual {
    position: relative;
    width: fit-content;
    margin: 40px auto;
    height: 280px;
}

.tab-visual .visual {
    position: absolute;
    top: 0;
    transition: all 0.3s ease-in-out;
}

.tab-visual .left {
    left: -140px;
    filter: blur(2px);
    z-index: 1;
    transform: scale(0.8);
    top: 45px;
    width: 95px;
    height: 230px;
}

.tab-visual .center {
    left: 50%;
    transform: translateX(-50%) scale(1);
    filter: none;
    z-index: 2;
    top: 0;
}

.tab-visual .right {
    right: -140px;
    filter: blur(2px);
    z-index: 3;
    transform: scale(0.9);
    top: 3px;
    width: 130px;
    height: 235px;
}

input[type="radio"] {
    display: none;
}

.tab-content {
    display: none;
    border-top: none;
}

#tab1:checked~.content #content1,
#tab2:checked~.content #content2,
#tab3:checked~.content #content3,
#tab4:checked~.content #content4,
#tab5:checked~.content #content5,
#tab6:checked~.content #content6 {
    display: block;
}

#tab1:checked~.tab-labels label[for="tab1"],
#tab2:checked~.tab-labels label[for="tab2"],
#tab3:checked~.tab-labels label[for="tab3"],
#tab4:checked~.tab-labels label[for="tab4"],
#tab5:checked~.tab-labels label[for="tab5"],
#tab6:checked~.tab-labels label[for="tab6"] {
    background-color: #3664E3;
    color: white;
    font-weight: bold;
}

.data-hero {
    background: #2C2C2C;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    padding: 100px 40px;
    border-bottom: 1px solid #2C2C2C;
    text-align: left;
}

.data-hero h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 24px;
}

.data-hero p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 32px;
}

.btn-group {
    display: flex;
    gap: 0.75rem;
    justify-content: start;
}

.btn-group .btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-group .btn-primary {
    background: #FFF;
    color: #111F2F;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 10px;
}

.btn-group .btn-primary:hover {
    background: #f0f0f0;
}

.btn-group .btn-outline {
    background: transparent;
    padding: 15px 20px;
    color: #FFF;
    border: 1px solid #FFF;
    text-decoration: none;
    border-radius: 10px;
}

.btn-group .btn-outline:hover {
    background: #ffffff1a;
}

.site-footer {
    background: #262626;
    color: #FFF;
    padding: 2rem 30px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-logo {
    margin-top: 60px;
    width: 140px;
    height: auto;
    display: block;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.footer-menu summary {
    list-style: none;
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-menu summary::marker {
    display: none;
}

.footer-menu details ul {
    padding: 10px 0 10px 16px;
    margin: 0;
    list-style: none;
}

.footer-menu details ul li {
    padding: 6px 0;
}

.footer-menu details ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}

.footer-menu .chevron-icon {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    filter: brightness(0) saturate(100%) invert(100%);
}

.footer-menu details[open] .chevron-icon {
    transform: rotate(-180deg);
}

.tagline {
    font-size: 18px;
    font-weight: 600;
    color: #B1B1B1;
    letter-spacing: 1px;
    padding: 0.75rem 0;
    border-top: 1px solid #ffffff33;
    border-bottom: 1px solid #ffffff33;
    width: 100%;
    text-align: center;
}

.tagline span {
    color: #ffffff;
}

.footer-contact {
    font-style: normal;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 1rem 0;
    color: #B1B1B1;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin: 1rem 0 30px 0;
}

.social-icons img {
    width: 30px;
    height: 30px;
    display: block;
}

.social-icons a:hover img {
    opacity: 0.7;
}

.copyright {
    font-size: 14px;
    color: #B1B1B1;
    margin-top: 1rem;
    margin-bottom: 20px;
    border-bottom: 1px solid gray;
    padding-bottom: 30px;
}

.footer-bottom {
    font-size: 0.85rem;
    margin-top: 1rem;
    padding-bottom: 30px;
}

.footer-bottom a {
    color: #B1B1B1;
    text-decoration: none;
}

@media (min-width: 480px) {
    .site-footer {
        padding: 3rem 2rem;
    }
}
