.header-promo {
    padding: 8px;
    background-color: oklch(94.3% 0.029 294.588);
}

.header-promo p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}

.header-promo p span {
    background-color: var(--primary);
    font-weight: 600;
    color: var(--white);
    padding: 2px 6px;
    border-radius: .25rem;
    font-size: .95rem;
}

.header-promo p {
    text-align: center;
}

.header-promo p a {
    font-weight: 600;
    color: var(--primary);
    text-decoration-thickness: 2px;
}

@media (max-width: 767px) {
    .header-promo {
        padding: 8px 0;
    }

    .header-promo p {
        font-size: .8rem;
    }

    .header-promo p span {
        display: none
    }
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transform: translateY(40px);
    transition:
        transform .35s cubic-bezier(.22, .61, .36, 1),
        padding .35s ease,
        background-color .35s ease,
        backdrop-filter .35s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}

.navbar.is-sticky {
    transform: translateY(0);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
}

/* Logo swap */
.logo-dark,
.navbar.nav-light .logo-light {
    display: block;
}

.logo-light,
.navbar.nav-light .logo-dark,
.navbar.nav-dark .logo-light {
    display: none;
}

.navbar.nav-dark .logo-dark {
    display: block;
}

.logo {
    height: 30px;
}

.logo img {
    width: auto;
    height: 100%;
}

.navbar.nav-light .nav-cta {
    border: 1px solid var(--white);
    color: var(--white);
}

.navbar.nav-dark .nav-cta {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.navbar .nav-cta {
    text-decoration: none;
    font-weight: 600;
    padding: .25em .75em .25em 1.15em;
    border-radius: .5em;

    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.nav-cta svg {
    width: 18px;
    height: 18px;
}

.navbar .nav-cta:hover {
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: white;
    transition: all 0.3s ease;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 192px 0 128px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--text-muted);
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero .container {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.hero-ctas .normal-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.hero-micro {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, .75);
}

.hero-micro svg {
    color: var(--white);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* ===== Section Base ===== */
.section {
    padding: 96px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: left;
    max-width: 600px;
    margin-bottom: 2.75rem;
}

.section-header h2 {
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--text);
}

.section-header p {
    font-size: .95rem;
    color: var(--text-muted);
}

/* Gallery */
.gallery-img img {
    height: 600px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    border-radius: 1rem;
}

/*PC only CSS*/
@media screen and (min-width: 768px) {
    .gallery-img {
        overflow: visible;
    }

    .gallery-img img {
        width: 100%;
        display: block;
        transition: transform 0.3s ease;
        transform-origin: center center;
    }

    .gallery-img:hover img {
        transform: scale(1.1);
        z-index: 10;
        position: relative;
    }

    #gallery .splide__track,
    #gallery .splide__list {
        overflow: visible;
    }

    .gallery-img {
        position: relative;
    }

    .gallery-img:hover {
        z-index: 100;
    }
}

/* END Gallery */

/* Pain Point Tabs*/
.pain-tabs {
    display: grid;
    grid-template-areas:
        "nav"
        "panel";
    gap: 24px;
}

.pain-tabs__nav {
    grid-area: nav;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-alt);
}

.pain-tab {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    color: rgba(0, 0, 0, .5);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    white-space: nowrap;
    cursor: pointer;
    transition:
        background-color 180ms cubic-bezier(0.4, 0, 0.2, 1),
        border-color 180ms cubic-bezier(0.4, 0, 0.2, 1),
        color 180ms cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 180ms cubic-bezier(0.4, 0, 0.2, 1),
        transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.pain-tab:hover {
    color: var(--text);
    transform: translateY(-1px);
}

.pain-tab.is-active,
.pain-tab[aria-selected="true"] {
    border-color: var(--border);
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(17, 24, 39, .07);
    transform: translateY(-1px);
}

.pain-tab:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

.pain-panel {
    grid-area: panel;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    opacity: 0;
    transition: opacity 180ms ease;
}

.pain-panel[hidden] {
    display: none;
}

.pain-panel.is-active {
    opacity: 1;
}

.pain-panel.is-exiting {
    opacity: 0;
}

.pain-panel__copy {
    align-self: center;
    padding: 8px;
}

.pain-panel h3 {
    max-width: 15ch;
    margin: 0;
    color: var(--color);
    font-size: 2.25rem;
    line-height: 1.1;
}

.pain-panel p {
    max-width: 48ch;
    margin: 18px 0 0;
    color: var(--text-muted);
    line-height: 1.56;
    font-size: .9rem;
}

.pain-panel ul {
    list-style: none;
    margin-top: 1.75rem;
}

.pain-panel ul li {
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
}

.pain-panel ul li svg {
    width: 16px;
    height: 16px;
}

.pain-panel__copy,
.pain-panel__image {
    min-width: 0;
}

.pain-panel__image {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.pain-panel__image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    aspect-ratio: 1.25;
    object-fit: cover;
}

@media (prefers-reduced-motion: reduce) {

    .pain-tab,
    .pain-panel,
    .pain-panel__image img {
        transition: none;
    }

    .pain-tab:hover,
    .pain-tab.is-active,
    .pain-tab[aria-selected="true"],
    .pain-panel__image img {
        transform: none;
    }
}

@media (max-width: 767px) {
    .pain-tabs__nav {
        display: flex;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .pain-tab {
        font-size: .9rem;
        min-height: 40px;
    }

    .pain-panel {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .pain-panel h3 {
        font-size: 2rem;
    }

    .pain-panel p,
    .pain-panel ul li {
        font-size: .85rem;
    }

    .pain-panel__image img {
        min-height: 256px !important;
    }

}

/* END Pain Point Tabs*/

/*Testimonials*/
#testimonials>.container {
    max-width: unset;
}

#testimonials .section-header {
    max-width: unset;
}

#testimonials .section-header h2 {
    text-align: center;
}

.testimonial {
    content-visibility: auto;
    /*display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;*/
}

.testimonial .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius);
    padding: 2.25rem;
    height: 500px;
}

.testimonial>img {
    width: 100%;
    border-radius: var(--radius);
    height: 550px;
    object-fit: cover;
}

.testimonial .content .quote svg {
    margin-bottom: 16px;
    opacity: .4;
}

.testimonial .content .quote p {
    font-size: clamp(1.25rem, 4vw, 2.15rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.testimonial .content .customer .name {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    font-weight: 600;
}

.testimonial .content .customer p {
    letter-spacing: -0.02em;
}

.splide.testimonials {
    padding-bottom: 3rem;
}

.splide.testimonials .splide__pagination__page {
    width: 10px;
    height: 10px;
    background-color: oklch(89.4% 0.057 293.283);
}

.splide__pagination__page.is-active {
    background-color: oklch(70.2% 0.183 293.541) !important;
}

@media (max-width: 767px) {
    .testimonial {
        grid-template-columns: 1fr;
    }

    .testimonial .content {
        padding: 1.75rem;
        height: 360px;
    }

    .testimonial .content .quote svg {
        width: 32px;
        margin-bottom: 8px;
    }

    .testimonial .content .customer .company {
        font-size: .85rem;
    }

    .testimonial>img {
        display: none;
    }
}

/*End Feedback*/

/*Promo*/
#promo {
    padding: 0 0 24px 0;
}

.promo-card {
    content-visibility: auto;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: center;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: var(--radius);
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

/* Solid decorative rings — no gradients */
.promo-card::before,
.promo-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.promo-card::before {
    top: -130px;
    right: -110px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.06);
}

.promo-card::after {
    bottom: -150px;
    left: -90px;
    width: 300px;
    height: 300px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.promo-card__content {
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px 6px 8px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 2.5em;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.promo-badge svg {
    width: 16px;
    height: 16px;
}

.promo-card h2 {
    font-size: 3rem;
    line-height: 1;
    color: var(--white);
    max-width: 16ch;
    margin-bottom: 16px;
}

.promo-card p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 52ch;
    font-size: .95rem;
}

.promo-list {
    list-style: none;
    margin: 24px 0 32px;
    display: grid;
    gap: 6px;
}

.promo-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    font-weight: 500;
}

.promo-list li svg {
    width: 18px;
    height: 18px;
    color: var(--white);
    flex-shrink: 0;
}

.promo-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .5em 1.5em;
    background: var(--white);
    color: var(--primary);
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--white);
    border-radius: .5em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.promo-ctas .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.promo-ctas .btn-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

.promo-stats {
    position: relative;
    z-index: 1;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.promo-stat {
    padding: 16px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.promo-stat:last-child {
    border-bottom: 0;
}

.promo-stat__num {
    display: block;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--white);
}

.promo-stat__label {
    display: block;
    margin-top: 6px;
    font-size: .85rem;
    color: rgba(255, 255, 255, 0.78);
}

/* Tablet */
@media (max-width: 900px) {
    .promo-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Phone */
@media (max-width: 768px) {
    #promo {
        padding-bottom: 64px;
    }

    .promo-card {
        padding: 1.75rem;
        gap: 28px;
        text-align: center;
    }

    .promo-card h2 {
        font-size: 1.8rem;
        max-width: none;
    }

    .promo-card p {
        max-width: none;
    }

    .promo-badge {
        margin-bottom: 16px;
    }

    .promo-list {
        justify-items: center;
        margin: 20px 0 28px;
    }

    .promo-list li {
        text-align: left;
    }

    .promo-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .promo-ctas .btn-white,
    .promo-ctas .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .promo-stats {
        text-align: left;
        padding: 4px 20px;
    }

    .promo-stat {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 14px 4px;
    }

    .promo-stat__num {
        font-size: 2rem;
        min-width: 2.5ch;
    }

    .promo-stat__label {
        margin-top: 0;
    }
}

/*END Promo*/

/* ===== FAQ ===== */
#faqs .container {
    display: grid;
    grid-template-columns: 1fr 1.75fr;
    gap: 4rem;
}

.faq-list {
    max-width: 820px;
    display: grid;
    gap: 12px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.is-open {
    background-color: oklch(96.9% 0.016 293.756);
    border-color: transparent;
    border-radius: var(--radius);
}

.faq-question {
    margin: 0;
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 1.25rem;
    background: transparent;
    border: 0;
    border-radius: var(--radius);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
    transition: color 0.3s ease;
}

.faq-trigger:hover,
.faq-item.is-open .faq-trigger {
    color: var(--primary);
}

.faq-trigger:focus-visible {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

.faq-trigger svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-trigger svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer__inner {
    min-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item.is-open .faq-answer__inner {
    opacity: 1;
}

.faq-answer__inner p {
    margin: 0;
    padding: 0 24px 22px;
    max-width: 64ch;
    font-size: .92rem;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {

    .faq-item,
    .faq-trigger,
    .faq-trigger svg,
    .faq-answer,
    .faq-answer__inner {
        transition: none;
    }
}

@media (max-width: 768px) {
    .faq-trigger {
        padding: 18px 18px;
        font-size: .98rem;
    }

    .faq-answer__inner p {
        padding: 0 18px 18px;
        font-size: .88rem;
    }

    #faqs .container {
        grid-template-columns: 1fr;
        gap: unset;
    }
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    content-visibility: auto;
    padding: 28px 24px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: var(--shadow);
}

.feature-item svg {
    color: var(--white);
    background-color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
    width: 32px;
    height: 32px;
    padding: 6px;
    border-radius: .5rem;
}

.feature-item h1 {
    font-size: 1.25rem;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/*Tools grid*/
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.tools-grid .tool-item {
    content-visibility: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border);
    background-color: var(--bg-alt);
    border-radius: .75rem;
    min-height: 64vh;
}

.tools-grid .tool-item:hover {
    box-shadow: var(--shadow);
}

.tools-grid .tool-item>div {
    display: grid;
    gap: .75rem;
    padding: 2rem 1.5rem;
}

.tools-grid .tool-item h1 {
    font-size: 1.25rem;
    font-weight: 600;
}

.tools-grid .tool-item p {
    color: var(--text-muted);
    font-size: .9rem;
    letter-spacing: -0.01em;
}

.tools-grid .tool-item a {
    display: inline-flex;
    text-decoration: none;
    font-weight: 500;
    align-items: center;
    gap: .3rem;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.tools-grid .tool-item a svg {
    width: 20px;
    height: 20px;
}

.tools-grid .tool-item img {
    width: 100%;
    border-bottom-left-radius: .75rem;
    border-bottom-right-radius: .75rem;
}

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

    .tools-grid .tool-item {
        min-height: auto;
    }
}

/*End Tools Grid*/

/* ===== Animations ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        margin: 0 auto 32px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-micro {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-header p {
        font-size: .9rem;
    }

    .hero {
        background-position: center;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 64px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .hero-ctas {
        gap: 8px;
    }

    .hero-micro {
        font-size: .7rem;
        gap: 4px;
    }

    .btn-primary,
    .btn-outline,
    .nav-cta {
        font-size: .95rem;
        padding: .5em 1.1em;
    }

    .splide__slide img {
        height: 360px;
    }

}