/**
 * Nomiss Theme - Section Styles (continued)
 *
 * @package Nomiss
 * @since 1.0.0
 */

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
    position: relative;
    background: var(--color-sky-pale);
    margin-top: -1px;
}

.features-decorations {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.features-decorations .decoration {
    position: absolute;
    color: rgba(63, 169, 214, 0.06);
}

.features-decorations .decoration-1 {
    top: 80px;
    right: -24px;
    width: 112px;
    height: 112px;
    transform: rotate(12deg);
}

.features-decorations .decoration-2 {
    bottom: 160px;
    left: -16px;
    width: 96px;
    height: 96px;
    transform: rotate(-12deg);
    display: none;
}

@media (min-width: 640px) {
    .features-decorations .decoration-1 {
        width: 144px;
        height: 144px;
    }
    .features-decorations .decoration-2 {
        display: block;
    }
}

@media (min-width: 768px) {
    .features-decorations .decoration-1 {
        right: -40px;
        width: 192px;
        height: 192px;
    }
    .features-decorations .decoration-2 {
        left: -32px;
        width: 128px;
        height: 128px;
    }
}

.features-inner {
    position: relative;
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .features-inner {
        padding: 4rem 0;
    }
}

@media (min-width: 768px) {
    .features-inner {
        padding: 5rem 0;
    }
}

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

@media (min-width: 640px) {
    .features-grid {
        gap: 1.25rem;
    }
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.feature-card {
    background: var(--color-white);
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

@media (min-width: 640px) {
    .feature-card {
        padding: 1.75rem;
    }
}

@media (min-width: 768px) {
    .feature-card {
        padding: 2rem;
    }
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.feature-card-last {
    grid-column: 1;
}

@media (min-width: 768px) {
    .feature-card-last {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-sky-pale);
    color: var(--color-sky);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 768px) {
    .feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
    }
}

.feature-card:hover .feature-icon {
    background: var(--color-sky);
    color: var(--color-white);
}

.feature-icon .icon {
    width: 24px;
    height: 24px;
}

@media (min-width: 640px) {
    .feature-icon .icon {
        width: 32px;
        height: 32px;
    }
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .feature-title {
        font-size: 18px;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 768px) {
    .feature-title {
        font-size: 20px;
    }
}

.feature-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-ink-60);
}

@media (min-width: 640px) {
    .feature-description {
        font-size: 16px;
        line-height: 1.9;
    }
}

/* ==========================================================================
   How To Use Section
   ========================================================================== */
.howto-section {
    background: var(--color-sky-fill);
    margin-top: -1px;
    padding-bottom: 3rem;
}

@media (min-width: 640px) {
    .howto-section {
        padding-bottom: 4rem;
    }
}

@media (min-width: 768px) {
    .howto-section {
        padding-bottom: 5rem;
    }
}

.howto-inner {
    padding-top: 2rem;
}

@media (min-width: 640px) {
    .howto-inner {
        padding-top: 3rem;
    }
}

@media (min-width: 768px) {
    .howto-inner {
        padding-top: 4rem;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .steps-grid {
        gap: 1rem;
    }
}

@media (min-width: 1180px) {
    .steps-grid {
        grid-template-columns: repeat(5, 1fr);
        max-width: none;
    }
}

.step-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .step-card {
        padding: 1.25rem;
    }
}

.step-card-last {
    grid-column: auto;
    max-width: none;
    margin: 0;
}

@media (min-width: 640px) {
    .step-card-last {
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .step-card-last {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.step-number {
    font-size: 20px;
    font-weight: 900;
    color: var(--color-sky);
    line-height: 1;
}

@media (min-width: 640px) {
    .step-number {
        font-size: 24px;
    }
}

.step-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sky-pale);
    color: var(--color-sky);
}

@media (min-width: 640px) {
    .step-icon {
        width: 40px;
        height: 40px;
    }
}

.step-icon .icon {
    width: 24px;
    height: 24px;
}

@media (min-width: 640px) {
    .step-icon .icon {
        width: 32px;
        height: 32px;
    }
}

.step-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--color-ink-60);
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .step-label {
        font-size: 11px;
    }
}

.step-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-ink);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .step-title {
        font-size: 14px;
    }
}

.step-description {
    flex: 1;
    font-size: 10px;
    line-height: 1.7;
    color: var(--color-ink-60);
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .step-description {
        font-size: 11px;
        line-height: 1.8;
    }
}

.step-tag {
    margin-top: auto;
    padding: 0.375rem 0.625rem;
    background: var(--color-sky-pale);
}

@media (min-width: 640px) {
    .step-tag {
        padding: 0.5rem 0.75rem;
    }
}

.step-tag span {
    font-size: 9px;
    font-weight: 500;
    color: var(--color-sky);
}

@media (min-width: 640px) {
    .step-tag span {
        font-size: 10px;
    }
}

.trust-strip {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .trust-strip {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

@media (min-width: 768px) {
    .trust-strip {
        gap: 2.5rem;
        margin-top: 2.5rem;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.trust-icon .icon {
    width: 20px;
    height: 20px;
}

.trust-text {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.375rem;
}

.trust-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
}

@media (min-width: 640px) {
    .trust-title {
        font-size: 16px;
    }
}

.trust-separator {
    color: rgba(255, 255, 255, 0.6);
}

.trust-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 640px) {
    .trust-description {
        font-size: 14px;
    }
}

.howto-cta-card {
    background: var(--color-white);
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .howto-cta-card {
        padding: 1.75rem;
        margin-top: 2rem;
    }
}

@media (min-width: 768px) {
    .howto-cta-card {
        padding: 2.5rem;
        margin-top: 2.5rem;
    }
}

.howto-cta-card .cta-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .howto-cta-card .cta-title {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .howto-cta-card .cta-title {
        font-size: 24px;
    }
}

.howto-cta-card .cta-description {
    font-size: 12px;
    color: var(--color-ink-60);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .howto-cta-card .cta-description {
        font-size: 15px;
        margin-bottom: 1.5rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }
}

/* ==========================================================================
   Media Section
   ========================================================================== */
.media-section {
    background: var(--color-sky-fill);
    margin-top: -1px;
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .media-section {
        padding: 4rem 0;
    }
}

@media (min-width: 768px) {
    .media-section {
        padding: 5rem 0;
    }
}

.media-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .media-header {
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) {
    .media-header {
        margin-bottom: 2.5rem;
    }
}

.media-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .media-title {
        font-size: 26px;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 768px) {
    .media-title {
        font-size: 36px;
    }
}

.media-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 640px) {
    .media-subtitle {
        font-size: 16px;
    }
}

.media-carousel {
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0 1.25rem 0.5rem;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

@media (min-width: 640px) {
    .carousel-track {
        gap: 1rem;
    }
}

@media (min-width: 1200px) {
    .carousel-track {
        padding: 0 calc((100vw - 1200px) / 2 + 64px) 0.5rem;
    }
}

.media-card {
    flex-shrink: 0;
    width: 240px;
    background: var(--color-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    scroll-snap-align: start;
}

@media (min-width: 640px) {
    .media-card {
        width: 280px;
        border-radius: 1rem;
    }
}

@media (min-width: 768px) {
    .media-card {
        width: 300px;
    }
}

.media-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.media-card-link {
    display: block;
}

.media-card-thumbnail {
    position: relative;
    height: 120px;
    background: var(--color-sky-pale);
    padding: 0.75rem;
}

@media (min-width: 640px) {
    .media-card-thumbnail {
        height: 150px;
        padding: 1rem;
    }
}

@media (min-width: 768px) {
    .media-card-thumbnail {
        height: 160px;
    }
}

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: var(--color-sky);
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    color: var(--color-white);
}

@media (min-width: 640px) {
    .category-badge {
        padding: 0.375rem 0.75rem;
        font-size: 12px;
    }
}

.media-card-icon {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.75rem;
}

@media (min-width: 640px) {
    .media-card-icon {
        bottom: 1rem;
        right: 1rem;
        width: 56px;
        height: 56px;
        border-radius: 1rem;
    }
}

.media-card-icon .icon {
    width: 20px;
    height: 20px;
    color: var(--color-sky);
}

@media (min-width: 640px) {
    .media-card-icon .icon {
        width: 28px;
        height: 28px;
    }
}

.media-card-content {
    padding: 0.75rem;
}

@media (min-width: 640px) {
    .media-card-content {
        padding: 1rem;
    }
}

@media (min-width: 768px) {
    .media-card-content {
        padding: 1.25rem;
    }
}

.media-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-ink);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .media-card-title {
        font-size: 16px;
        margin-bottom: 0.75rem;
    }
}

.media-card:hover .media-card-title {
    color: var(--color-sky);
}

.media-card-summary {
    font-size: 12px;
    line-height: 1.6;
    color: var(--color-ink-60);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 640px) {
    .media-card-summary {
        font-size: 14px;
        margin-bottom: 1rem;
    }
}

.media-card-more {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-sky) !important;
}

@media (min-width: 640px) {
    .media-card-more {
        font-size: 14px;
    }
}

.media-card-more .more-icon {
    display: inline-block;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    color: currentColor !important;
    stroke: currentColor !important;
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .media-card-more .more-icon {
        width: 16px;
        height: 16px;
    }
}

.media-card:hover .more-icon {
    transform: translateX(4px);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--color-ink);
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .carousel-nav {
        display: flex;
        width: 48px;
        height: 48px;
    }
}

.carousel-nav:hover {
    background: #2a3441;
}

.carousel-nav .icon {
    width: 20px;
    height: 20px;
}

@media (min-width: 640px) {
    .carousel-nav .icon {
        width: 24px;
        height: 24px;
    }
}

.carousel-prev {
    left: 0.5rem;
}

@media (min-width: 768px) {
    .carousel-prev {
        left: 2rem;
    }
}

.carousel-next {
    right: 0.5rem;
}

@media (min-width: 768px) {
    .carousel-next {
        right: 2rem;
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .carousel-dots {
        margin-top: 2rem;
    }
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .carousel-dot {
        width: 12px;
        height: 12px;
    }
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.carousel-dot.is-active {
    background: var(--color-white);
    transform: scale(1.1);
}

.media-cta {
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .media-cta {
        margin-top: 2.5rem;
    }
}

.media-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .media-cta-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    background: var(--color-white);
    margin-top: -1px;
}

.faq-inner {
    max-width: 900px;
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .faq-inner {
        padding: 4rem 0;
    }
}

@media (min-width: 768px) {
    .faq-inner {
        padding: 5rem 0;
    }
}

.faq-title {
    display: inline-block;
    font-size: 24px;
    border-bottom: 4px solid var(--color-sky);
    padding-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .faq-title {
        font-size: 28px;
    }
}

@media (min-width: 768px) {
    .faq-title {
        font-size: 32px;
    }
}

.faq-list {
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .faq-list {
        margin-top: 3rem;
    }
}

.faq-item {
    border-bottom: 1px solid var(--color-line);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.25rem 0;
    text-align: left;
}

@media (min-width: 640px) {
    .faq-question {
        gap: 1rem;
        padding: 1.5rem 0;
    }
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sky);
    border-radius: 50%;
}

@media (min-width: 640px) {
    .faq-icon {
        width: 32px;
        height: 32px;
    }
}

.faq-icon span {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
}

@media (min-width: 640px) {
    .faq-icon span {
        font-size: 16px;
    }
}

.faq-question-text {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-ink);
}

@media (min-width: 640px) {
    .faq-question-text {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .faq-question-text {
        font-size: 18px;
    }
}

.faq-toggle {
    flex-shrink: 0;
    color: var(--color-ink-60);
}

.faq-toggle .icon {
    width: 20px;
    height: 20px;
}

@media (min-width: 640px) {
    .faq-toggle .icon {
        width: 24px;
        height: 24px;
    }
}

.faq-toggle .toggle-minus {
    display: none;
}

.faq-item.is-open .toggle-plus {
    display: none;
}

.faq-item.is-open .toggle-minus {
    display: block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .faq-item.is-open .faq-answer {
        padding-bottom: 1.5rem;
    }
}

.faq-answer p {
    padding-left: 2.5rem;
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-ink-60);
}

@media (min-width: 640px) {
    .faq-answer p {
        padding-left: 3rem;
        font-size: 16px;
        line-height: 2;
    }
}

.faq-business-link {
    text-align: center;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .faq-business-link {
        margin-top: 3.5rem;
    }
}

.faq-business-text {
    font-size: 14px;
    color: var(--color-ink-60);
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .faq-business-text {
        font-size: 16px;
        margin-bottom: 1rem;
    }
}

/* ==========================================================================
   App Store Buttons
   ========================================================================== */
.app-store-btn,
.google-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: var(--color-ink);
    color: var(--color-white);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .app-store-btn,
    .google-play-btn {
        gap: 0.5rem;
        padding: 0.625rem 1rem;
    }
}

.app-store-btn:hover,
.google-play-btn:hover {
    background: #2a3441;
}

.app-store-btn.btn-sm,
.google-play-btn.btn-sm {
    padding: 0.375rem 0.625rem;
}

@media (min-width: 640px) {
    .app-store-btn.btn-sm,
    .google-play-btn.btn-sm {
        padding: 0.5rem 0.75rem;
    }
}

.app-icon {
    width: 16px;
    height: 16px;
}

@media (min-width: 640px) {
    .app-icon {
        width: 20px;
        height: 20px;
    }
}

.btn-sm .app-icon {
    width: 16px;
    height: 16px;
}

.app-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.app-label {
    font-size: 8px;
    opacity: 0.7;
    line-height: 1;
}

@media (min-width: 640px) {
    .app-label {
        font-size: 9px;
    }
}

.btn-sm .app-label {
    font-size: 8px;
}

.app-name {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .app-name {
        font-size: 14px;
    }
}

.btn-sm .app-name {
    font-size: 10px;
}

@media (min-width: 640px) {
    .btn-sm .app-name {
        font-size: 12px;
    }
}

/* ==========================================================================
   Business Page
   ========================================================================== */
.business-hero {
    background: var(--color-sky-pale);
    padding: 8rem 0 5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .business-hero {
        padding: 10rem 0 8rem;
    }
}

.business-hero-title {
    font-size: 36px;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .business-hero-title {
        font-size: 48px;
    }
}

.business-hero-description {
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-ink-60);
}

@media (min-width: 768px) {
    .business-hero-description {
        font-size: 18px;
    }
}

.business-hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .business-hero-buttons {
        flex-direction: row;
    }
}

.business-features {
    background: var(--color-white);
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .business-features {
        padding: 8rem 0;
    }
}

.business-features-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .business-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.business-feature-card {
    padding: 2rem;
    border: 1px solid var(--color-line);
    border-radius: 1rem;
}

.business-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 0.75rem;
}

.business-feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-ink-60);
}

.business-cta {
    background: var(--color-ink-deep);
    padding: 5rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .business-cta {
        padding: 8rem 0;
    }
}

.business-cta-title {
    font-size: 28px;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .business-cta-title {
        font-size: 36px;
    }
}

.business-cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   Blog Templates
   ========================================================================== */
.archive-page,
.single-post {
    padding-top: 6rem;
}

@media (min-width: 768px) {
    .archive-page,
    .single-post {
        padding-top: 8rem;
    }
}

.page-header {
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .page-header {
        margin-bottom: 3rem;
    }
}

.page-title {
    font-size: 28px;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 36px;
    }
}

.posts-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.post-card {
    background: var(--color-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.post-card-link {
    display: block;
}

.post-card-thumbnail {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

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

.post-card-thumbnail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sky-pale);
}

.post-card-thumbnail-placeholder .icon {
    width: 48px;
    height: 48px;
    color: var(--color-sky);
}

.post-card-content {
    padding: 1rem;
}

@media (min-width: 640px) {
    .post-card-content {
        padding: 1.25rem;
    }
}

.post-card-content .category-badge {
    margin-bottom: 0.5rem;
}

.post-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-ink);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.post-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-ink-60);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.post-card-date {
    font-size: 12px;
    color: var(--color-ink-muted);
}

.no-posts {
    padding: 4rem 0;
    text-align: center;
    color: var(--color-ink-60);
}

/* Single Post */
.single-container {
    max-width: 800px;
}

.single-header {
    margin-bottom: 2rem;
}

.single-header .category-badge {
    margin-bottom: 1rem;
}

.single-title {
    font-size: 28px;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .single-title {
        font-size: 36px;
    }
}

.single-meta {
    color: var(--color-ink-60);
}

.single-thumbnail {
    margin-bottom: 2rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

.single-content {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-ink);
}

.single-content h2 {
    font-size: 24px;
    margin: 2rem 0 1rem;
}

.single-content h3 {
    font-size: 20px;
    margin: 1.5rem 0 0.75rem;
}

.single-content p {
    margin-bottom: 1.5rem;
}

.single-content ul,
.single-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.single-content li {
    margin-bottom: 0.5rem;
}

.single-content ul li {
    list-style: disc;
}

.single-content ol li {
    list-style: decimal;
}

.single-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-line);
}

.single-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.tags-label {
    font-weight: 600;
    color: var(--color-ink);
}

.tag-link {
    padding: 0.25rem 0.75rem;
    background: var(--color-sky-pale);
    border-radius: 9999px;
    font-size: 14px;
    color: var(--color-sky);
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--color-sky);
    color: var(--color-white);
}

.related-posts {
    background: var(--color-sky-pale);
    padding: 4rem 0;
    margin-top: 4rem;
}

.related-title {
    font-size: 24px;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.related-card {
    background: var(--color-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.related-card-thumbnail {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.related-card-title {
    padding: 1rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-ink);
}

.single-cta {
    background: var(--color-sky-fill);
    padding: 4rem 0;
}

.single-cta-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.single-cta-title {
    font-size: 20px;
    margin-bottom: 0.75rem;
}

.single-cta-description {
    font-size: 14px;
    color: var(--color-ink-60);
    margin-bottom: 1.5rem;
}

.single-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .single-cta-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }
}

/* Pagination */
.navigation.pagination {
    margin: 2rem 0;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: 0.5rem;
    font-size: 14px;
    color: var(--color-ink);
    transition: all 0.3s ease;
}

.page-numbers:hover {
    border-color: var(--color-sky);
    color: var(--color-sky);
}

.page-numbers.current {
    background: var(--color-sky);
    border-color: var(--color-sky);
    color: var(--color-white);
}

/* ==========================================================================
   Phone Mockup (fallback when no video)
   ========================================================================== */
.phone-mockup {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.52) 0 12%, transparent 13%),
        linear-gradient(160deg, #e8f7ff 0%, #8fd2f2 48%, var(--color-sky-fill) 100%);
    border-radius: 24px;
}

.phone-mockup::before {
    content: 'Nomiss LIVE';
    position: absolute;
    top: 4.75rem;
    left: 1rem;
    right: 1rem;
    padding: 0.7rem 0.85rem;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 16px;
    color: var(--color-ink);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(20, 25, 34, 0.12);
}

.phone-mockup::after {
    content: '商品を紹介中';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1.1rem;
    padding: 0.75rem 0.85rem;
    background: rgba(20, 25, 34, 0.92);
    border-radius: 16px;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.mockup-header {
    padding: 1rem;
}

.mockup-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: #ef4444;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white);
}

.mockup-live-badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.mockup-content {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-content::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 50%;
    width: 54%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.55)),
        linear-gradient(135deg, var(--color-sky-pale), var(--color-white));
    box-shadow: 0 16px 40px rgba(20, 25, 34, 0.14);
}

.mockup-play-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--color-sky);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Media CTA Label
   ========================================================================== */
.media-cta-label {
    display: block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
}

@media (min-width: 640px) {
    .media-cta-label {
        font-size: 16px;
    }
}

/* ==========================================================================
   Media Card Disabled State
   ========================================================================== */
.media-card-more--disabled {
    color: var(--color-ink-muted);
    font-weight: 500;
}

/* ==========================================================================
   Mobile QA Refinements
   ========================================================================== */
.desktop-only {
    display: none !important;
}

.mobile-only {
    display: block !important;
}

.sell-video.desktop-only,
.sell-header.desktop-only {
    display: none !important;
}

.phone-frame {
    border: 8px solid var(--color-ink);
    background: var(--color-ink);
    box-shadow: 0 18px 48px rgba(20, 25, 34, 0.22);
}

.phone-video,
.phone-mockup {
    border-radius: 26px;
}

@media (max-width: 639px) {
    .nomiss-lp-main .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .section-header {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.6rem;
    }

    .section-title {
        font-size: 25px;
        line-height: 1.25;
    }

    .section-description {
        font-size: 13px;
        line-height: 1.75;
    }

    .hero-inner {
        padding-top: 0.25rem;
        padding-bottom: 1.25rem;
    }

    .hero-content-wrapper {
        gap: 0.65rem;
    }

    .hero-title {
        margin-bottom: 0.75rem;
        font-size: 25px;
        line-height: 1.18;
    }

    .hero-description {
        max-width: 335px;
        margin-bottom: 1rem;
        font-size: 13px;
        line-height: 1.75;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 320px);
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0.85rem;
        gap: 0.5rem;
    }

    .hero-buttons .app-store-btn,
    .hero-buttons .google-play-btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
        gap: 0.3rem;
        padding: 0.45rem 0.45rem;
        border-radius: 10px;
    }

    .hero-buttons .app-icon {
        width: 15px;
        height: 15px;
    }

    .hero-buttons .app-label {
        font-size: 7px;
    }

    .hero-buttons .app-name {
        font-size: 11px;
        white-space: nowrap;
    }

    .hero-animation {
        z-index: 12;
        margin-top: 0.15rem;
        margin-bottom: -2.8rem;
    }

    .lottie-container {
        width: min(330px, 86vw);
    }

    .hero-curve {
        height: 128px;
    }

    .live-inner {
        padding: 2.5rem 0;
    }

    .live-cards-container {
        max-width: 336px;
        margin-left: auto;
        margin-right: auto;
    }

    .live-cards-row {
        grid-template-columns: repeat(2, minmax(0, 152px));
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 0.85rem;
    }

    .live-card-thumbnail {
        border-radius: 14px;
    }

    .live-card-title {
        font-size: 12px;
    }

    .live-card-meta {
        gap: 0.25rem;
    }

    .live-date,
    .live-store {
        font-size: 10px;
    }

    .live-cards-fade {
        max-height: 118px;
    }

    .live-cards-cta .btn {
        padding: 0.7rem 1rem;
        font-size: 12px;
        white-space: nowrap;
    }

    .sell-inner {
        padding: 2.4rem 0;
    }

    .sell-header {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.25rem;
    }

    .sell-video.mobile-only {
        display: flex !important;
        margin: 1.25rem auto 2rem;
    }

    .sell-video.desktop-only {
        display: none !important;
    }

    .phone-frame {
        width: 176px;
        height: 340px;
        border-width: 8px;
        border-radius: 34px;
    }

    .phone-video,
    .phone-mockup {
        border-radius: 24px;
    }

    .sell-content-wrapper {
        gap: 1.25rem;
    }

    .sell-content {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .benefits-grid {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
        gap: 0.85rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        gap: 0.85rem;
    }

    .step-card,
    .step-card-last {
        grid-column: auto;
        max-width: none;
        margin: 0;
        padding: 1rem;
        border-radius: 6px;
    }

    .step-title {
        font-size: 15px;
    }

    .step-description {
        font-size: 12px;
        line-height: 1.75;
    }

    .step-tag span {
        font-size: 10px;
    }

    .trust-strip,
    .howto-cta-card {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons,
    .media-cta-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100%, 320px);
        gap: 0.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons .app-store-btn,
    .cta-buttons .google-play-btn,
    .media-cta-buttons .app-store-btn,
    .media-cta-buttons .google-play-btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
        padding-left: 0.45rem;
        padding-right: 0.45rem;
    }

    .media-carousel {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .carousel-track {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .media-card {
        width: 280px;
    }

}

@media (min-width: 1024px) {
    .desktop-only {
        display: inline !important;
    }

    .mobile-only {
        display: none !important;
    }

    .sell-header.desktop-only {
        display: block !important;
    }

    .sell-video.desktop-only {
        display: flex !important;
    }

    .sell-video.mobile-only {
        display: none !important;
    }
}

/* ==========================================================================
   Kadence Preview Overrides
   ========================================================================== */
.nomiss-lp-main,
.nomiss-lp-main p,
.nomiss-lp-main span,
.nomiss-lp-main a,
.nomiss-lp-main button,
.nomiss-lp-main li {
    font-family: var(--font-sans) !important;
}

.nomiss-lp-main h1,
.nomiss-lp-main h2,
.nomiss-lp-main h3,
.nomiss-lp-main h4,
.nomiss-lp-main h5,
.nomiss-lp-main h6 {
    font-family: var(--font-heading) !important;
}

.nomiss-lp-main .font-inter {
    font-family: var(--font-inter) !important;
}

.nomiss-lp-main .hero-title,
.nomiss-lp-main .section-title,
.nomiss-lp-main .sell-subtitle,
.nomiss-lp-main .feature-title,
.nomiss-lp-main .benefit-title,
.nomiss-lp-main .step-title,
.nomiss-lp-main .faq-title,
.nomiss-lp-main .faq-question-text,
.nomiss-lp-main .media-card-title {
    color: var(--color-ink) !important;
}

.nomiss-lp-main .text-sky,
.nomiss-lp-main .hero-eyebrow,
.nomiss-lp-main .section-eyebrow.text-sky,
.nomiss-lp-main .media-card-more,
.nomiss-lp-main .step-number,
.nomiss-lp-main .step-tag span {
    color: var(--color-sky) !important;
}

.nomiss-lp-main .hero-description,
.nomiss-lp-main .section-description,
.nomiss-lp-main .sell-description,
.nomiss-lp-main .feature-description,
.nomiss-lp-main .benefit-description,
.nomiss-lp-main .step-label,
.nomiss-lp-main .step-description,
.nomiss-lp-main .faq-answer p,
.nomiss-lp-main .media-card-summary {
    color: var(--color-ink-60) !important;
}

.nomiss-lp-main .live-section .section-title,
.nomiss-lp-main .live-section .section-eyebrow,
.nomiss-lp-main .live-section .section-description,
.nomiss-lp-main .howto-section .section-title,
.nomiss-lp-main .howto-section .section-eyebrow,
.nomiss-lp-main .howto-section .section-description,
.nomiss-lp-main .media-section .media-title,
.nomiss-lp-main .media-section .media-subtitle,
.nomiss-lp-main .text-white,
.nomiss-lp-main .live-card-title,
.nomiss-lp-main .live-date,
.nomiss-lp-main .live-store,
.nomiss-lp-main .live-text,
.nomiss-lp-main .trust-title,
.nomiss-lp-main .trust-description {
    color: var(--color-white) !important;
}

.nomiss-lp-main .app-store-btn,
.nomiss-lp-main .google-play-btn,
.nomiss-lp-main .app-store-btn *,
.nomiss-lp-main .google-play-btn *,
.nomiss-lp-main .btn-primary,
.nomiss-lp-main .btn-primary * {
    color: var(--color-white) !important;
}

.nomiss-lp-main .media-card-more .icon,
.nomiss-lp-main .media-card-more svg {
    color: currentColor !important;
    stroke: currentColor !important;
}
