.hero-cta-button-main {
    color: var(--clean) !important;
}

.hero-cta-button-main:hover {
    color: var(--clean) !important;
}

.hero-cta-button-ghost {
    color: var(--slate) !important;
}

.hero-cta-button-ghost:hover {
    color: var(--slate) !important;
}

.slider-arrow {
    background: none !important;
    color: inherit !important;
    padding: 0.5rem !important;
    transform: none !important;
}

.slider-arrow:hover {
    background: none !important;
    transform: none !important;
}

.hero-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(77svh - 120px);
    gap: 8px;
    position: relative;
}

.hero-home h1 {
    margin-bottom: 0;
    font-size: clamp(2.5rem, 6vw + 0.5rem, 4.5rem);
}

.hero-home > p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-buttons {
    margin-top: 1.5rem;
}

.blinking-cursor {
    color: var(--light-lavanda);
    font-weight: 300;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 40% { opacity: 1; }
    50%, 90% { opacity: 0; }
    100% { opacity: 1; }
}


.hero-cta-button-main,
.hero-cta-button-ghost {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    transition: all 0.2s ease;
    margin: 0.5rem 0.75rem;
    text-align: center;
    min-width: 200px;
    box-sizing: border-box;
}

.hero-cta-button-main {
    background-color: var(--brand-pink-300);
    color: var(--clean);
    border: 2px solid var(--brand-pink-300);
}

.hero-cta-button-main:hover {
    background-color: var(--brand-pink-500);
    border-color: var(--brand-pink-500);
}

.hero-cta-button-ghost {
    color: var(--slate);
    background-color: var(--rain);
    border: 2px solid var(--rain);
}

.hero-cta-button-ghost:hover {
    color: var(--slate);
    background-color: var(--calm-white);
    border: 2px solid var(--calm-white);
}

.hero-cta-breakup-apps::before {
    content: "Best Breakup Support and Venting Apps (2025) →";
}

@media (max-width: 768px) {
    .hero-home {
        padding: 0 1rem;
    }
    
    .hero-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .hero-cta-breakup-apps::before {
        content: "Best Breakup Support Apps →";
    }
    
    .hero-cta-breakup-apps {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-cta-button-main,
    .hero-cta-button-ghost {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        margin: 0;
        min-width: 160px;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .hero-home {
        padding: 0 1rem;
    }
    
    .hero-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .hero-cta-breakup-apps {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-cta-button-main,
    .hero-cta-button-ghost {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        margin: 0;
        min-width: 140px;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}

.testimonials {
    padding: 4rem 0 2rem 0;
}

.testimonials h2 {
    text-align: center;
    margin: 0 0 1rem 0;
}

/* Testimonials header and badges */
.testimonials-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 2rem 0.75rem 2rem;
    flex-wrap: nowrap;
}

.testimonials-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    background: var(--rain);
    border-radius: 999px;
}

.testimonials-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-laurel {
    width: 40px;
    height: 56px;
    opacity: 0.5;
}
.testimonials-laurel.right {
    transform: scaleX(-1);
}

.testimonials-title {
    margin: 0;
    font-size: clamp(1.05rem, 2.4vw, 1.3rem);
    font-weight: 700;
    color: var(--abyss);
    letter-spacing: 0.2px;
}

.testimonials-subtitle {
    margin: 0.125rem 0 0 0;
    font-size: 0.825rem;
    color: var(--slate);
}

.testimonials-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.1;
    color: var(--abyss);
    background: var(--calm-white);
    border: 1px solid var(--rain);
    border-radius: 999px;
}

.badge .stars {
    color: #FFB400;
    letter-spacing: 1px;
    font-size: 0.95em;
}

.badge-link {
    text-decoration: none;
}

.section-action-link {
    display: block;
    text-align: center;
    margin: 1rem 0 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate);
    text-decoration: none;
    transition: color 0.2s ease;
    text-transform: capitalize;
}

.section-action-link:hover {
    color: var(--abyss);
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    padding: 0 2rem;
    box-sizing: border-box;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex-shrink: 0;
    width: 320px;
    height: 569px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.testimonial-text {
    text-align: center;
}

.testimonial-video {
    text-align: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--brand-pink-100);
    object-fit: cover;
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-video-element {
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: var(--brand-pink-100);
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial-quote {
    font-size: clamp(0.8rem, 2.5vw, 1rem);
    line-height: 1.4;
    color: var(--slate);
    margin: 0;
    position: absolute;
    top: 80px;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.testimonial-name {
    font-weight: 600;
    color: var(--abyss);
    font-size: 0.9rem;
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem;
    text-align: center;
}

.testimonial-result {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.5rem;
    padding-left: 0.35rem;
    border: 1px solid var(--rain);
    background: var(--calm-white);
    color: var(--abyss);
    border-radius: 999px;
    font-size: 0.88rem;
    white-space: nowrap;
}

.testimonial-result::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: no-repeat center/contain url('assets/checkmark-circle-ico.svg');
    filter: brightness(0) saturate(100%) invert(56%) sepia(86%) saturate(430%) hue-rotate(106deg) brightness(90%) contrast(96%);
}

.testimonial-video .testimonial-name,
.testimonial-screenshot .testimonial-name {
    display: none;
}

.testimonial-text {
    padding: 1.5rem;
}

.testimonial-screenshot-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--brand-pink-100);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 0 0 2rem 0;
    }
    
    .testimonials h2 {
        margin: 0 0 0.5rem 0;
        padding: 0 1rem;
    }

    .testimonials-header {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin: 0 0 0 0;
    }

    .testimonials-title {
        font-size: 1.5rem;
    }
    .testimonials-laurel {
        display: none;
    }
    .section-action-link {
        margin-top: 1rem;
    }
    .testimonials-badges {
        margin-top: 1.5rem;
    }
    
    .testimonials-carousel {
        padding: 0 1rem;
        position: relative;
        height: calc(533px + 2rem);
        max-height: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .testimonials-track {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .testimonial-card {
        width: 300px;
        height: 533px;
        padding: 1.25rem;
        position: absolute;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
        box-sizing: border-box;
    }
    
    .testimonial-text {
        padding: 1.25rem;
    }
    
    .testimonial-card.active {
        opacity: 1;
        transform: translateY(0);
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
        top: 1.25rem;
    }
    
    .testimonial-video-element,
    .testimonial-screenshot-image {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }
    
    .testimonial-quote {
        font-size: clamp(1.125rem, 4.5vw, 1.35rem);
        top: 70px;
        left: 1.25rem;
        right: 1.25rem;
        bottom: 92px;
    }
    
    .testimonial-name {
        bottom: 0.75rem;
        left: 1.25rem;
        right: 1.25rem;
        font-size: 0.8rem;
    }

    .testimonial-result {
        bottom: 2.5rem;
        font-size: 0.78rem;
    }
}

.testimonial-card.testimonial-screenshot,
.testimonial-card.testimonial-video {
    padding: 0;
}

@media (max-width: 768px) {
    .testimonial-card.testimonial-screenshot,
    .testimonial-card.testimonial-video {
        padding: 0;
    }
}

.testimonial-text {
    display: block;
    padding: 0;
}

.testimonial-text .testimonial-quote {
    position: absolute;
    top: 120px;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 96px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.testimonial-text .testimonial-name {
    position: absolute;
    top: calc(1.5rem + 50px + 0.5rem);
    left: 1.5rem;
    right: 1.5rem;
    text-align: center;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonial-text {
        padding: 0;
    }
    .testimonial-text .testimonial-quote {
        top: 100px;
        left: 1.25rem;
        right: 1.25rem;
        bottom: 92px;
    }
}

.solutions {
    padding: 4rem 0;
    gap: 1.33em;
}

.solutions h2 {
    text-align: center;
    margin-bottom: 1.25rem;
}

.solutions-tabs {
    display: flex;
    background: var(--rain);
    border-radius: 12px;
    padding: 0.375rem;
    margin: 0 auto;
    width: fit-content;
    gap: 0.25rem;
}

.solutions-tabs button[role="tab"] {
    background: transparent;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--slate);
    white-space: nowrap;
}

.solutions-tabs button[role="tab"][aria-selected="true"] {
    background: var(--clean);
    color: var(--abyss);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.solutions-tabs button[role="tab"]:hover:not([aria-selected="true"]) {
    color: var(--abyss);
    background: rgba(255, 255, 255, 0.5);
}

#tab-tools[hidden],
#tab-resources[hidden] {
    display: none;
}

#tab-tools:not([hidden]),
#tab-resources:not([hidden]) {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.3s ease forwards;
    pointer-events: auto;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tool-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.tool-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.tool-card-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.tool-card-title {
    color: var(--abyss);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.tool-card-description {
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tool-card {
        padding: 1.25rem;
    }
    
    .tool-card-image {
        width: 50px;
        height: 50px;
    }
    
    .tool-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .tool-card-title {
        font-size: 1rem;
    }
    
    .tool-card-description {
        font-size: 0.9rem;
    }
}


.problems-target {
    gap: 1em;
    padding-bottom: 3rem;
}

.problems-target h2 {
    text-align: center;
}

.problems-slider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

.slider-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.slider-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.slider-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.slide-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.slide-placeholder {
    font-size: 4rem;
    opacity: 0.8;
}

.slide-text {
    max-width: 600px;
}

.slide-text h3 {
    color: var(--abyss);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.slide-text p {
    color: var(--slate);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.slider-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
    opacity: 0.4;
    outline: none;
}

.slider-arrow:hover {
    opacity: 0.9;
}

.slider-arrow:focus {
    outline: none;
    opacity: 0.9;
}

.slider-arrow:active {
    opacity: 0.4;
}

.slider-arrow-icon {
    width: 36px;
    height: 36px;
}

.slider-arrow-icon.prev {
    transform: rotate(180deg);
}



.problems-target-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .problems-target {
        gap: 0;
    }
    
    .problems-slider {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    .slider-content {
        order: 1;
        width: 100%;
    }
    
    .slider-arrow {
        order: 2;
        position: static;
    }
    
    .slider-prev {
        display: none;
    }
    
    .problems-target-cta {
        order: 3;
    }
    
    .slider-content {
        min-height: 300px;
        touch-action: pan-y;
        position: relative;
    }
    
    .slider-slide {
        padding: 0;
        gap: 1.5rem;
        position: static;
        display: none;
    }
    
    .slider-slide.active {
        display: flex;
        position: static;
    }
    
    .slide-text h3 {
        font-size: 1.25rem;
    }
    
    .slide-text p {
        font-size: 1rem;
    }
    
    .slide-placeholder {
        font-size: 3rem;
    }
    
    .problems-target .problems-target-cta {
        margin-top: 2rem;
    }
}

.faq h2 {
    text-align: center;
}

.faq-list {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--rain);
    border-radius: 12px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--abyss);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question {
    border-radius: 12px;
}

.faq-question:hover {
    background-color: var(--white-80);
    border-radius: 12px;
}

.faq-item[open] .faq-question {
    border-radius: 12px 12px 0 0;
}

.faq-item[open] .faq-question:hover {
    background-color: var(--white-80);
    border-radius: 12px 12px 0 0;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--brand-pink-300);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 1.25rem 1.5rem;
    animation: fadeIn 0.3s ease;
}

.faq-answer p {
    margin: 0;
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 1rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .solutions {
        padding: 3rem 0;
    }
    
    .solutions h2 {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
    
    .solutions-tabs {
        margin: 0;
        width: auto;
    }
    
    .solutions-tabs button[role="tab"] {
        flex: 1;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}