:root {
    --black: #000000;
    --white: #FFFFFF;
    --blue-light: #A9CFF4;
    --blue-mid: #6CA8E6;
    --blue-dark: #3B82F6;
    --blue-mid-dark: #06375a;
    --blue-darker: #092a4a;
    --beige: #F9F5F0;
    --grey-light: #F4F4F4;
    --grey: #EDEDED;
    --grey-dark: #C4C4C4;
    --grey-darker: #6f6f6f;
    --dark: #1A1A1A;
    --green: #249f28;
    --red: #ff4d4d;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
}

body {
    background: var(--white);
    color: var(--black);
    scroll-behavior: smooth;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 1000;
}

header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.free-trial-btn-header {
    background: var(--blue-dark);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-btn-header {
    border: 2.6px solid var(--blue-dark);
    color: var(--blue-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 5px;
}

.free-trial-btn-header:hover {
    background: var(--blue-mid);
}

.login-btn-header:hover {
    background: var(--blue-dark);
    color: var(--white);
}

nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-dark);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--black);
    text-decoration: none;
}

.logo svg {
    width: 40px;
    height: 40px;
    fill: var(--black);
}

section {
    padding: 6rem 2rem 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}


.hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--grey) 100%);
    padding-top: 128px;
    padding-bottom: 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
}

#hero-image {
    width: clamp(18rem, 70vw, 45rem);
    height: auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: left;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto;
    font-family: "Fraunces", serif;
    text-align: left;
}

.hero p.lead {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 1.5rem 0rem;
    color: var(--dark);
    font-family: "Manrope", sans-serif;
    text-align: left;
}

.hero svg.decorative {
    position: absolute;
    z-index: 0;
    opacity: 0.08;
}

.hero svg.decorative.blob-top {
    top: -60px;
    left: -60px;
    width: 300px;
}

.hero svg.decorative.blob-bottom {
    bottom: -80px;
    right: -60px;
    width: 280px;
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
    text-align: center;
}

.logo-img {
    width: 200px;
    height: auto;
}

h2 {
    font-size: 60px;
    text-align: center;
    font-family: "Fraunces", serif;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: -0.96px;
}

.btn-primary {
    background: var(--blue-dark);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.1s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: scale(1.10) !important;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 16/9;
    border: 2px dashed var(--blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--blue-dark);
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

footer {
    background: var(--grey);
    padding: 2rem;
    text-align: center;
}

footer a {
    color: var(--blue-dark);
    text-decoration: none;
    font-weight: 600;
}

.gallery-row {
    display: flex;
    overflow: hidden;
    width: 100%;
    gap: 1rem;
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
}

.gallery-row .gallery-track:not(.reverse) {
    animation: scroll-left 20s linear infinite;
}

.gallery-row .gallery-track.reverse {
    animation: scroll-right 20s linear infinite;
}

.gallery-item {
    min-width: 480px;
    height: 550px;
    border-radius: 10px;
    background: var(--grey);
    border: 2px dashed var(--blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--blue-dark);
    flex-shrink: 0;
}


.testimonials {
    text-align: center;
    padding: 100px 5% 60px;
    background-color: var(--blue-mid-dark);
    color: var(--black);
    position: relative;
}

.testimonials h2 {
    line-height: 72px;
    letter-spacing: -0.96px;
    margin-bottom: 64px;
    color: var(--white);
    max-width: 90rem !important;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.testimonial-card {
    background-color: var(--blue-darker);
    padding: 48px;
    border-radius: 32px;
    max-width: 420px;
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    text-align: left;
}

.testimonial-card::before {
    content: "✕";
    font-size: 20px;
    font-weight: 900;
    background-color: var(--blue-mid-dark);
    color: var(--white);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    line-height: 0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    color: var(--white);
}

.testimonial-user-profile img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    margin-bottom: 32px;
}

.testimonial-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    color: var(--white);
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    font-family: "Fraunces", serif;
    color: var(--white);
    margin-bottom: 32px;
}

.features-section {
    padding: 6rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    position: relative;
}

.features-text {
    flex: 1 1 500px;
    max-width: 600px;
    margin-left: 120px;
}

.features-text h2 {
    font-size: 52px;
    font-family: "Fraunces", serif;
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 62.4px;
}

.features-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--dark);
}

.features-text ul {
    padding-left: 1rem;
    margin-bottom: 2.5rem;
}

.features-text ul li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    list-style: "✓ ";
    color: var(--black);
}

.features-carousel {
    flex: 1 1 400px;
    border-radius: 16px;
    padding: 1rem;
    position: relative;
    height: 400px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 120px;
}

.features-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-weight: bold;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.features-frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border: 4px solid var(--blue-mid);
    background-color: var(--blue-mid);
    border-radius: 12px;
}

.features-frame.visible {
    opacity: 1;
    pointer-events: auto;
}

.features-frame img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.features-frame.visible img:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    z-index: 10;
    position: relative;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.btn-large {
    background: var(--blue-mid);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 80px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.btn-large:hover {
    background: var(--blue-dark);
}

.arrow-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: background 0.3s ease;
}

.arrow-button .arrow-icon {
    transition: transform 0.3s ease;
}

.arrow-button:hover .arrow-icon {
    transform: translateX(5px);
}

.contact-section {
    padding: 6rem 2rem 6rem;
    text-align: center;
}

.contact-section h2 {
    font-size: 72px;
    margin-bottom: 3rem;
    color: var(--blue-dark);
    font-family: 'Fraunces', serif;
}

.contact-buttons {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-bottom: 3rem;
    align-items: center;
}

.contact-btn {
    background: var(--white);
    border: 2.4px solid var(--black);
    color: var(--black);
    padding: 1.8rem 4rem;
    font-size: 1.625rem;
    font-weight: 600;
    border-radius: 64px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 480px;
    text-align: center;
}

.contact-btn:hover {
    color: var(--blue-dark);
    border-color: var(--blue-dark);
    transform: translateY(-2px);
}

.pricing-section {
    padding: 6rem 2rem;
    text-align: center;
    background: url(/Storage/Image/Assets/Index/common-bg.svg);
    background-size: cover;
    position: relative;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-direction: row;
}

.pricing-plan {
    background: var(--white);
    border-radius: 16px;
    padding: 52px 72px 52px 40px;
    flex: 1 1 280px;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.plan-price {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: left;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
    width: 100%;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 25px;
    font-size: .95rem;
    margin-bottom: 0.75rem;
}

.icon.valid::before {
    content: "✓";
    color: var(--green);
    font-weight: bold;
    margin-right: 8px;
}

.icon.invalid::before {
    content: "✕";
    color: var(--red);
    font-weight: bold;
    margin-right: 8px;
}

.choose-plan-button {
    background: var(--blue-dark);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.choose-plan-button:hover {
    background: var(--blue-mid);
}


.footer {
    background-color: var(--white);
    box-shadow: 0px -20px 50px 0px rgba(0, 0, 0, 0.05);
    padding: 96px 0px 48px 0px;
}

.footer .container .row {
    display: flex;
    justify-content: space-around;
}

.footer-title {
    font-size: 25px;
    font-weight: 800;
    margin: 0px;
    margin-bottom: 24px;
    margin-top: 8px;
    color: var(--black);
    text-align: left;
}

.footer-description {
    text-align: left;
    font-weight: 500;
    line-height: 24px;
    font-size: 16px;
    color: var(--grey-darker);
}

.footer-about-links li {
    list-style-type: none;
    text-align: left;
}

.footer-about-links li a {
    text-decoration: none;
    color: var(--grey-darker);
    font-size: 16px;
    line-height: 30px;
    transition: all 0.3s ease;
    list-style: none;
    font-weight: 500;
}

.footer-about-links li a:hover {
    padding-left: 10px;
    color: var(--blue-dark);
}

.footer-cta {
    background: url(/Storage/Image/Assets/Index/common-bg2.svg);
    background-position: center left;
    background-size: cover;
    color: var(--white);
    padding: 48px 0;
    text-align: center;
}

.cta-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 40rem;
}

.cta-button {
    background: var(--blue-dark);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: var(--blue-mid);
}

@media (max-width: 900px) {
    .features-section {
        flex-direction: column;
        padding-bottom: 0;
    }

    .features-carousel {
        width: 100%;
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

.features-section {
    background-color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 240px;
        background: var(--white);
        display: flex;
        flex-direction: column;
        padding-top: 80px;
        gap: 1.5rem;
        align-items: flex-start;
        padding-left: 2rem;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    nav.open {
        right: 0;
    }

    nav a {
        margin: 0;
        font-size: 1.2rem;
    }

    .header-contact {
        display: none;
    }

    .features-text {
        margin-left: 0;
    }

    .contact-btn {
        padding: .5rem 1rem;
    }

    .section-divider {
        width: 100%;
    }

    .contact-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        flex-direction: column;
        padding: 4rem 1.5rem;
    }

    .features-text {
        margin: 0;
        max-width: 100%;
        text-align: center;
    }

    .features-text h2 {
        font-size: 36px;
        line-height: 1.3;
        text-align: center;
    }

    .features-text p,
    .features-text ul {
        font-size: 1rem;
        text-align: left;
    }

    .features-text ul {
        padding-left: 0;
        list-style-position: inside;
    }

    .features-carousel {
        margin: 2rem 0 0;
        width: 100%;
        height: 280px;
    }

    .features-frame {
        font-size: 1.2rem;
    }

    .btn-large {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }

    .gallery-item {
        min-width: 300px;
        height: 350px;
    }

    .hero {
        flex-direction: column;
        padding-top: 80px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        max-width: 90%;
        text-align: center;
        margin-top: 2rem;
    }

    .hero p.lead {
        font-size: 1rem;
        max-width: 95%;
        margin: 1rem auto;
        text-align: center;
    }

    .hero-image {
        margin-top: 2rem;
    }

    #hero-image {
        width: max-content;
        max-width: 420px;
        height: auto;
    }

    #pricing-title {
        font-size: 36px;
        line-height: 1.3;
        text-align: center;
    }

    #pricing-description {
        max-width: 100% !important;
        font: 1em sans-serif;
    }

    #pricing-header {
        width: 100%;
    }

    .footer .container .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-about-links li {
        text-align: center;
    }

    .footer-title {
        text-align: center;
    }

    .footer-description {
        text-align: center;
        margin-bottom: 2rem;
    }

    .testimonials-title {
        font-size: 2.5rem;
        line-height: 52px !important;
    }

    .features-frame {
        height: auto;
    }
    #svg-feature {
        width: 180px !important;
        top: -70px !important;
        rotate: 164deg !important;
        right: 35px !important;
    }
    #svg-pricing {
        width: 150px !important;
        top: 190px !important;
        rotate: 157deg !important;
        left: 20px !important;
    }
    
    .pricing-grid {
        flex-direction: column !important;
    }

    .cta-title {
        line-height: normal !important;
        font-size: 2rem !important;
    }    
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hamburger span {
    transition: all 0.3s ease;
}

/* FAQ section */
.faq-section {
    background-color: var(--blue-mid-dark);
    color: var(--white);
    padding: 80px 16px;
}

.faq-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.faq-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 28px;
    font-family: "Fraunces", serif;
}

.faq-subtitle {
    font-size: 1rem;
    color: var(--blue-light);
    margin-bottom: 32px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    background: transparent;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--blue-dark);
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    background: transparent;
    border: none;
    transition: transform 0.25s ease, color 0.2s ease;
}

.faq-question:hover .faq-icon {
    color: var(--blue-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--grey-light);
    padding-bottom: 18px;
}

.faq-item.open .faq-answer {
    padding-top: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 64px 16px;
    }

    .faq-title {
        font-size: 2.2rem;
    }
}