/* @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"); */

/* Fredoka */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');

/* Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100..900&display=swap');

/* Berkshire Swash */
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap');




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Fredoka", sans-serif;

}

h1,
h2,
h3,
.page-title,
.policy-title,
.sidebar-heading,
.pricing-box h2,
.hero h1 {
    font-family: "Berkshire Swash", cursive !important;
}




:root {
    --primary: #db3837;
    --primary-dark: #8d0100;
    --primary-light: #f96664;
    --secondary: #6fa064;
    --secondary-dark: #588a4e;
    --secondary-light: #8fbe84;
    --black: #000000;
    --white: #ffffff;
    --gray-500: #707070;
    --accent: #f8c460;
    --secondary-opaque: rgba(111, 160, 100, 0.82);
    color-scheme: light;

}

@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light;
    }
}


html {
    scroll-behavior: smooth;
}

body {
    height: 100%;
    background: var(--white);
    overflow-x: hidden;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

ul {
    list-style: none;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 15px;
    height: 15px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
        opacity: 0.3;
    }

    100% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        backdrop-filter 0.35s ease;
    height: 110px;
}

.nav-wrapper.scrolled {
    background: rgba(219, 56, 55, 0.82);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.55);
    height: 90px;
}

.nav-wrapper.scrolled .nav-title {
    opacity: 1;
}

.nav {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    width: 100%;
    height: 100%;
    position: relative;
    /* <- the ONLY addition */

}

.nav-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: "Berkshire Swash", cursive;
    font-size: 42px;
    color: white;
    pointer-events: none;
    /* avoids blocking buttons */
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo {
    width: 85px;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.scrolled .logo {
    width: 78px;
}

.desktop-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-try {
    background: var(--secondary);
    border: none;
    color: var(--white);
    padding: 12px 30px;
    font-weight: 550;
    border-radius: 28px;
    cursor: pointer;
    font-size: 18px;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.pricing-button:hover,
.btn:hover,
.btn-try:hover {
    transform: translateY(-3px);
}

.btn-try:active {
    transform: translateY(1px);
}

.profile {
    width: 54px;
    /* height: 54px; */
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.profile img {
    width: 60%;
}

.mobile-menu {
    display: none;
    align-items: center;
    position: relative;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    height: 3.5px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
}

.dropdown {
    position: absolute;
    top: 55px;
    right: -40px;
    width: 95vw;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.16);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transform: translateX(50px);
    opacity: 0;
    transition:
        transform 0.28s ease,
        opacity 0.28s ease;
    pointer-events: none;
    padding: 24px 32px;
}

.dropdown.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.dropdown a {
    color: var(--black);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 300;
}

.activ-page {
    color: var(--secondary) !important;
    font-weight: 500 !important;
}

.dropdown a:last-child {
    margin-bottom: 0;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: visible;
    background: #000;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url("../assets/hero-1.png");
    background-position: center;
    background-size: cover;
    z-index: 0;
    filter: saturate(0.95) contrast(0.95);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 480px;
    min-height: calc(100vh - 88px);
}

.hero__left {
    align-self: center;
}

.hero__left h1 {
    padding: 100px 0 0 0;
    font-size: 50px;
    font-weight: 400;
    color: var(--white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    max-width: 760px;
}

.learn-more {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 3;
    text-align: center;
    font-size: 22px;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.learn-more .circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #f96564;
    display: grid;
    place-items: center;
    transition: transform 0.18s ease;
    margin: 12px auto 0 auto;
    padding: 6px 0 0 0;
}

.learn-more .circle svg {
    transform: rotate(180deg);


}

.learn-more:hover .circle {
    transform: translateY(-4px);
}



.about-bg {
    background-color: #fffaf2;
    padding: 100px 0;
}

.about-main {
    display: flex;
    gap: 60px;
}

.about-left {
    width: 50%;
    height: 500px;
    overflow: hidden;
    border-radius: 30px;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-right {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.page-title,
.about-right h2 {
    font-size: 48px;
    font-weight: 400;
    color: var(--primary);
}

.about-right strong {
    font-size: 22px;
    color: var(--gray-500);
    font-weight: 600;
}

.about-right p {
    font-size: 19px;
    color: var(--gray-500);
    line-height: 24px;
    font-weight: 300;
}

.about-info-para {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.video-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.watch-video h3 {
    font-size: 18px;
    color: var(--gray-500);
    font-weight: 600;
}

.video-inner button {
    height: 36px;
    width: 36px;
    background: var(--secondary);
    border-radius: 50%;
}

.video-inner button {
    transform: rotate(90deg);
}

.btn {
    background: var(--primary);
    color: var(--white);
    width: fit-content;
    padding: 12px 38px;
    font-weight: 600;
    border-radius: 28px;
    cursor: pointer;
    font-size: 18px;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.right-img {
    height: 144px;
    width: 144px;
    position: absolute;
    bottom: -40px;
    right: 0;
}

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

.bg-green {
    background-color: var(--secondary);
    padding: 124px 0;
}

.testimonial-main {
    display: flex;
    justify-content: space-between;
}

.testimonial-item {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
}

.user-img {
    width: 150px;
    height: 150px;
    min-width: 150px;
    /* prevents flexbox from shrinking it */
    min-height: 150px;
    /* prevents flexbox from shrinking it */
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    /* THIS is the key */
}

.user-img-sarah {
    width: 150px;
    height: 150px;
    min-width: 150px;
    /* prevents flexbox from shrinking it */
    min-height: 150px;
    /* prevents flexbox from shrinking it */
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    /* THIS is the key */
}


.user-img img {
    /* width: 100%; */
    /* height: 100%; */
    object-fit: cover;
    object-position: center;
    display: block;
}

.user-img-sarah img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.user-review {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.user-review strong,
.user-review p {
    color: var(--white);
    font-size: 16px;
    width: 70%;
    font-weight: 550;
}

.user-review strong {
    font-size: 20px;
}

.user-review img {
    width: 40px;
    position: absolute;
    right: 16%;
    bottom: 0;
}

.experience-section {
    padding: 100px 0;
}

.card-main {
    padding: 0 0 100px 0;
    text-align: center;
}

.custimized-card {
    display: flex;
    justify-content: space-between;
    margin: 0 0 60px 0;
}

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

.card-img {
    height: 160px;
    width: 160px;
}

.card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-item h3 {
    font-size: 40px;
    color: var(--primary-dark);
    font-weight: 400;
    width: 50%;
    text-align: center;
    line-height: 44px;
    margin: 40px 0 20px 0;
}

.card-item p {
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    color: var(--black);
    width: 80%;
}

.btn-green {
    background-color: var(--secondary);
}

.about-experience {
    display: flex;
    background: var(--primary);
    border-radius: 70px;
    padding: 80px 60px;
    justify-content: space-between;
}

.about-exp-lft {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    width: 50%;
}

.about-exp-lft h1 {
    font-size: 48px;
    font-weight: 400;
    color: var(--white);
}

.about-exp-lft strong {
    font-size: 22px;
    color: var(--white);
    font-weight: 600;
}

.about-exp-lft p {
    font-size: 19px;
    color: var(--white);
    line-height: 24px;
    font-weight: 300;
}

.btn-white {
    background: var(--white);
    color: var(--black);
    margin: 20px 0 0 0;
}

.about-exp-rgt {
    width: 45%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
}

.about-exp-rgt img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.how-section {
    background-image: url("../assets/hero-bg-2.png");
    background-size: cover;
    padding: 70px 0;
}

.section-title {
    margin-bottom: 48px;
    text-align: center;
    color: var(--white);
    font-size: 50px;
    font-weight: 400;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.icon {
    height: 176px;
    width: 176px;
}

.icon-2 img,
.icon img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.icon-2 {
    height: 150px;
    width: 150px;
}

.arrow {
    position: absolute;
    width: 80%;
    right: -84%;
    top: 26%;
}

.step-title {
    font-size: 30px;
    font-weight: 550;
    color: var(--white);
    padding: 35px 0 20px;
}

.step-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 300px;
    margin: 0 auto;
}

#more {
    scroll-margin-top: 110px;
}

.pricing-section {
    padding: 100px 0;
    text-align: center;
}

.pricing-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--primary);
}

.pricing-subtitle {
    margin: 20px 0 70px 0;
    font-size: 24px;
    color: var(--black);
    font-weight: 300;
}

.pricing-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.pricing-card {
    width: 326px;
    background: var(--white);
    border-radius: 18px;
    border: 2px solid var(--black);
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.pricing-price {
    font-size: 60px;
    color: #f96564;
    font-weight: 650;
}

.pricing-plan {
    font-size: 26px;
    font-weight: 300;
    color: var(--black);
    margin: 24px 0 0 0;
}

.pricing-description {
    font-size: 16px;
    color: var(--black);
    line-height: 1.45;
    font-weight: 300;
    margin: 40px 0 45px 0;
}

.pricing-button {
    background: var(--accent);
    border: none;
    color: var(--white);
    padding: 12px 50px;
    font-weight: 700;
    border-radius: 28px;
    cursor: pointer;
    font-size: 18px;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.pricing-note {
    font-size: 16px;
    color: var(--black);
    font-weight: 300;
    width: 72%;
    margin: 34px auto 0 auto;
    text-align: left;
}

.pricing-card img {
    position: absolute;
    width: 90px;
    top: -27px;
}

.left-corner {
    left: -50px;
    transform: rotate(28deg);
}

.right-corner {
    right: -50px;
    transform: rotate(-28deg);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    padding: 30px 0;
}

.footer-container {
    display: flex;
    align-items: flex-start;
    gap: 120px;
}

.footer-logo {
    width: 120px;
}

.footer-logo img {
    width: 100%;
    object-fit: cover;
}

/* Links section */
.footer-links {
    display: flex;
    gap: 60px;
    flex: 1 1 auto;
    align-items: flex-start;
}

.footer-column {
    min-width: 140px;
}

.footer-column-title {
    margin: 0 0 20px 0;
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
}

.footer-column-list li {
    margin: 8px 0;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 300;
}

.footer-column-list a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column-list a:hover {
    color: var(--white);
    text-decoration: underline;
}

.account-section,
.contact-form,
.faq-section,
.policy-hero {
    padding: 100px 0;
}

.page-title {
    text-align: center;
    margin-bottom: 70px;
}

.angle-down {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1250px) {
    .desktop-actions {
        gap: 12px;
    }

    .hero__bg {
        background-position: 75% center;
    }

    .btn-try {
        padding: 10px 24px;
        font-size: 16px;
    }

    .profile {
        width: 48px;
        height: 48px;
    }

    .hero__left h1 {
        font-size: 42px;
    }

    .hero__left h2 {
        font-size: 38px;
    }

    .hero__left h1 br {
        display: none;
    }

    .hero__content {
        grid-template-columns: 1fr 400px;
    }

    .learn-more {
        font-size: 20px;
    }

    .learn-more .circle {
        width: 48px;
        height: 48px;
    }

    .about-main {
        gap: 30px;
    }

    .pricing-title,
    .section-title,
    .about-exp-lft h1,
    .page-title,
    .about-right h2 {
        font-size: 38px;
    }

    .about-exp-lft strong,
    .about-right strong {
        font-size: 20px;
    }

    .about-exp-lft p,
    .about-right p {
        font-size: 16px;
        line-height: 22px;
    }

    .right-img {
        height: 100px;
        width: 100px;
        bottom: -20px;
        right: 12px;
    }

    .testimonial-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .user-review img {
        bottom: -20px;
    }

    .user-img {
        max-height: 120px;
        max-width: 120px;
    }

    .user-review strong,
    .user-review p {
        font-size: 20px;
        width: 100%;
    }

    .footer,
    .pricing-section,
    .experience-section,
    .about-bg,
    .bg-green {
        padding: 80px 0;
    }

    .card-img {
        height: 120px;
        width: 120px;
    }

    .card-item h3 {
        font-size: 30px;
        line-height: 36px;
        margin: 30px 0 16px 0;
    }

    .card-item p {
        font-size: 20px;
    }

    .custimized-card {
        margin: 0 0 40px 0;
    }

    .card-main {
        padding: 0 0 50px 0;
    }

    .about-experience {
        padding: 60px 40px;
    }

    .about-right,
    .about-exp-lft {
        gap: 20px;
    }

    .about-exp-rgt,
    .about-left {
        height: 450px;
    }

    .icon-2 img {
        width: 90%;
        height: 90%;
        margin-top: 5%;
    }

    .icon-2,
    .icon {
        height: 120px;
        width: 120px;
    }

    .arrow {
        width: 60%;
        right: -45%;
        top: 20%;
    }

    .step-title {
        font-size: 20px;
        padding: 25px 0 16px;
    }

    .steps {
        justify-content: space-around;
    }

    .step-desc {
        max-width: 250px;
        font-size: 16px;
    }

    .pricing-subtitle {
        font-size: 20px;
        margin: 16px 0 50px 0;
    }

    .pricing-price {
        font-size: 48px;
    }

    .pricing-plan {
        font-size: 22px;
    }

    .pricing-description {
        margin: 30px 0 35px 0;
    }

    .pricing-button {
        padding: 10px 40px;
        font-size: 16px;
    }

    .pricing-note {
        font-size: 14px;
        width: 80%;
        margin: 24px auto 0 auto;
    }

    .pricing-card img {
        width: 70px;
        top: -20px;
    }

    .pricing-grid {
        gap: 40px;
    }

    .footer-logo img {
        width: 80%;
    }

    .footer-container {
        gap: 50px;
    }

    .footer-column {
        min-width: 120px;
    }

    .footer-column-title {
        font-size: 18px;
    }

    .footer-column-list li {
        font-size: 18px;
    }
}

@media (max-width: 1030px) {
    .hero__content {
        grid-template-columns: 1fr 230px;
        min-height: calc(100vh - 50px);
    }

    .hero__left h1 {
        font-size: 36px;
    }

    .learn-more {
        font-size: 18px;
    }

    .learn-more .circle {
        width: 44px;
        height: 44px;
    }

    .learn-more .circle svg {
        width: 20px;
    }

    .about-main {
        flex-direction: column-reverse;
        position: relative;
    }

    .about-right {
        position: unset;
    }

    .about-exp-rgt,
    .about-left {
        height: 350px;
    }

    .footer,
    .pricing-section,
    .experience-section,
    .about-bg,
    .bg-green {
        padding: 60px 0;
    }

    .testimonial-main {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .testimonial-item {
        flex: 0 0 100%;
        scroll-snap-align: start;
        padding: 10px;
    }

    .user-review img {
        bottom: 0;
        right: 20px;
    }

    .testimonial-main::-webkit-scrollbar {
        display: none;
    }

    .card-img {
        height: 100px;
        width: 100px;
    }

    .card-item h3 {
        font-size: 28px;
        line-height: 32px;
        margin: 20px 0 12px 0;
    }

    .card-item p {
        font-size: 18px;
    }

    .steps {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }

    .arrow {
        display: none;
    }

    .icon {
        height: 100px;
        width: 100px;
    }

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

    .pricing-title,
    .section-title,
    .about-exp-lft h1,
    .page-title,
    .about-right h2 {
        font-size: 34px;
    }

    .section-title {
        margin-bottom: 36px;
    }

    .footer-column-title {
        font-size: 16px;
    }

    .footer-column-list li {
        font-size: 16px;
    }

    .footer-container {
        gap: 40px;
    }

    .pricing-note {
        width: 85%;
    }

    .about-experience {
        flex-direction: column-reverse;
        padding: 0;
        border-radius: 30px;
    }

    .about-exp-lft {
        padding: 40px;
    }

    .step-desc {
        font-weight: 300;
    }

    .custimized-card {
        flex-direction: column;
        gap: 40px;
    }

    .about-left,
    .about-right,
    .about-exp-rgt,
    .about-exp-lft {
        width: 100%;
    }

    .about-right {
        padding-left: 0;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-section::after {
        display: none;
    }

    .step-desc {
        max-width: 520px;
    }

    .step {
        width: 100%;
    }

    .angle-down {
        display: block;
        width: 50px;
    }
}

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

    .mobile-menu {
        display: flex;
    }

    .nav-title {
        display: none;
    }

    .footer,
    .pricing-section,
    .experience-section,
    .about-bg,
    .bg-green {
        padding: 40px 0;
    }

    .container {
        padding: 0 26px;
    }

    .hero__left h1 {
        padding-top: 290px;
        font-size: 34px;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
    }

    .hero__left h2 {
        padding-top: 290px;
        font-size: 34px;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
    }

    .hero__bg {
        background-position: -800px center;
        /* ✅ correct */
    }

    .footer-column-list li {
        margin: 14px 0;
    }

    .hero__content {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero__left {
        text-align: center;
    }

    .pricing-title,
    .section-title,
    .about-exp-lft h1,
    .page-title,
    .about-right h2 {
        font-size: 30px;
    }

    .about-right,
    .about-exp-lft {
        gap: 30px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .about-exp-lft .btn {
        margin: 20px auto 0 auto;
    }

    .about-main {
        gap: 36px;
    }

    .card-item h3 {
        font-size: 26px;
        width: 100%;
    }

    .pricing-grid {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 10px;
        height: 460px;
    }

    .pricing-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }

    /* Hide scrollbar */
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .pricing-card img {
        display: none;
    }

    .pricing-title {
        font-size: 42px;
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 92%;
        max-width: 420px;
    }

    .pricing-note {
        font-size: 16px;
        line-height: 1.4;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-logo {
        align-self: center;
    }

    .footer-links {
        width: 100%;
        flex-direction: row;
        gap: 24px;
        justify-content: center;
    }

    .footer-column {
        min-width: 120px;
    }

    .angle-down {
        width: 40px;
    }
}

@media (max-width: 380px) {
    /* .hero__bg {
        background-position: -700px center;
    } */

    .hero__bg {
        background-position: 80% center;
        /* or 72% or 68% depending on your taste */
    }

    .pricing-grid {
        height: 540px;
    }

    .watch-video h3 {
        width: 80%;
    }

    .angle-down {
        width: 30px;
    }

    .hero__bg {
        background-position: -800px center;
    }
}


/* Desktop profile menu wrapper */
.desktop-profile-menu {
    position: relative;
    display: flex;
    align-items: center;
}

/* Desktop profile button */
.desktop-profile-btn {
    background: transparent;
    /* remove black circle */
    width: 30px;
    /* same as mobile */
    height: 20px;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
    /* NEW: stack spans vertically */
    justify-content: space-between;
    cursor: pointer;
}


.desktop-profile-btn span {
    display: block;
    width: 100%;
    height: 3.5px;
    background: var(--white);
    border-radius: 2px;
}

.desktop-profile-btn img {
    width: 60%;
}

/* Desktop dropdown panel */
.desktop-profile-dropdown {
    position: absolute;
    top: 60px;
    right: 0;

    width: 220px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);

    display: flex;
    flex-direction: column;
    gap: 12px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* When open */
.desktop-profile-dropdown.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.desktop-profile-dropdown a {
    color: var(--black);
    font-size: 16px;
    text-decoration: none;
}

/* Hide desktop menu on mobile */
@media (max-width: 600px) {
    .desktop-profile-menu {
        display: none;
    }

    .hero__bg {
        background-position: 75% center;
    }
}

#how-it-works {
    scroll-margin-top: 90px;
    /* adjust based on header height */
}

#try-it-out {
    scroll-margin-top: 90px;
    /* adjust based on header height */
}

/* CONTACT FORM — SAFE, SCOPED, WON’T BREAK ANYTHING */
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--black);
    border: 1px solid #ccc;
    border-radius: 25px;
    background: var(--white);
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3l6 6 6-6' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgb(219 56 55 / 20%);
}

/* Make header and footer full-width */
site-header .container,
site-footer .container {
    max-width: none;
    width: 100%;
    padding-left: 48px;
    /* matches your site spacing */
    padding-right: 48px;
}

/* Allow the background bar to fill the screen */
.nav-wrapper,
.footer-wrapper {
    width: 100%;
}


.pricing-checklist {
    list-style: none;
    padding: 0;
    margin: 12px 0 22px;
    text-align: left;

}

.pricing-checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    /* color: #fff; */
    font-size: 16px;
    line-height: 1.45;
}

/* .pricing-checklist li::before {
    content: "❄";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 16px;
} */

/* .pricing-checklist li::before {
  content: "🎄";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
} */

/* .pricing-checklist li::before {
  content: "🎁";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}  */

/* .pricing-checklist li::before {
  content: "🔔";
  position: absolute;
  left: -2px;
  top: 0;
  font-size: 16px;
}  */

.pricing-checklist li::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 16px;
}

.signup-message {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.signup-message.success {
    background-color: #e7ffee;
    color: #0a7a28;
    border: 1px solid #b2eec7;
}

.signup-message.error {
    background-color: #ffecec;
    color: #a10000;
    border: 1px solid #ffbcbc;
}

.hidden {
    display: none;
}

/* Overlay */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.video-modal.hidden {
    display: none;
}

/* Modal box */
.video-modal-content {
    position: relative;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    max-height: 80vh;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Close button */
.close-video {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 32px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
}

/* 16:9 responsive video */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}