/* =========================================================
   PAD Landing Page — Full-Width Layout System
   Standalone CSS for layout_mode='landing' pages.
   Uses existing --tn-* design tokens from app.css.
   ========================================================= */

/* --- Reset & Base --- */
.lp-page {
    min-height: 100vh;
    font-family: var(--tn-font, 'Vazirmatn', Tahoma, sans-serif);
    color: var(--tn-on-surface, #1A1C1E);
    background: var(--tn-surface, #F5F7FA);
    direction: rtl;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
.lp-page *, .lp-page *::before, .lp-page *::after { box-sizing: border-box; }
.lp-page img { max-width: 100%; height: auto; display: block; }
.lp-page a { color: inherit; text-decoration: none; }

/* --- Header --- */
.lp-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--lp-header-bg, #fff);
    box-shadow: var(--tn-s1, 0 1px 3px rgba(0,0,0,.06));
    transition: background .3s, box-shadow .3s;
}
.lp-header--transparent { background: transparent; box-shadow: none; }
.lp-header--transparent.lp-header--scrolled { background: rgba(255,255,255,.97); box-shadow: var(--tn-s1); }
.lp-header--gradient {
    background: linear-gradient(135deg, var(--lp-primary, var(--tn-primary, #1565C0)), var(--lp-accent, #1976D2));
    color: #fff;
}
.lp-header-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 32px; height: 64px;
}
.lp-logo { display: flex; align-items: center; gap: 12px; }
.lp-logo img { height: 40px; width: auto; }
.lp-logo-title { font-size: 18px; font-weight: 800; white-space: nowrap; }

/* Navigation */
.lp-nav { display: flex; align-items: center; gap: 4px; }
.lp-nav a {
    padding: 8px 16px; border-radius: var(--tn-r-full, 100px);
    font-size: 14px; font-weight: 600; transition: background .2s, color .2s;
}
.lp-nav a:hover { background: rgba(0,0,0,.06); }
.lp-nav a.active { color: var(--lp-primary, var(--tn-primary, #1565C0)); background: var(--tn-primary-light, #E3F2FD); }
.lp-header--gradient .lp-nav a:hover { background: rgba(255,255,255,.15); }
.lp-header--gradient .lp-nav a.active { background: rgba(255,255,255,.2); color: #fff; }

/* Mobile menu toggle */
.lp-menu-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; padding: 8px; color: inherit;
}
.lp-menu-toggle svg { width: 24px; height: 24px; }

/* Mobile drawer */
.lp-drawer-overlay {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4);
    z-index: 200; opacity: 0; transition: opacity .3s;
}
.lp-drawer-overlay.open { display: block; opacity: 1; }
.lp-drawer {
    position: fixed; top: 0; right: 0; width: 280px; height: 100%;
    background: #fff; z-index: 201; transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--tn-s3); padding: 24px;
    display: flex; flex-direction: column; gap: 4px;
}
.lp-drawer.open { transform: translateX(0); }
.lp-drawer a {
    display: block; padding: 12px 16px; font-size: 15px; font-weight: 600;
    border-radius: var(--tn-r-sm, 10px); transition: background .15s;
}
.lp-drawer a:hover { background: var(--tn-surface-dim, #ECEEF2); }
.lp-drawer-close {
    align-self: flex-start; background: none; border: none; cursor: pointer;
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; margin-bottom: 12px;
}
.lp-drawer-close:hover { background: var(--tn-surface-dim); }

/* --- Sections --- */
.lp-section {
    width: 100%;
    background-color: var(--lp-section-bg, transparent);
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.lp-section-inner {
    max-width: 1400px; margin: 0 auto;
}
/* Padding variants */
.lp-section--pad-none   .lp-section-inner { padding: 0 32px; }
.lp-section--pad-narrow .lp-section-inner { padding: 24px 32px; }
.lp-section--pad-normal .lp-section-inner { padding: 48px 32px; }
.lp-section--pad-wide   .lp-section-inner { padding: 80px 32px; }

/* Section title */
.lp-section-title {
    font-size: 24px; font-weight: 800; margin: 0 0 32px;
    color: var(--tn-on-surface, #1A1C1E);
}

/* Layout variants */
.lp-section--2-col > .lp-section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.lp-section--3-col > .lp-section-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.lp-section--sidebar-right > .lp-section-inner { display: grid; grid-template-columns: 1fr 340px; gap: 32px; }
.lp-section--sidebar-left > .lp-section-inner { display: grid; grid-template-columns: 340px 1fr; gap: 32px; }

/* --- Hero Block --- */
.lp-hero {
    position: relative; width: 100%; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: #fff;
}
.lp-hero--large  { min-height: 80vh; }
.lp-hero--medium { min-height: 50vh; }
.lp-hero--small  { min-height: 35vh; }
.lp-hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
}
.lp-hero-bg video {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.lp-hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.6) 100%);
}
.lp-hero-content {
    position: relative; z-index: 2;
    max-width: 800px; padding: 48px 32px;
}
.lp-hero-title {
    font-size: 42px; font-weight: 900; line-height: 1.3;
    margin: 0 0 16px; text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.lp-hero-subtitle {
    font-size: 18px; font-weight: 400; line-height: 1.8;
    margin: 0 0 32px; opacity: .9;
}
.lp-hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lp-hero-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--tn-r-full, 100px);
    font-size: 15px; font-weight: 700; transition: all .2s; cursor: pointer; border: none;
}
.lp-hero-btn--primary {
    background: var(--lp-primary, var(--tn-primary, #1565C0)); color: #fff;
}
.lp-hero-btn--primary:hover { filter: brightness(1.1); transform: translateY(-1px); }
.lp-hero-btn--outline {
    background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6);
}
.lp-hero-btn--outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* --- News Grid Block --- */
.lp-news-grid {
    display: grid; gap: 24px;
}
.lp-news-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lp-news-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lp-news-grid--4 { grid-template-columns: repeat(4, 1fr); }

.lp-news-card {
    background: var(--tn-surface-card, #fff);
    border-radius: var(--tn-r-md, 14px);
    overflow: hidden; transition: transform .2s, box-shadow .2s;
    box-shadow: var(--tn-s1);
    display: flex; flex-direction: column;
}
.lp-news-card:hover { transform: translateY(-4px); box-shadow: var(--tn-s2); }
.lp-news-card-img {
    width: 100%; aspect-ratio: 16/9; object-fit: cover;
    background: var(--tn-surface-dim, #ECEEF2);
}
.lp-news-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.lp-news-card-title {
    font-size: 16px; font-weight: 700; margin: 0 0 8px; line-height: 1.7;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.lp-news-card-excerpt {
    font-size: 13px; color: var(--tn-on-surface-var, #6B7280); line-height: 1.8;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    flex: 1;
}
.lp-news-card-meta {
    display: flex; align-items: center; gap: 8px; margin-top: 12px;
    font-size: 12px; color: var(--tn-on-surface-var, #6B7280);
}
/* Overlay card style */
.lp-news-card--overlay {
    position: relative; aspect-ratio: 16/10; overflow: hidden;
    display: flex; align-items: flex-end;
}
.lp-news-card--overlay .lp-news-card-img { position: absolute; inset: 0; height: 100%; }
.lp-news-card--overlay .lp-news-card-body {
    position: relative; z-index: 1; color: #fff; padding: 24px;
    background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 100%);
    width: 100%;
}
.lp-news-card--overlay .lp-news-card-excerpt { color: rgba(255,255,255,.8); }
.lp-news-card--overlay .lp-news-card-meta { color: rgba(255,255,255,.7); }
/* Minimal card style — no image, compact layout, text-only (BUG-060) */
.lp-news-card--minimal { box-shadow: none; border: 1px solid var(--tn-outline, #DDE1E6); border-radius: var(--tn-r-sm, 10px); }
.lp-news-card--minimal:hover { box-shadow: var(--tn-s1); background: var(--tn-surface-dim, #ECEEF2); }
.lp-news-card--minimal .lp-news-card-img { display: none; }
.lp-news-card--minimal .lp-news-card-body { padding: 16px; }
.lp-news-card--minimal .lp-news-card-title { font-size: 14px; font-weight: 700; }
.lp-news-card--minimal .lp-news-card-meta { margin-top: 8px; }

/* --- Text Block --- */
.lp-text-block {
    font-size: 15px; line-height: 1.9; color: var(--tn-on-surface, #1A1C1E);
}
.lp-text-block h1, .lp-text-block h2, .lp-text-block h3 {
    font-weight: 800; line-height: 1.5; margin: 24px 0 12px;
}
.lp-text-block h1 { font-size: 28px; }
.lp-text-block h2 { font-size: 22px; }
.lp-text-block h3 { font-size: 18px; }
.lp-text-block p { margin: 0 0 16px; }
.lp-text-block img { border-radius: var(--tn-r-md, 14px); margin: 16px 0; }
.lp-text-block ul, .lp-text-block ol { padding-right: 24px; margin: 0 0 16px; }
.lp-text-block blockquote {
    border-right: 4px solid var(--lp-primary, var(--tn-primary, #1565C0));
    padding: 12px 20px; margin: 16px 0;
    background: var(--tn-primary-light, #E3F2FD); border-radius: 0 var(--tn-r-sm, 10px) var(--tn-r-sm, 10px) 0;
}

/* --- CTA Block --- */
.lp-cta {
    text-align: center; padding: 64px 32px;
    border-radius: var(--tn-r-lg, 20px);
    background: var(--lp-cta-bg, var(--lp-primary, var(--tn-primary, #1565C0)));
    color: var(--lp-cta-color, #fff);
}
.lp-cta-title { font-size: 28px; font-weight: 900; margin: 0 0 12px; }
.lp-cta-text { font-size: 16px; margin: 0 0 28px; opacity: .9; max-width: 600px; margin-inline: auto; line-height: 1.8; }
.lp-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lp-cta-btn {
    display: inline-flex; align-items: center; padding: 14px 32px;
    border-radius: var(--tn-r-full, 100px); font-size: 15px; font-weight: 700;
    background: #fff; color: var(--lp-primary, var(--tn-primary, #1565C0));
    transition: all .2s; cursor: pointer; border: none;
}
.lp-cta-btn:hover { transform: translateY(-2px); box-shadow: var(--tn-s2); }

/* --- Spacer Block --- */
.lp-spacer { width: 100%; }
.lp-spacer--sm { height: 24px; }
.lp-spacer--md { height: 48px; }
.lp-spacer--lg { height: 80px; }
.lp-spacer--line {
    height: 1px; background: var(--tn-outline, #DDE1E6);
    max-width: 1400px; margin: 32px auto;
}

/* --- Gallery Block --- */
.lp-gallery {
    display: grid; gap: 12px;
}
.lp-gallery--2 { grid-template-columns: repeat(2, 1fr); }
.lp-gallery--3 { grid-template-columns: repeat(3, 1fr); }
.lp-gallery--4 { grid-template-columns: repeat(4, 1fr); }
.lp-gallery-item {
    border-radius: var(--tn-r-md, 14px); overflow: hidden;
    cursor: pointer; position: relative;
}
.lp-gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .3s; }
.lp-gallery-item:hover img { transform: scale(1.05); }
.lp-gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 12px 16px; font-size: 13px; font-weight: 600; color: #fff;
    background: linear-gradient(0deg, rgba(0,0,0,.6) 0%, transparent 100%);
    opacity: 0; transition: opacity .3s;
}
.lp-gallery-item:hover .lp-gallery-caption { opacity: 1; }

/* --- Team Block --- */
.lp-team { display: grid; gap: 24px; }
.lp-team--3 { grid-template-columns: repeat(3, 1fr); }
.lp-team--4 { grid-template-columns: repeat(4, 1fr); }
.lp-team-card {
    text-align: center; padding: 32px 20px;
    background: var(--tn-surface-card, #fff); border-radius: var(--tn-r-md, 14px);
    box-shadow: var(--tn-s1); transition: transform .2s, box-shadow .2s;
}
.lp-team-card:hover { transform: translateY(-4px); box-shadow: var(--tn-s2); }
.lp-team-photo {
    width: 100px; height: 100px; border-radius: 50%; object-fit: cover;
    margin: 0 auto 16px; border: 3px solid var(--tn-primary-light, #E3F2FD);
}
.lp-team-name { font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.lp-team-role { font-size: 13px; color: var(--lp-primary, var(--tn-primary)); font-weight: 600; margin: 0 0 8px; }
.lp-team-bio { font-size: 13px; color: var(--tn-on-surface-var); line-height: 1.7; }
.lp-team-links { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.lp-team-links a {
    width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: var(--tn-surface-dim, #ECEEF2); font-size: 14px; transition: background .2s;
}
.lp-team-links a:hover { background: var(--tn-primary-light); color: var(--tn-primary); }

/* --- Stats Block --- */
.lp-stats {
    display: grid; gap: 24px; text-align: center;
    padding: 48px 32px; border-radius: var(--tn-r-lg, 20px);
}
.lp-stats--3 { grid-template-columns: repeat(3, 1fr); }
.lp-stats--4 { grid-template-columns: repeat(4, 1fr); }
.lp-stat-value {
    font-size: 42px; font-weight: 900; line-height: 1.2;
    color: var(--lp-primary, var(--tn-primary, #1565C0));
}
.lp-stat-label { font-size: 14px; font-weight: 600; color: var(--tn-on-surface-var, #6B7280); margin-top: 4px; }
/* Dark variant */
.lp-stats--dark { background: var(--lp-primary, var(--tn-primary, #1565C0)); color: #fff; }
.lp-stats--dark .lp-stat-value { color: #fff; }
.lp-stats--dark .lp-stat-label { color: rgba(255,255,255,.8); }

/* --- Items Grid wrapper (static_card, stable) --- */
.lp-items-grid { display: grid; gap: 24px; }
.lp-items-grid--1 { grid-template-columns: 1fr; }
.lp-items-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lp-items-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lp-items-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
    .lp-items-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .lp-items-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .lp-items-grid--2,.lp-items-grid--3,.lp-items-grid--4 { grid-template-columns: 1fr; }
}

/* --- Static Card Block --- */
.lp-static-card {
    background: var(--tn-surface-card, #fff); border-radius: var(--tn-r-md, 14px);
    padding: 28px 20px; box-shadow: var(--tn-s1); transition: transform .2s, box-shadow .2s;
}
.lp-static-card:hover { transform: translateY(-4px); box-shadow: var(--tn-s2); }
.lp-static-card-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.lp-static-card-value { font-size: 36px; font-weight: 900; line-height: 1.2; color: var(--tn-on-surface, #1A1C1E); }
.lp-static-card-label { font-size: 13px; color: var(--tn-on-surface-var, #6B7280); margin-top: 6px; line-height: 1.5; }
.lp-static-card-link { display: inline-block; margin-top: 10px; font-size: 12px; color: var(--lp-primary, var(--tn-primary)); }

/* --- Stable Block (service card) --- */
.lp-stable-card {
    background: var(--tn-surface-card, #fff); border-radius: var(--tn-r-md, 14px);
    overflow: hidden; box-shadow: var(--tn-s1); transition: transform .2s, box-shadow .2s;
}
.lp-stable-card:hover { transform: translateY(-4px); box-shadow: var(--tn-s2); }
.lp-stable-img { aspect-ratio: 16/9; overflow: hidden; }
.lp-stable-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.lp-stable-card:hover .lp-stable-img img { transform: scale(1.05); }
.lp-stable-body { padding: 20px; }
.lp-stable-icon { font-size: 28px; color: var(--lp-primary, var(--tn-primary)); display: block; margin-bottom: 10px; }
.lp-stable-title { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.lp-stable-text { font-size: 13px; color: var(--tn-on-surface-var, #6B7280); line-height: 1.7; margin: 0 0 12px; }
.lp-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; border-radius: var(--tn-r-full, 100px); font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all .2s; }
.lp-btn--primary { background: var(--lp-primary, var(--tn-primary)); color: #fff; }
.lp-btn--primary:hover { opacity: .9; }
.lp-btn--outline { border: 1.5px solid var(--lp-primary, var(--tn-primary)); color: var(--lp-primary, var(--tn-primary)); }
.lp-btn--outline:hover { background: var(--tn-primary-light); }

/* --- Slider Block --- */
.lp-slider { position: relative; border-radius: var(--tn-r-lg, 20px); overflow: hidden; }
.lp-slider-track { position: relative; width: 100%; }
.lp-slider-slide { display: none; position: relative; }
.lp-slider-slide.active { display: block; }
.lp-slider-slide img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.lp-slider-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.7));
    padding: 32px 24px 20px; color: #fff;
}
.lp-slider-title { font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.lp-slider-desc { font-size: 13px; opacity: .85; margin: 0; }
.lp-slider-prev, .lp-slider-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.2); backdrop-filter: blur(4px);
    border: none; color: #fff; font-size: 28px; width: 44px; height: 44px;
    border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .2s; z-index: 2;
}
.lp-slider-prev:hover, .lp-slider-next:hover { background: rgba(255,255,255,.35); }
.lp-slider-prev { right: 12px; }
.lp-slider-next { left: 12px; }
.lp-slider-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.lp-slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: background .2s, width .2s; }
.lp-slider-dot.active { background: #fff; width: 20px; border-radius: 4px; }

/* --- Footer --- */
.lp-footer {
    background: var(--lp-footer-bg, #1a1c1e); color: rgba(255,255,255,.85);
    padding: 64px 32px 32px;
}
.lp-footer-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px;
}
.lp-footer-col-title {
    font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 16px;
    padding-bottom: 8px; border-bottom: 2px solid var(--lp-primary, var(--tn-primary, #1565C0));
    display: inline-block;
}
.lp-footer-links { list-style: none; padding: 0; margin: 0; }
.lp-footer-links li { margin-bottom: 8px; }
.lp-footer-links a { font-size: 14px; opacity: .75; transition: opacity .2s; }
.lp-footer-links a:hover { opacity: 1; }
.lp-footer-text { font-size: 14px; line-height: 1.8; }
.lp-footer-copyright {
    max-width: 1400px; margin: 40px auto 0;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
    font-size: 13px; text-align: center; opacity: .6;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .lp-section--3-col > .lp-section-inner { grid-template-columns: 1fr 1fr; }
    .lp-news-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .lp-team--4 { grid-template-columns: repeat(2, 1fr); }
    .lp-stats--4 { grid-template-columns: repeat(2, 1fr); }
    .lp-gallery--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .lp-header-inner { padding: 0 16px; }
    .lp-nav { display: none; }
    .lp-menu-toggle { display: flex; align-items: center; justify-content: center; }

    .lp-section--2-col > .lp-section-inner,
    .lp-section--3-col > .lp-section-inner,
    .lp-section--sidebar-right > .lp-section-inner,
    .lp-section--sidebar-left > .lp-section-inner {
        grid-template-columns: 1fr !important;
    }

    .lp-section--pad-none   .lp-section-inner { padding: 0 16px; }
    .lp-section--pad-narrow .lp-section-inner { padding: 16px; }
    .lp-section--pad-normal .lp-section-inner { padding: 32px 16px; }
    .lp-section--pad-wide   .lp-section-inner { padding: 48px 16px; }

    .lp-hero-title { font-size: 28px; }
    .lp-hero-subtitle { font-size: 15px; }
    .lp-hero-content { padding: 32px 16px; }

    .lp-news-grid--2, .lp-news-grid--3, .lp-news-grid--4 { grid-template-columns: 1fr; }
    .lp-team--3, .lp-team--4 { grid-template-columns: 1fr 1fr; }
    .lp-stats--3, .lp-stats--4 { grid-template-columns: 1fr 1fr; }
    .lp-gallery--3, .lp-gallery--4 { grid-template-columns: 1fr 1fr; }

    .lp-cta { padding: 40px 20px; }
    .lp-cta-title { font-size: 22px; }

    .lp-footer-inner { grid-template-columns: 1fr; }
    .lp-section-title { font-size: 20px; }
    .lp-stat-value { font-size: 32px; }
}

@media (max-width: 480px) {
    .lp-team--3, .lp-team--4 { grid-template-columns: 1fr; }
    .lp-stats--3, .lp-stats--4 { grid-template-columns: 1fr; }
    .lp-gallery--2, .lp-gallery--3, .lp-gallery--4 { grid-template-columns: 1fr; }
    .lp-hero--large { min-height: 60vh; }
    .lp-hero-btn { padding: 12px 24px; font-size: 14px; }
}

/* --- Lightbox (gallery click-to-zoom) --- */
.lp-lightbox {
    position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.9);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.lp-lightbox.open { opacity: 1; visibility: visible; }
.lp-lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--tn-r-sm); }
.lp-lightbox-close {
    position: absolute; top: 20px; left: 20px;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.15); border: none; color: #fff;
    font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* --- Utility --- */
.lp-container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .lp-container { padding: 0 16px; } }
