/*
 * Signboard V2 Stylesheet — merge version REV.04
 * Layout source: UPDATE REV.04 main.css
 * Production target: main.css for hardsale-salepage-signboard
 * Note: old deck/slide CSS from UPDATE main.css was intentionally removed.
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Prompt:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #E11D2E;
    --primary-hover: #b81524;
    --ink-color: #0f172a;
    --ink-hover: #1e293b;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --font-heading: 'Outfit', 'Prompt', sans-serif;
    --font-body: 'Prompt', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--ink-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-primary,
.red {
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.pb-0 {
    padding-bottom: 0 !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-normal);
    cursor: pointer;
    gap: 8px;
    font-size: 16px;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--bg-white);
}

.btn-ink {
    background-color: var(--ink-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.btn-ink:hover {
    background-color: var(--ink-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--bg-white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--ink-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: rgba(225, 29, 46, 0.05);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.nav-brand img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--ink-color);
    font-size: 15px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink-color);
}

.hero {
    padding: 160px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(225, 29, 46, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.hero-content,
.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0 auto 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    margin-top: 40px;
}

.hero-image-wrapper img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
}

.tickler-wrap {
    background-color: var(--ink-color);
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    white-space: nowrap;
}

.tickler-track {
    display: flex;
    animation: scrollTickler 30s linear infinite;
}

.tickler-item {
    font-weight: 500;
    padding: 0 2rem;
    font-size: 14px;
}

@keyframes scrollTickler {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.stat-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-size: 14px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-color);
}

.feature-img {
    height: 200px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.05);
}

.feature-content {
    padding: 30px;
    flex-grow: 1;
}

.feature-num {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 2rem;
    opacity: 0.2;
    margin-bottom: -10px;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.feature-content p {
    color: var(--text-muted);
}

.step-grid {
    display: grid;
    gap: 60px;
}

.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.step-row:nth-child(even) .step-content {
    order: 2;
}

.step-row:nth-child(even) .step-image {
    order: 1;
}

.step-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(225, 29, 46, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.step-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.step-image img {
    border-radius: var(--radius-lg);
}

.banner-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 40px 0;
}

.device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.device-card {
    padding: 30px;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.download-card {
    background: var(--ink-color);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    color: white;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.download-card::after {
    content: '';
    position: absolute;
    right: -10%;
    bottom: -20%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(225, 29, 46, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.download-content,
.download-image {
    position: relative;
    z-index: 1;
}

.download-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
}

.store-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.store-btn,
.footer-store-link {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.store-btn:hover,
.footer-store-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.store-btn img {
    width: 40px;
}

.store-info span,
.footer-store-link span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.store-info strong,
.footer-store-link strong {
    font-size: 18px;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 24px;
}

.contact-icon.line {
    background: #e6f6ec;
    color: #00B900;
}

.contact-icon.fb {
    background: #e5f1ff;
    color: #1877F2;
}

.contact-icon.phone {
    background: rgba(225, 29, 46, 0.1);
    color: var(--primary-color);
}

.contact-card h3 {
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.contact-cta {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-cta.line {
    color: #00B900;
}

.contact-cta.fb {
    color: #1877F2;
}

.contact-cta.phone {
    color: var(--primary-color);
}

.footer {
    background-color: var(--ink-color);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a {
    margin-left: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: white;
}

.chatbot-fab-group {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.chatbot-fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease;
}

.chatbot-fab:hover {
    transform: scale(1.1);
}

.fab-facebook {
    background-color: #1877F2;
}

.fab-line {
    background-color: #00B900;
}

.fab-phone {
    background-color: #E11D2E;
}

.fab-globe {
    background-color: #0f172a;
}

.chatbot-label {
    position: absolute;
    right: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.chatbot-fab:hover .chatbot-label {
    opacity: 1;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .stats-grid,
    .download-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .step-row {
        grid-template-columns: 1fr;
    }

    .step-row:nth-child(even) .step-content,
    .step-row:nth-child(even) .step-image {
        order: initial;
    }

    .download-card {
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 120px 0 70px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .feature-grid,
    .device-grid,
    .contact-grid,
    .footer-grid,
    .footer-app-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 10px;
    }
}

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

    .section-padding {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 2.15rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .download-card {
        padding: 34px 22px;
    }

    .chatbot-fab-group {
        right: 14px;
        bottom: 14px;
    }
}