/* ============================================================
   LEAVETHEKEYSDMV — sections.css
   All section-specific styles. Colors via CSS variables.
   ============================================================ */

/* ── Shared Section Utilities ─────────────────────────────── */
.ltk-section-header { margin-bottom: 3rem; }
.ltk-section-header--center { text-align: center; }
.ltk-section-header--light .ltk-section-title { color: #fff; }

.ltk-section-title {
    font-family: var(--ltk-font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--ltk-navy);
    margin-top: 0.75rem;
}
.ltk-section-title--dark { color: var(--ltk-navy); }
.ltk-section-sub {
    font-size: 1.05rem;
    color: rgba(13,27,42,0.6);
    max-width: 640px;
    margin-top: 0.75rem;
    line-height: 1.7;
}
.ltk-section-header--center .ltk-section-sub { margin-left: auto; margin-right: auto; }
.ltk-section-sub--dark { color: rgba(13,27,42,0.6); }

/* ── NAVBAR ───────────────────────────────────────────────── */
.ltk-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    transition: background var(--ltk-transition), box-shadow var(--ltk-transition);
}
.ltk-navbar.scrolled {
    background: rgba(7,15,24,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.ltk-navbar__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 72px;
}
.ltk-navbar__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}
.ltk-navbar__logo img,
.ltk-navbar__logo-placeholder { width: 40px; height: 40px; object-fit: contain; font-size: 1.8rem; }
.ltk-navbar__brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.ltk-navbar__brand-name { font-family: var(--ltk-font-head); font-weight: 800; font-size: 1.1rem; color: #fff; }
.ltk-navbar__brand-sub  { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ltk-gold); }

.ltk-navbar__nav { flex: 1; display: flex; justify-content: center; }
.ltk-navbar__menu { list-style: none; display: flex; gap: 0.25rem; margin: 0; padding: 0; }
.ltk-navbar__menu li a {
    display: block;
    padding: 0.5rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    border-radius: var(--ltk-radius);
    transition: color var(--ltk-transition), background var(--ltk-transition);
}
.ltk-navbar__menu li a:hover { color: #fff; background: rgba(255,255,255,0.08); }

.ltk-navbar__cta { flex-shrink: 0; font-size: 0.875rem; padding: 0.6rem 1.25rem; }
.ltk-navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    margin-left: auto;
}
.ltk-navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform var(--ltk-transition), opacity var(--ltk-transition);
}

/* Mobile menu */
.ltk-mobile-menu {
    background: var(--ltk-navy-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
}
.ltk-mobile-menu__list { list-style: none; margin: 0; padding: 0; }
.ltk-mobile-menu__list li a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ltk-mobile-menu__cta { display: block; margin-top: 1.25rem; text-align: center; }
.ltk-mobile-menu__phone { display: block; text-align: center; margin-top: 0.75rem; color: var(--ltk-gold); font-weight: 600; }

@media (max-width: 900px) {
    .ltk-navbar__nav, .ltk-navbar__cta { display: none; }
    .ltk-navbar__hamburger { display: flex; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.ltk-hero {
    position: relative;
    min-height: 100vh;
    background: var(--ltk-navy);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 7rem 0 4rem;
}
.ltk-hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(201,168,76,0.08) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}
.ltk-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}
.ltk-hero__eyebrow { margin-bottom: 1.5rem; }
.ltk-hero__eyebrow-dot { color: var(--ltk-gold); margin-right: 0.25rem; }
.ltk-hero__headline {
    font-family: var(--ltk-font-head);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.1em;
    margin-bottom: 1.5rem;
}
.ltk-hero__headline-white { color: #fff; }
.ltk-hero__headline-gold  { color: var(--ltk-gold); font-style: italic; }
.ltk-hero__sub { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 520px; line-height: 1.7; margin-bottom: 2rem; }
.ltk-hero__sub strong { color: #fff; }

.ltk-hero__badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.ltk-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
}

.ltk-hero__stats { display: flex; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.ltk-hero__stat { display: flex; flex-direction: column; }
.ltk-hero__stat-num   { font-family: var(--ltk-font-head); font-size: 1.75rem; font-weight: 800; color: var(--ltk-gold); }
.ltk-hero__stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.15rem; }

.ltk-hero__image-wrap { position: relative; border-radius: 1rem; overflow: hidden; margin-bottom: 1.5rem; }
.ltk-hero__image { width: 100%; height: 320px; object-fit: cover; }
.ltk-hero__image-caption {
    position: absolute;
    bottom: 1rem; left: 1rem;
    background: rgba(7,15,24,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 0.5rem;
    padding: 0.6rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    font-size: 0.85rem;
}
.ltk-hero__image-caption strong { display: block; font-weight: 700; }
.ltk-hero__image-caption small  { color: rgba(255,255,255,0.5); font-size: 0.75rem; }

.ltk-hero__form-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.ltk-hero__form-title { font-family: var(--ltk-font-head); font-size: 1.4rem; font-weight: 800; color: var(--ltk-navy); margin-bottom: 0.35rem; }
.ltk-hero__form-sub   { font-size: 0.85rem; color: rgba(13,27,42,0.55); margin-bottom: 1.25rem; }

@media (max-width: 900px) {
    .ltk-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .ltk-hero { padding: 6rem 0 3rem; }
}

/* ── FORMS ────────────────────────────────────────────────── */
.ltk-form { display: flex; flex-direction: column; gap: 0.85rem; }
.ltk-form__group { display: flex; flex-direction: column; gap: 0.35rem; }
.ltk-form__group label { font-size: 0.8rem; font-weight: 600; color: var(--ltk-navy); }
.ltk-form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2ddd6;
    border-radius: var(--ltk-radius);
    font-family: var(--ltk-font-body);
    font-size: 0.9rem;
    color: var(--ltk-navy);
    background: #fff;
    transition: border-color var(--ltk-transition), box-shadow var(--ltk-transition);
    outline: none;
}
.ltk-form__input:focus { border-color: var(--ltk-gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.ltk-form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230D1B2A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.ltk-form__textarea { resize: vertical; min-height: 80px; }
.ltk-form__submit { width: 100%; justify-content: center; font-size: 1rem; padding: 0.9rem 1.5rem; margin-top: 0.25rem; }
.ltk-form__privacy { font-size: 0.75rem; color: rgba(13,27,42,0.45); text-align: center; margin-top: 0.25rem; }
.ltk-form__success { background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--ltk-radius); padding: 0.85rem 1rem; color: #166534; font-size: 0.9rem; }
.ltk-form__error   { background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--ltk-radius); padding: 0.85rem 1rem; color: #991b1b; font-size: 0.9rem; }
.ltk-form--full .ltk-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
@media (max-width: 600px) { .ltk-form--full .ltk-form__row { grid-template-columns: 1fr; } }

/* ── TRUST BAR ────────────────────────────────────────────── */
.ltk-trust-bar {
    background: var(--ltk-navy-dark, #070f18);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 1.5rem 0;
}
.ltk-trust-bar__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
}
.ltk-trust-bar__item { display: flex; align-items: center; gap: 0.6rem; }
.ltk-trust-bar__icon { font-size: 1.3rem; }
.ltk-trust-bar__title { display: block; font-size: 0.85rem; font-weight: 700; color: #fff; }
.ltk-trust-bar__sub   { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* ── PAIN POINTS ──────────────────────────────────────────── */
.ltk-pain {
    background: var(--ltk-linen);
    padding: 5rem 0;
}
.ltk-pain__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.ltk-pain__card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(13,27,42,0.07);
    box-shadow: 0 4px 20px rgba(13,27,42,0.05);
    transition: transform var(--ltk-transition), box-shadow var(--ltk-transition);
}
.ltk-pain__card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,27,42,0.1); }
.ltk-pain__card-icon  { font-size: 2.5rem; margin-bottom: 1rem; }
.ltk-pain__card-title { font-family: var(--ltk-font-head); font-size: 1.15rem; font-weight: 700; color: var(--ltk-navy); margin-bottom: 0.6rem; }
.ltk-pain__card-desc  { font-size: 0.9rem; color: rgba(13,27,42,0.6); line-height: 1.65; }
.ltk-pain__cta { text-align: center; }

@media (max-width: 900px) { .ltk-pain__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ltk-pain__grid { grid-template-columns: 1fr; } }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.ltk-hiw {
    background: var(--ltk-navy);
    padding: 5rem 0;
}
.ltk-hiw__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.ltk-hiw .ltk-section-title { color: #fff; }
.ltk-hiw .ltk-section-sub   { color: rgba(255,255,255,0.55); }
.ltk-hiw__step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.ltk-hiw__step:first-of-type { border-top: none; padding-top: 0; margin-top: 1.5rem; }
.ltk-hiw__step-num {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--ltk-gold);
    color: var(--ltk-navy);
    font-family: var(--ltk-font-head);
    font-weight: 900;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ltk-hiw__step-meta { display: flex; gap: 0.75rem; align-items: center; margin-bottom: 0.4rem; }
.ltk-hiw__step-label    { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ltk-gold); }
.ltk-hiw__step-timeline { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.ltk-hiw__step-title { font-family: var(--ltk-font-head); font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.ltk-hiw__step-desc  { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

.ltk-hiw__image-col { position: relative; }
.ltk-hiw__image { width: 100%; border-radius: 1rem; object-fit: cover; }
.ltk-hiw__image-placeholder {
    width: 100%;
    min-height: 360px;
    background: rgba(255,255,255,0.04);
    border: 2px dashed rgba(255,255,255,0.12);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ltk-hiw__image-badge {
    position: absolute;
    bottom: -1.5rem;
    right: 1.5rem;
    background: var(--ltk-gold);
    color: var(--ltk-navy);
    border-radius: 0.75rem;
    padding: 0.85rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.ltk-hiw__image-badge strong { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.ltk-hiw__image-badge-num    { font-family: var(--ltk-font-head); font-size: 1.5rem; font-weight: 900; }

@media (max-width: 900px) { .ltk-hiw__inner { grid-template-columns: 1fr; } }

/* ── COMPARISON ───────────────────────────────────────────── */
.ltk-comparison {
    background: var(--ltk-charcoal);
    padding: 5rem 0;
}
.ltk-comparison__table-wrap { overflow-x: auto; border-radius: 1rem; margin-bottom: 2.5rem; }
.ltk-comparison__table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.03);
    border-radius: 1rem;
    overflow: hidden;
    font-size: 0.9rem;
}
.ltk-comparison__table thead tr {
    background: rgba(255,255,255,0.06);
}
.ltk-comparison__table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.ltk-comparison__us-col { background: rgba(201,168,76,0.1); color: var(--ltk-gold) !important; }
.ltk-comparison__table td { padding: 0.9rem 1.25rem; color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.05); }
.ltk-comparison__row-even td { background: rgba(255,255,255,0.02); }
.ltk-comparison__label { font-weight: 600; color: rgba(255,255,255,0.9) !important; }
.ltk-comparison__bad  .ltk-comparison__x     { color: #f87171; margin-right: 0.5rem; }
.ltk-comparison__good .ltk-comparison__check { color: var(--ltk-gold); margin-right: 0.5rem; }
.ltk-comparison__good { color: rgba(255,255,255,0.9) !important; }
.ltk-comparison__cta { text-align: center; }

/* ── CONDITIONS ───────────────────────────────────────────── */
.ltk-conditions {
    background: var(--ltk-linen);
    padding: 5rem 0;
}
.ltk-conditions__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.ltk-conditions__image { width: 100%; border-radius: 1rem; object-fit: cover; }
.ltk-conditions__image-placeholder {
    width: 100%;
    min-height: 320px;
    background: rgba(13,27,42,0.06);
    border: 2px dashed rgba(13,27,42,0.15);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}
.ltk-conditions__image-caption {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 0.75rem;
    border-left: 3px solid var(--ltk-gold);
    font-size: 0.875rem;
}
.ltk-conditions__image-caption em { display: block; color: var(--ltk-navy); font-style: italic; margin-bottom: 0.4rem; }
.ltk-conditions__image-caption span { color: rgba(13,27,42,0.45); font-size: 0.8rem; }
.ltk-conditions__tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0; }
.ltk-conditions__tag {
    background: #fff;
    border: 1.5px solid rgba(13,27,42,0.1);
    color: var(--ltk-navy);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    transition: background var(--ltk-transition), border-color var(--ltk-transition);
}
.ltk-conditions__tag:hover { background: var(--ltk-gold); border-color: var(--ltk-gold); color: var(--ltk-navy); }
.ltk-conditions__question { font-size: 0.95rem; color: rgba(13,27,42,0.55); margin-bottom: 1rem; }

@media (max-width: 900px) { .ltk-conditions__inner { grid-template-columns: 1fr; } }

/* ── ABOUT ────────────────────────────────────────────────── */
.ltk-about {
    background: var(--ltk-navy);
    padding: 5rem 0;
}
.ltk-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.ltk-about .ltk-section-title { color: #fff; }
.ltk-about__headline { white-space: pre-line; }
.ltk-about__body { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-top: 1rem; }
.ltk-about__trust { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }
.ltk-about__trust-item { display: flex; align-items: center; gap: 0.75rem; }
.ltk-about__trust-icon  { font-size: 1.25rem; }
.ltk-about__trust-label { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.8); }

.ltk-about__map-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    padding: 2rem;
}
.ltk-about__map-title { font-family: var(--ltk-font-head); font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.ltk-about__areas { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.ltk-about__areas li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ltk-about__areas li::before { content: '📍'; font-size: 0.9rem; }

@media (max-width: 900px) { .ltk-about__inner { grid-template-columns: 1fr; } }

/* ── FAQ ──────────────────────────────────────────────────── */
.ltk-faq {
    background: var(--ltk-linen);
    padding: 5rem 0;
}
.ltk-faq__inner { max-width: 800px; margin: 0 auto; }
.ltk-faq__list { display: flex; flex-direction: column; gap: 0; margin-bottom: 3rem; }
.ltk-faq__item { border-bottom: 1px solid rgba(13,27,42,0.1); }
.ltk-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--ltk-font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ltk-navy);
    cursor: pointer;
    transition: color var(--ltk-transition);
}
.ltk-faq__question:hover { color: var(--ltk-gold); }
.ltk-faq__question[aria-expanded="true"] .ltk-faq__icon { transform: rotate(45deg); color: var(--ltk-gold); }
.ltk-faq__icon { font-size: 1.4rem; font-weight: 300; flex-shrink: 0; transition: transform var(--ltk-transition), color var(--ltk-transition); }
.ltk-faq__answer { padding: 0 0 1.25rem; }
.ltk-faq__answer p { font-size: 0.95rem; color: rgba(13,27,42,0.65); line-height: 1.75; }
.ltk-faq__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FINAL CTA ────────────────────────────────────────────── */
.ltk-final-cta {
    background: var(--ltk-navy);
    padding: 5rem 0;
}
.ltk-final-cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.ltk-final-cta__headline {
    font-family: var(--ltk-font-head);
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    color: #fff;
    margin: 1.5rem 0;
}
.ltk-final-cta__headline em { color: var(--ltk-gold); font-style: italic; }
.ltk-final-cta__body { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 480px; }
.ltk-final-cta__phone-block { margin-top: 2rem; }
.ltk-final-cta__phone { font-family: var(--ltk-font-head); font-size: 1.75rem; font-weight: 800; color: var(--ltk-gold); display: block; }
.ltk-final-cta__form-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.ltk-final-cta__form-title { font-family: var(--ltk-font-head); font-size: 1.4rem; font-weight: 800; color: var(--ltk-navy); margin-bottom: 1.5rem; }

@media (max-width: 900px) { .ltk-final-cta__inner { grid-template-columns: 1fr; } }

/* ── FOOTER ───────────────────────────────────────────────── */
.ltk-footer {
    background: var(--ltk-navy-dark, #070f18);
    padding: 4rem 0 0;
}
.ltk-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ltk-footer__brand { display: flex; flex-direction: column; gap: 0.75rem; }
.ltk-footer__logo img { width: 48px; height: 48px; object-fit: contain; }
.ltk-footer__logo-placeholder { font-size: 2.5rem; }
.ltk-footer__brand-name { display: flex; flex-direction: column; line-height: 1.3; }
.ltk-footer__brand-name strong { font-family: var(--ltk-font-head); font-size: 1.1rem; color: #fff; }
.ltk-footer__brand-name span   { font-size: 0.7rem; color: var(--ltk-gold); letter-spacing: 0.08em; text-transform: uppercase; }
.ltk-footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 320px; }
.ltk-footer__contact { display: flex; flex-direction: column; gap: 0.4rem; }
.ltk-footer__phone { font-size: 1rem; font-weight: 700; color: var(--ltk-gold); }
.ltk-footer__email { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.ltk-footer__col-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.ltk-footer__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.ltk-footer__menu li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--ltk-transition); }
.ltk-footer__menu li a:hover { color: var(--ltk-gold); }
.ltk-footer__areas { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.ltk-footer__areas li { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.ltk-footer__bottom { padding: 1.5rem 0; background: rgba(0,0,0,0.2); }
.ltk-footer__bottom-inner { display: flex; flex-direction: column; gap: 0.5rem; }
.ltk-footer__copy       { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.ltk-footer__disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.2); line-height: 1.6; }

@media (max-width: 900px) { .ltk-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ltk-footer__grid { grid-template-columns: 1fr; } }

/* ── STICKY MOBILE CTA ────────────────────────────────────── */
.ltk-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 99;
    background: var(--ltk-navy-dark, #070f18);
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
}
.ltk-sticky-cta__call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: var(--ltk-radius);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
}
.ltk-sticky-cta__offer {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem;
    background: var(--ltk-gold);
    border-radius: var(--ltk-radius);
    color: var(--ltk-navy);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
}
@media (max-width: 768px) { .ltk-sticky-cta { display: flex; } body { padding-bottom: 70px; } }

/* ── BLOG ─────────────────────────────────────────────────── */
.ltk-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.ltk-blog-card { background: #fff; border-radius: 1rem; overflow: hidden; border: 1px solid rgba(13,27,42,0.08); box-shadow: 0 4px 16px rgba(13,27,42,0.05); }
.ltk-blog-card__thumb img { width: 100%; height: 200px; object-fit: cover; }
.ltk-blog-card__body { padding: 1.5rem; }
.ltk-blog-card__title { font-family: var(--ltk-font-head); font-size: 1.1rem; font-weight: 700; color: var(--ltk-navy); margin-bottom: 0.4rem; }
.ltk-blog-card__title a { color: inherit; text-decoration: none; }
.ltk-blog-card__title a:hover { color: var(--ltk-gold); }
.ltk-blog-card__meta { font-size: 0.78rem; color: rgba(13,27,42,0.4); margin-bottom: 0.75rem; }
.ltk-blog-card__excerpt { font-size: 0.875rem; color: rgba(13,27,42,0.6); line-height: 1.65; }
.ltk-pagination { margin-top: 3rem; text-align: center; }
@media (max-width: 900px) { .ltk-blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ltk-blog-grid { grid-template-columns: 1fr; } }

/* ── SINGLE POST ──────────────────────────────────────────── */
.ltk-single-content { max-width: 720px; }
.ltk-single-content h2,
.ltk-single-content h3 { font-family: var(--ltk-font-head); color: var(--ltk-navy); margin: 2rem 0 0.75rem; }
.ltk-single-content p  { font-size: 1rem; line-height: 1.8; color: rgba(13,27,42,0.75); margin-bottom: 1.25rem; }
.ltk-single-content ul,
.ltk-single-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.ltk-single-content li { font-size: 1rem; line-height: 1.8; color: rgba(13,27,42,0.75); margin-bottom: 0.4rem; }
