/* DAISI Yeti landing page — mirrors daisi-business-crm/wwwroot/css/landing.css
   so the family-wide marketing surface stays visually consistent. */

.landing-page {
    background: #000;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-page h1,
.landing-page h2,
.landing-page h3 {
    font-family: 'Anta', sans-serif;
    letter-spacing: 0.02em;
}

.landing-page a {
    color: #f78c1d;
    text-decoration: none;
}

.landing-page a:hover {
    color: #ffad57;
}

/* --- Navigation --- */
.landing-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
}

.logo-img {
    height: 30px;
    width: auto;
}

.logo-yeti {
    font-family: 'Anta', sans-serif;
    font-size: 1.5rem;
    color: #f78c1d;
    letter-spacing: 0.08em;
}

.btn-login {
    padding: 0.45rem 1.4rem;
    border: 1px solid rgba(247, 140, 29, 0.5);
    border-radius: 6px;
    color: #f78c1d !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-login:hover {
    background: rgba(247, 140, 29, 0.1);
    border-color: #f78c1d;
    color: #ffad57 !important;
}

.btn-cta-sm {
    padding: 0.45rem 1.4rem;
    background: #f78c1d;
    color: #000 !important;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-cta-sm:hover {
    background: #ffad57;
    color: #000 !important;
}

/* --- Hero Section --- */
.hero-section {
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(247, 140, 29, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    position: relative;
}

.hero-section h1 .accent {
    color: #f78c1d;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-cta {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: #f78c1d;
    color: #000 !important;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-cta:hover {
    background: #ffad57;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(247, 140, 29, 0.3);
    color: #000 !important;
}

.btn-cta-ghost {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-cta-ghost:hover {
    border-color: rgba(247, 140, 29, 0.5);
    background: rgba(247, 140, 29, 0.08);
    color: #ffad57 !important;
}

/* --- Glass Card --- */
.glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.glass-card:hover {
    border-color: rgba(247, 140, 29, 0.25);
    box-shadow: 0 0 30px rgba(247, 140, 29, 0.06);
}

.hero-card {
    padding: 1.75rem;
}

.hero-card-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f78c1d;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-card-list li {
    padding: 0.45rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.hero-card-list i {
    color: #f78c1d;
}

/* --- Features Section --- */
.features-section {
    padding: 4rem 0;
}

.features-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.feature-icon {
    font-size: 2rem;
    color: #f78c1d;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

/* --- Why Section --- */
.why-section {
    padding: 4rem 0;
}

.why-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.why-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.differentiator-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.differentiator-list li {
    padding: 0.6rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.differentiator-list li i {
    color: #f78c1d;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* --- Customer Journey --- */
.journey-section {
    padding: 5rem 0;
}

.journey-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.journey-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
}

.journey-timeline {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.journey-step {
    position: relative;
}

.step-number {
    position: absolute;
    top: -0.75rem;
    left: -0.75rem;
    width: 2rem;
    height: 2rem;
    background: #f78c1d;
    color: #000;
    font-family: 'Anta', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.journey-card {
    padding: 1.5rem;
    height: 100%;
}

.journey-icon {
    font-size: 1.5rem;
    color: #f78c1d;
    margin-bottom: 0.75rem;
}

.journey-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.journey-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
}

/* --- Footer --- */
.landing-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: #f78c1d;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

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

    .features-section h2,
    .why-section h2,
    .journey-section h2 {
        font-size: 1.6rem;
    }

    .journey-timeline {
        grid-template-columns: 1fr;
    }

    .glass-card {
        padding: 1.5rem;
    }
}
