/* ═══════════════════════════════════════════════════════════════
   TNC Landing Pro — Landing Page Styles
   ═══════════════════════════════════════════════════════════════ */

:root {
    --tn-primary: #da0723;
    --tn-primary-hover: #b8061d;
    --tn-navy: #0B1F3A;
    --tn-dark: #1a1a2e;
    --tn-body: #4B5563;
    --tn-muted: #6b7280;
    --tn-light: #F5F7FA;
    --tn-card: #ffffff;
    --tn-border: rgba(15,23,42,.08);
    --tn-shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --tn-shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --tn-shadow-lg: 0 12px 40px rgba(0,0,0,.1);
    --tn-radius: 12px;
    --tn-radius-sm: 8px;
    --tn-wrap: 1200px;
    --tn-font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body.tnlp-body {
    font-family: var(--tn-font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--tn-body);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.tnlp-wrap {
    max-width: var(--tn-wrap);
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══════ HEADER ═══════ */
.tnlp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--tn-border);
    box-shadow: 0 2px 12px rgba(0,0,0,.03);
}

.tnlp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    gap: 16px;
    min-height: 56px;
}

.tnlp-header__brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-width: 160px;
}

.tnlp-header .tnlp-header__logo {
    height: 34px !important;
    width: auto !important;
    max-width: 160px !important;
    max-height: 34px !important;
    object-fit: contain;
    display: block;
}

.tnlp-header__nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.tnlp-header__nav a {
    font-size: 13px;
    font-weight: 600;
    color: rgba(11,31,58,.75);
    transition: color .2s;
}

.tnlp-header__nav a:hover { color: var(--tn-primary); }

.tnlp-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tnlp-lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
}

.tnlp-lang-toggle img { border-radius: 2px; }

.tnlp-btn--wa-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #25d366;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: background .2s, transform .15s;
}

.tnlp-btn--wa-header:hover {
    background: #1da851;
    transform: translateY(-1px);
}

.tnlp-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.tnlp-header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--tn-navy);
    border-radius: 2px;
    transition: .25s;
}

/* ═══════ BUTTONS ═══════ */
.tnlp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--tn-font);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--tn-radius-sm);
    border: 3px solid transparent;
    cursor: pointer;
    transition: all .2s ease;
    text-decoration: none;
    line-height: 1.2;
}

.tnlp-btn--primary {
    background: var(--tn-primary);
    color: #fff;
}

.tnlp-btn--primary:hover {
    background: #fff;
    color: var(--tn-primary);
    border: 3px solid var(--tn-primary);
    transform: translateY(-1px);
}

.tnlp-btn--dark {
    background: var(--tn-navy);
    color: #fff;
}

.tnlp-btn--dark:hover {
    background: #fff;
    color: var(--tn-navy);
    border: 3px solid var(--tn-navy);
    transform: translateY(-1px);
}

.tnlp-btn--white {
    background: #fff;
    color: var(--tn-primary);
    font-weight: 700;
}

.tnlp-btn--white:hover {
    background: #f9fafb;
    transform: translateY(-1px);
}

.tnlp-btn--full { width: 100%; }

/* ═══════ BADGE ═══════ */
.tnlp-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(218,7,35,.1);
    color: var(--tn-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    border-radius: 20px;
}

.tnlp-badge--outline {
    background: transparent;
    border: 1px solid var(--tn-primary);
}

/* ═══════ HERO ═══════ */
.tnlp-hero {
    padding: 60px 0 40px;
    background: #fff;
}

.tnlp-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.tnlp-hero__left { max-width: 560px; }

.tnlp-hero__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--tn-navy);
    line-height: 1.15;
    margin: 16px 0 16px;
}

.tnlp-hero__title strong {
    color: var(--tn-primary);
}

.tnlp-hero__desc {
    font-size: 16px;
    color: var(--tn-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.tnlp-hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.tnlp-hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.tnlp-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--tn-muted);
}

.tnlp-hero__media {
    border-radius: var(--tn-radius);
    overflow: hidden;
    box-shadow: var(--tn-shadow-lg);
}

.tnlp-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* ═══════ SECTIONS ═══════ */
.tnlp-section {
    padding: 72px 0;
}

.tnlp-section--white { background: #fff; }
.tnlp-section--light { background: var(--tn-light); }
.tnlp-section--dark  { background: var(--tn-navy); color: #fff; }

.tnlp-section__title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--tn-navy);
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
}

.tnlp-section--dark .tnlp-section__title { color: #fff; }

.tnlp-section__title--left { text-align: left; }

.tnlp-section__subtitle {
    font-size: 15px;
    color: var(--tn-muted);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* ═══════ GRID ═══════ */
.tnlp-grid {
    display: grid;
    gap: 24px;
}

.tnlp-grid--4 { grid-template-columns: repeat(4, 1fr); }
.tnlp-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ═══════ CARDS ═══════ */
.tnlp-card {
    background: var(--tn-card);
    border: 1px solid var(--tn-border);
    border-radius: var(--tn-radius);
    padding: 28px 24px;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}

.tnlp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tn-shadow-md);
}

.tnlp-card__icon {
    display: block;
    font-size: 36px;
    margin-bottom: 16px;
}

.tnlp-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--tn-navy);
    margin-bottom: 8px;
}

.tnlp-card__desc {
    font-size: 13px;
    color: var(--tn-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.tnlp-card__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--tn-primary);
    transition: color .2s;
}

.tnlp-card__link:hover { color: var(--tn-primary-hover); }

/* ═══════ SPLIT (Eligibility + Process) ═══════ */
.tnlp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

/* Checklist */
.tnlp-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tnlp-checklist li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.tnlp-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(218,7,35,.1);
    color: var(--tn-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

.tnlp-checklist strong {
    display: block;
    font-size: 15px;
    color: var(--tn-navy);
    margin-bottom: 4px;
}

.tnlp-checklist p {
    font-size: 13px;
    color: var(--tn-muted);
    line-height: 1.5;
}

/* Steps */
.tnlp-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tnlp-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tnlp-step__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--tn-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.tnlp-step strong {
    display: block;
    font-size: 16px;
    color: var(--tn-navy);
    margin-bottom: 2px;
}

.tnlp-step__time {
    font-size: 12px;
    color: var(--tn-primary);
    font-weight: 600;
    margin-bottom: 6px;
}

.tnlp-step p:last-child {
    font-size: 13px;
    color: var(--tn-muted);
    line-height: 1.5;
}

/* ═══════ LEAD FORM SECTION ═══════ */
.tnlp-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

.tnlp-form-layout__title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 28px;
}

.tnlp-reason {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 18px;
    background: rgba(255,255,255,.06);
    border-radius: var(--tn-radius-sm);
    border: 1px solid rgba(255,255,255,.08);
}

.tnlp-reason__icon { font-size: 24px; flex-shrink: 0; }

.tnlp-reason strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.tnlp-reason p {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
}

/* Form card */
.tnlp-form-card {
    background: #fff;
    border-radius: var(--tn-radius);
    padding: 32px;
    box-shadow: var(--tn-shadow-lg);
}

.tnlp-form-card__title {
    font-size: 22px;
    font-weight: 800;
    color: var(--tn-navy);
    margin-bottom: 4px;
}

.tnlp-form-card__subtitle {
    font-size: 14px;
    color: var(--tn-muted);
    margin-bottom: 24px;
}

.tnlp-form__row { display: grid; gap: 16px; }
.tnlp-form__row--2 { grid-template-columns: 1fr 1fr; }

.tnlp-field {
    margin-bottom: 16px;
}

.tnlp-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--tn-navy);
    margin-bottom: 6px;
}

.tnlp-field input,
.tnlp-field select,
.tnlp-field textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--tn-font);
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: var(--tn-radius-sm);
    background: #fff;
    color: var(--tn-navy);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.tnlp-field input:focus,
.tnlp-field select:focus {
    border-color: var(--tn-primary);
    box-shadow: 0 0 0 3px rgba(218,7,35,.1);
}

.tnlp-field input.tnlp-error,
.tnlp-field select.tnlp-error {
    border-color: var(--tn-primary);
}

.tnlp-field .tnlp-error-msg {
    font-size: 12px;
    color: var(--tn-primary);
    margin-top: 4px;
}

.tnlp-radio-group {
    display: flex;
    gap: 16px;
    padding-top: 8px;
}

.tnlp-radio {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    cursor: pointer;
}

.tnlp-radio input { width: auto; margin: 0; }

.tnlp-field--checkbox label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 400;
    cursor: pointer;
}

.tnlp-field--checkbox input { width: auto; margin-top: 3px; flex-shrink: 0; }

.tnlp-field--checkbox span {
    font-size: 12px;
    color: var(--tn-muted);
    line-height: 1.5;
}

.tnlp-field--checkbox a { color: var(--tn-primary); text-decoration: underline; }

/* Form success */
.tnlp-form-success {
    text-align: center;
    padding: 40px 20px;
}

.tnlp-form-success__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.tnlp-form-success h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--tn-navy);
    margin-bottom: 8px;
}

.tnlp-form-success p {
    font-size: 15px;
    color: var(--tn-muted);
    margin-bottom: 24px;
}

/* ═══════ EXPERTISE ═══════ */
.tnlp-expertise__header {
    text-align: center;
    margin-bottom: 40px;
}

.tnlp-expertise__header .tnlp-badge { margin-bottom: 16px; }

.tnlp-feature-card {
    background: var(--tn-card);
    border: 1px solid var(--tn-border);
    border-radius: var(--tn-radius);
    padding: 28px 24px;
    text-align: center;
}

.tnlp-feature-card__icon {
    display: block;
    font-size: 32px;
    margin-bottom: 16px;
}

.tnlp-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--tn-navy);
    margin-bottom: 4px;
}

.tnlp-feature-card__sub {
    font-size: 11px;
    font-weight: 700;
    color: var(--tn-muted);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tnlp-feature-card p:last-of-type {
    font-size: 13px;
    color: var(--tn-muted);
    line-height: 1.5;
}

.tnlp-icc-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    background: var(--tn-light);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--tn-navy);
}

.tnlp-consultant {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.tnlp-consultant__photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--tn-primary);
}

.tnlp-consultant__info strong {
    display: block;
    font-size: 14px;
    color: var(--tn-navy);
}

.tnlp-consultant__info span {
    font-size: 13px;
    color: var(--tn-muted);
}

/* Process cards */
.tnlp-process-card {
    text-align: center;
    padding: 24px;
}

.tnlp-process-card__icon {
    display: block;
    font-size: 32px;
    margin-bottom: 16px;
}

.tnlp-process-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--tn-navy);
    margin-bottom: 8px;
}

.tnlp-process-card p {
    font-size: 13px;
    color: var(--tn-muted);
    line-height: 1.5;
}

/* ═══════ CONTENT BLOCK ═══════ */
.tnlp-content-block {
    max-width: 800px;
}

.tnlp-content-block h2 { text-align: left; margin-bottom: 20px; }

.tnlp-content-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--tn-navy);
    margin: 28px 0 12px;
}

.tnlp-content-block p {
    font-size: 15px;
    color: var(--tn-body);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ═══════ FAQ ═══════ */
.tnlp-faq {
    max-width: 760px;
    margin: 0 auto;
}

.tnlp-faq__item {
    border-bottom: 1px solid #e5e7eb;
}

.tnlp-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--tn-navy);
    transition: color .2s;
}

.tnlp-faq__question::-webkit-details-marker { display: none; }
.tnlp-faq__question::marker { display: none; content: ''; }

.tnlp-faq__question:hover { color: var(--tn-primary); }

.tnlp-faq__chevron {
    flex-shrink: 0;
    transition: transform .25s ease;
}

details[open] .tnlp-faq__chevron { transform: rotate(180deg); }

.tnlp-faq__answer {
    padding: 0 0 20px;
}

.tnlp-faq__answer p {
    font-size: 14px;
    color: var(--tn-muted);
    line-height: 1.6;
}

/* ═══════ CTA BANNER ═══════ */
.tnlp-cta-banner {
    background: var(--tn-primary);
    padding: 48px 0;
}

.tnlp-cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.tnlp-cta-banner h2 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
}

/* ═══════ VIDEO ═══════ */
.tnlp-video-container {
    position: relative;
    border-radius: var(--tn-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #000;
}

.tnlp-video-poster {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.tnlp-video-play {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform .2s;
}

.tnlp-video-play:hover { transform: scale(1.1); }

.tnlp-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tnlp-video-iframe iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    border: 0;
}

/* ═══════ FOOTER ═══════ */
.tnlp-footer {
    background: var(--tn-navy);
    color: rgba(255,255,255,.7);
    padding: 56px 0 0;
}

.tnlp-footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.tnlp-footer .tnlp-footer__logo {
    height: 28px !important;
    width: auto !important;
    max-width: 140px !important;
    max-height: 28px !important;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.tnlp-footer__brand p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.tnlp-footer__social {
    display: flex;
    gap: 12px;
}

.tnlp-footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    transition: background .2s, color .2s;
}

.tnlp-footer__social a:hover { background: var(--tn-primary); color: #fff; }

.tnlp-footer__col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.tnlp-footer__col ul { list-style: none; }

.tnlp-footer__col li {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.tnlp-footer__col a:hover { color: #fff; }

.tnlp-footer__bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}

.tnlp-footer__bottom p {
    font-size: 12px;
    color: rgba(255,255,255,.4);
    text-align: center;
    line-height: 1.5;
}

/* ═══════ STATS BAND ═══════ */
.tnlp-stats-band {
    background: #405363;
    padding: 52px 0;
}
.tnlp-stats-band__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.tnlp-stat {
    padding: 20px 24px;
    border-right: 1px solid rgba(255,255,255,.15);
}
.tnlp-stat:last-child { border-right: none; }
.tnlp-stat__value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.tnlp-stat__value em {
    color: var(--tn-primary);
    font-style: normal;
}
.tnlp-stat__label {
    font-size: 0.8rem;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ═══════ TESTIMONIALS ═══════ */
.tnlp-testimonials {
    padding: 64px 0;
    background: #f9fafb;
    overflow: hidden;
}
.tnlp-testimonials__header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}
.tnlp-testimonials__track-wrap {
    overflow: hidden;
    position: relative;
}
.tnlp-testimonials__track-wrap::before,
.tnlp-testimonials__track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.tnlp-testimonials__track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #f9fafb, transparent);
}
.tnlp-testimonials__track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #f9fafb, transparent);
}
.tnlp-testimonials__track {
    display: flex;
    gap: 20px;
    padding: 8px 20px;
    width: max-content;
    animation: tnlp-marquee 48s linear infinite;
    cursor: grab;
    user-select: none;
}
.tnlp-testimonials__track:hover { animation-play-state: paused; }
.tnlp-testimonials__track:active { cursor: grabbing; }
@keyframes tnlp-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.tnlp-tcard {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 3px solid #da0723;
    border-radius: 12px;
    padding: 24px;
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    flex-direction: column;
    display: flex;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    transition: transform .2s ease, box-shadow .2s ease;
}
.tnlp-tcard:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
.tnlp-tcard__badge {
    display: inline-block;
    background: #f0f4f7;
    color: #405363;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.tnlp-tcard__stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    margin-bottom: 12px;
    font-size: 14px;
}
.tnlp-tcard__text {
    font-size: 0.875rem;
    color: #4B4B4B;
    line-height: 1.65;
    margin-bottom: 16px;
    font-style: italic;
}
.tnlp-tcard__author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tnlp-tcard__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #405363;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.tnlp-tcard__name { font-weight: 600; font-size: 0.875rem; color: #0B1F3A; }
.tnlp-tcard__origin { font-size: 0.75rem; color: #75767A; }

/* ═══════ ENGLISH NOTICE ═══════ */
.tnlp-ennotice {
    overflow: hidden;
}
.tnlp-ennotice__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

/* — Left panel (light) — */
.tnlp-ennotice__panel--dark {
    background: #fff;
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    border-right: 1px solid #e5e7eb;
}
.tnlp-ennotice__tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 28px;
}
.tnlp-ennotice__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.tnlp-ennotice__dot--fr { background: #3b82f6; }
.tnlp-ennotice__dot--en { background: #10b981; }
.tnlp-ennotice__sep { color: #d1d5db; margin: 0 4px; }
.tnlp-ennotice__heading {
    font-size: 2rem;
    font-weight: 700;
    color: #0B1F3A;
    line-height: 1.25;
    margin-bottom: 20px;
}
.tnlp-ennotice__heading-accent {
    color: #10b981;
}
.tnlp-ennotice__lead {
    font-size: 0.9375rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 32px;
}
.tnlp-ennotice__scenarios {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}
.tnlp-ennotice__scenario {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px 16px;
    transition: border-color .2s ease;
}
.tnlp-ennotice__scenario:hover { border-color: #10b981; }
.tnlp-ennotice__scenario-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(16,185,129,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #10b981;
}
.tnlp-ennotice__scenario-label {
    font-size: 13px;
    font-weight: 600;
    color: #0B1F3A;
    margin-bottom: 3px;
}
.tnlp-ennotice__scenario-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}
.tnlp-ennotice__note {
    font-size: 13px;
    color: #9ca3af;
    font-style: italic;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    margin-top: 4px;
}

/* — Right panel — */
.tnlp-ennotice__panel--light {
    background: #f8fafc;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}
.tnlp-ennotice__metric-wrap {
    text-align: center;
}
.tnlp-ennotice__big-number {
    font-size: 5rem;
    font-weight: 800;
    color: #0B1F3A;
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 6px;
}
.tnlp-ennotice__big-number span {
    font-size: 2.5rem;
    color: #34d399;
    font-weight: 700;
}
.tnlp-ennotice__big-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

/* Progress bar */
.tnlp-ennotice__bar-wrap { padding: 0 4px; }
.tnlp-ennotice__bar-scale {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #9ca3af;
    font-weight: 500;
    margin-bottom: 10px;
}
.tnlp-ennotice__bar-track {
    position: relative;
    height: 10px;
    background: #e2e8f0;
    border-radius: 99px;
}
.tnlp-ennotice__bar-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 40%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 99px;
}
.tnlp-ennotice__bar-marker {
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.tnlp-ennotice__bar-marker::before {
    content: '';
    display: block;
    width: 18px; height: 18px;
    background: #fff;
    border: 3px solid #10b981;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(16,185,129,.3);
    margin: 0 auto;
}
.tnlp-ennotice__bar-bubble {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: #0B1F3A;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
}
.tnlp-ennotice__bar-bubble::after {
    content: '';
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #0B1F3A;
}

/* Checklist */
.tnlp-ennotice__checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tnlp-ennotice__check {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}
.tnlp-ennotice__check--yes {
    background: rgba(16,185,129,.07);
    color: #065f46;
}
.tnlp-ennotice__check--no {
    background: #f3f4f6;
    color: #9ca3af;
    text-decoration: line-through;
    text-decoration-color: #d1d5db;
}
.tnlp-ennotice__check-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.tnlp-ennotice__check--yes .tnlp-ennotice__check-icon {
    background: #10b981;
    color: #fff;
}
.tnlp-ennotice__check--no .tnlp-ennotice__check-icon {
    background: #e5e7eb;
    color: #9ca3af;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
    .tnlp-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .tnlp-split { grid-template-columns: 1fr; gap: 40px; }
    .tnlp-form-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .tnlp-hero__inner { grid-template-columns: 1fr; gap: 32px; }
    .tnlp-hero__left { max-width: 100%; }
    .tnlp-hero { padding: 32px 0; }
    .tnlp-section { padding: 48px 0; }

    /* Mobile header */
    .tnlp-header__inner { padding: 8px 16px; min-height: 52px; }
    .tnlp-header .tnlp-header__logo { height: 28px !important; max-height: 28px !important; max-width: 130px !important; }
    .tnlp-header__nav { display: none; }
    .tnlp-header__burger { display: flex; }
    .tnlp-btn--wa-header { padding: 6px 12px; font-size: 12px; }

    /* Mobile nav open */
    .tnlp-header--open .tnlp-header__nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--tn-border);
        box-shadow: var(--tn-shadow-md);
    }

    .tnlp-grid--3 { grid-template-columns: 1fr; }
    .tnlp-grid--4 { grid-template-columns: 1fr; }
    .tnlp-form__row--2 { grid-template-columns: 1fr; }

    /* Hero mobile */
    .tnlp-hero__left { text-align: center; }
    .tnlp-hero__title { font-size: 26px; }
    .tnlp-hero__desc { font-size: 15px; }
    .tnlp-hero__ctas {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .tnlp-hero__ctas .tnlp-btn {
        width: fit-content;
        flex: 0 0 auto;
        padding: 9px 20px;
        font-size: 13px;
        min-height: unset;
    }
    .tnlp-hero__trust { justify-content: center; }
    /* Form submit — contained, centered */
    .tnlp-btn--full { padding: 13px 20px; font-size: 15px; }

    .tnlp-footer__inner { grid-template-columns: 1fr; gap: 32px; }

    .tnlp-cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }
    .tnlp-cta-banner h2 { font-size: 22px; }

    .tnlp-lang-toggle { display: none; }

    /* Stats band */
    .tnlp-stats-band__grid { grid-template-columns: repeat(2, 1fr); }
    .tnlp-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
    .tnlp-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.15); }
    .tnlp-stat:nth-last-child(-n+2) { border-bottom: none; }
    .tnlp-stat__value { font-size: 2rem; }

    /* English notice */
    .tnlp-ennotice__wrap { grid-template-columns: 1fr; }
    .tnlp-ennotice__panel--dark { padding: 40px 24px; border-right: none; border-bottom: 1px solid #e5e7eb; }
    .tnlp-ennotice__panel--light { padding: 40px 24px; }
    .tnlp-ennotice__heading { font-size: 1.5rem; }
    .tnlp-ennotice__big-number { font-size: 3.5rem; }

    /* Testimonials */
    .tnlp-tcard { min-width: 260px; max-width: 260px; }

    /* iOS: prevent zoom on input focus (must be >= 16px) */
    .tnlp-field input,
    .tnlp-field select,
    .tnlp-field textarea { font-size: 16px; }

    /* Touch-friendly tap targets */
    .tnlp-faq__question { padding: 16px 0; min-height: 44px; }
}

@media (max-width: 480px) {
    .tnlp-form-card { padding: 20px 16px; }
    .tnlp-hero__title { font-size: 22px; }
    .tnlp-hero__ctas { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 8px; }
    .tnlp-hero__ctas .tnlp-btn { width: fit-content !important; min-width: 0 !important; max-width: none !important; padding: 8px 18px !important; font-size: 13px !important; min-height: unset !important; }
    .tnlp-header .tnlp-header__logo { height: 24px !important; max-height: 24px !important; max-width: 110px !important; }
    .tnlp-header__inner { padding: 8px 12px; min-height: 48px; }
    .tnlp-section { padding: 40px 0; }
}

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
═══════════════════════════════════════════════ */
.tnlp-wa-float {
    position: fixed;
    z-index: 9998;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    font-family: inherit;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
}
.tnlp-wa-float:hover,
.tnlp-wa-float:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,.55);
    text-decoration: none;
}
.tnlp-wa-float svg { flex-shrink: 0; }

/* ── Mobile: full-width sticky bar ── */
@media (max-width: 768px) {
    .tnlp-wa-float {
        bottom: 0;
        left: 0;
        right: 0;
        justify-content: center;
        padding: 14px 24px;
        border-radius: 0;
        font-size: 15px;
        letter-spacing: .01em;
    }
    .tnlp-wa-float__label { display: inline; }
    .tnlp-wa-float__tooltip { display: none; }
    /* Push page content up so footer not hidden behind bar */
    body { padding-bottom: 56px; }
}

/* ── Desktop: small floating circle ── */
@media (min-width: 769px) {
    .tnlp-wa-float {
        bottom: 28px;
        right: 28px;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    .tnlp-wa-float__label { display: none; }
    /* Tooltip bubble */
    .tnlp-wa-float__tooltip {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        background: #1a1a1a;
        color: #fff;
        font-size: 12px;
        font-weight: 500;
        padding: 6px 12px;
        border-radius: 6px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity .18s ease;
    }
    .tnlp-wa-float__tooltip::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -5px;
        transform: translateY(-50%);
        border: 5px solid transparent;
        border-left-color: #1a1a1a;
    }
    .tnlp-wa-float:hover .tnlp-wa-float__tooltip,
    .tnlp-wa-float:focus .tnlp-wa-float__tooltip {
        opacity: 1;
    }
}
