/* =====================================================
   Tratabu Landing Page — front-page.php styles
   ===================================================== */

.tratabu-lp {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #222;
    line-height: 1.6;
}

.tratabu-lp * { box-sizing: border-box; }

/* HERO
   ===================================================== */
.tlp-hero {
    background: linear-gradient(135deg, #1a4a72 0%, #2878b8 100%);
    color: #fff;
    padding: 60px 0 50px;
}

.tlp-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.tlp-hero-text {
    flex: 0 0 48%;
}

.tlp-hero-text h1 {
    font-size: 2.1rem;
    line-height: 1.25;
    margin: 0 0 18px;
    color: #fff;
    font-weight: 700;
    text-shadow: none;
    border: none;
}

.tlp-hero-text h1 span {
    color: #7ecfff;
}

.tlp-hero-sub {
    font-size: 1.05rem;
    margin: 0 0 28px;
    color: #d0e8ff;
    line-height: 1.65;
}

.tlp-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.tlp-btn-primary {
    background: #f07830;
    color: #fff !important;
    padding: 13px 26px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.18s;
}
.tlp-btn-primary:hover { background: #d96820; color: #fff !important; }

.tlp-btn-secondary {
    background: rgba(255,255,255,0.12);
    color: #fff !important;
    padding: 13px 26px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none !important;
    border: 1.5px solid rgba(255,255,255,0.45);
    white-space: nowrap;
    transition: background 0.18s;
}
.tlp-btn-secondary:hover { background: rgba(255,255,255,0.22); }

.tlp-no-credit {
    font-size: 0.82rem;
    color: #b8d8f0;
    margin: 0;
}

.tlp-hero-img-wrap {
    flex: 1;
    min-width: 0;
}

.tlp-hero-img-wrap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    display: block;
}

.tlp-hero-placeholder {
    background: rgba(255,255,255,0.08);
    border: 2px dashed rgba(255,255,255,0.25);
    border-radius: 8px;
    padding: 60px 30px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* FEATURES
   ===================================================== */
.tlp-features {
    background: #f7f9fc;
    padding: 60px 0;
}

.tlp-features-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 30px;
}

.tlp-feature-card {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 30px 26px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.tlp-feature-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    line-height: 1;
}

.tlp-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #1a4a72;
    line-height: 1.35;
    text-shadow: none;
    border: none;
}

.tlp-feature-card p {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 18px;
    line-height: 1.6;
}

.tlp-feature-screenshot {
    margin-top: 18px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e0e8f0;
}

.tlp-feature-screenshot img {
    width: 100%;
    display: block;
}

.tlp-feature-placeholder {
    background: #f0f5fa;
    border: 2px dashed #c0d0e0;
    border-radius: 6px;
    padding: 40px 20px;
    text-align: center;
    color: #aabbcc;
    font-size: 0.8rem;
    margin-top: 18px;
}

/* FOR WHOM
   ===================================================== */
.tlp-forwho {
    background: #1a3a58;
    color: #fff;
    padding: 60px 0;
}

.tlp-forwho-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 30px;
}

.tlp-forwho h2 {
    font-size: 1.6rem;
    margin: 0 0 14px;
    color: #fff;
    font-weight: 700;
    text-shadow: none;
    border: none;
}

.tlp-forwho-lead {
    color: #c0d8f0;
    font-size: 1rem;
    margin: 0 0 24px;
    line-height: 1.65;
}

.tlp-target-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tlp-target-list li {
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #dceeff;
    font-size: 0.95rem;
    position: relative;
}

.tlp-target-list li:last-child { border-bottom: none; }

.tlp-target-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #7ecfff;
    font-weight: 700;
}

.tlp-target-list li strong {
    color: #fff;
    font-weight: 600;
}

/* FINAL CTA
   ===================================================== */
.tlp-final-cta {
    background: #fff;
    padding: 70px 0;
    text-align: center;
}

.tlp-final-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 30px;
}

.tlp-final-cta h2 {
    font-size: 1.6rem;
    color: #1a4a72;
    margin: 0 0 14px;
    font-weight: 700;
    text-shadow: none;
    border: none;
}

.tlp-final-cta p {
    color: #666;
    font-size: 1rem;
    margin: 0 0 28px;
}

.tlp-final-cta .tlp-cta-row {
    justify-content: center;
}

.tlp-btn-ghost {
    color: #1a4a72 !important;
    font-size: 0.9rem;
    text-decoration: underline !important;
    padding: 13px 10px;
    font-weight: 500;
}
.tlp-btn-ghost:hover { color: #0d2a45 !important; }

/* RESPONSIVE
   ===================================================== */
@media (max-width: 860px) {
    .tlp-hero-inner {
        flex-direction: column;
        gap: 36px;
    }
    .tlp-hero-text { flex: unset; width: 100%; }
    .tlp-hero-text h1 { font-size: 1.65rem; }
    .tlp-features-inner { flex-direction: column; }
    .tlp-hero-img-wrap { width: 100%; }
}
