/* === SECTION:VARIABLES === */
:root {
    --color-primary: #0052CC;
    --color-primary-dark: #003d99;
    --color-primary-light: #e6f0ff;
    --color-accent: #0a1628;
    --color-accent-dark: #152238;
    --color-text: #1a1a2e;
    --color-text-secondary: #4a4a68;
    --color-text-tertiary: #7a7a8e;
    --color-bg: #ffffff;
    --color-bg-alt: #f4f6fa;
    --color-bg-dark: #0a1628;
    --color-border: #dde1e8;
    --color-green: #00875a;
    --color-gold: #f5a623;
    --color-gold-star: #f5a623;
    --max-width: 900px;
    --section-padding: 56px;
    --radius: 12px;
    --radius-lg: 16px;
}
/* === /SECTION:VARIABLES === */

/* === SECTION:RESET_AND_BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: var(--section-padding) 0; }
.section-heading {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--color-text);
}
.section-subtext {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin-bottom: 36px;
}
.section-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
a { color: var(--color-primary); }
/* === /SECTION:RESET_AND_BASE === */

/* === SECTION:LOADING_AND_ERROR === */
.loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 16px;
    color: var(--color-text-secondary);
}
.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.error-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 24px;
    gap: 12px;
}
/* === /SECTION:LOADING_AND_ERROR === */

/* === SECTION:CONSENT_MODAL === */
.cover-page {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #060b14;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cover-video {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1001;
}
.cover-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6, 11, 20, 0.65);
    z-index: 1002;
}
.cover-inner {
    position: relative;
    z-index: 1003;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 40px 24px;
    text-align: center;
    color: #fff;
}
.cover-center { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.cover-estimate-id { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.5; margin-bottom: 12px; }
.cover-name { font-size: 3.2rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.cover-tagline { font-size: 1.1rem; opacity: 0.6; }
.cover-bottom { padding-bottom: 40px; width: 100%; max-width: 400px; }
.cover-btn {
    display: inline-block;
    padding: 16px 48px;
    background: var(--color-accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-bottom: 20px;
    width: 100%;
}
.cover-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.5);
}
.cover-consent { margin-bottom: 16px; }
.cover-checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.78rem; color: rgba(255,255,255,0.55); text-align: left; cursor: pointer; }
.cover-checkbox-label input { margin-top: 3px; accent-color: var(--color-primary); }
.cover-fine-print { font-size: 0.8rem; opacity: 0.4; }
.cover-fine-print a { color: rgba(255,255,255,0.6); text-decoration: none; }
/* === /SECTION:CONSENT_MODAL === */

/* === SECTION:HERO === */
.hero {
    background: linear-gradient(135deg, #0052CC 0%, #003d99 100%);
    color: #fff;
    padding: 48px 0 52px;
    text-align: center;
}
.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
 /* === SECTION:VARIABLES === */
:root {
    --color-primary: #0052CC;
    --color-primary-dark: #003d99;
    --color-primary-light: #e6f0ff;
    --color-accent: #0a1628;
    --color-accent-dark: #152238;
    --color-text: #1a1a2e;
    --color-text-secondary: #4a4a68;
    --color-text-tertiary: #7a7a8e;
    --color-bg: #ffffff;
    --color-bg-alt: #f4f6fa;
    --color-bg-dark: #0a1628;
    --color-border: #dde1e8;
    --color-green: #00875a;
    --color-gold: #f5a623;
    --color-gold-star: #f5a623;
    --max-width: 900px;
    --section-padding: 56px;
    --radius: 12px;
    --radius-lg: 16px;
}
/* === /SECTION:VARIABLES === */

/* === SECTION:RESET_AND_BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: var(--section-padding) 0; }
.section-heading {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--color-text);
}
.section-subtext {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin-bottom: 36px;
}
.section-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
a { color: var(--color-primary); }
/* === /SECTION:RESET_AND_BASE === */

/* === SECTION:LOADING_AND_ERROR === */
.loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 16px;
    color: var(--color-text-secondary);
}
.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.error-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    padding: 24px;
    gap: 12px;
}
/* === /SECTION:LOADING_AND_ERROR === */

/* === SECTION:CONSENT_MODAL === */
.cover-page {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #060b14;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cover-video {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1001;
}
.cover-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6, 11, 20, 0.65);
    z-index: 1002;
}
.cover-inner {
    position: relative;
    z-index: 1003;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 40px 24px;
    text-align: center;
    color: #fff;
}
.cover-center { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.cover-estimate-id { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.5; margin-bottom: 12px; }
.cover-name { font-size: 3.2rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.cover-tagline { font-size: 1.1rem; opacity: 0.6; }
.cover-bottom { padding-bottom: 40px; width: 100%; max-width: 400px; }
.cover-btn {
    display: inline-block;
    padding: 16px 48px;
    background: var(--color-accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-bottom: 20px;
    width: 100%;
}
.cover-btn:hover {
    background: var(--color-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.5);
}
.cover-consent { margin-bottom: 16px; }
.cover-checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.78rem; color: rgba(255,255,255,0.55); text-align: left; cursor: pointer; }
.cover-checkbox-label input { margin-top: 3px; accent-color: var(--color-primary); }
.cover-fine-print { font-size: 0.8rem; opacity: 0.4; }
.cover-fine-print a { color: rgba(255,255,255,0.6); text-decoration: none; }
/* === /SECTION:CONSENT_MODAL === */

/* === SECTION:HERO === */
.hero {
    background: linear-gradient(135deg, #0052CC 0%, #003d99 100%);
    color: #fff;
    padding: 48px 0 52px;
    text-align: center;
}
.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.hero-logo {
    width: 200px;
    margin-bottom: 24px;
    }
.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
}
.hero-subtitle {
    font-size: 1rem;
    opacity: 0.7;
    font-weight: 500;
}
/* === /SECTION:HERO === */

/* === SECTION:STATS_BAR === */
.stats-bar {
    background: var(--color-bg-dark);
    padding: 28px 0;
}
.stats-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
    flex: 1;
    min-width: 120px;
}
.stat-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-top: 2px;
}
.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
}
/* === /SECTION:STATS_BAR === */

/* === SECTION:VALUE_PROPS === */
.value-section { background: var(--color-bg); }
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.value-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.value-icon {
    width: 52px;
    height: 52px;
    background: var(--color-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-primary);
}
.value-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}
.value-card p {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
}
/* === /SECTION:VALUE_PROPS === */

/* === SECTION:INCLUDED === */
.included-section { background: var(--color-bg-alt); }
.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.included-item {
    display: flex;
    gap: 14px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px;
}
.included-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 2px;
}
.included-item strong {
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}
.included-item p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}
/* === /SECTION:INCLUDED === */

/* === SECTION:PROCESS === */
.process-section { background: var(--color-bg); }
.process-timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}
.process-step {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    position: relative;
}
.step-marker {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-text-secondary);
    z-index: 1;
}
.process-step.completed .step-marker {
    background: var(--color-green);
    border-color: var(--color-green);
    color: #fff;
}
.step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.step-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}
/* === /SECTION:PROCESS === */

/* === SECTION:GUARANTEE === */
.guarantee-section {
    background: linear-gradient(135deg, #0a1628 0%, #132244 100%);
    color: #fff;
}
.guarantee-inner { text-align: center; }
.guarantee-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: rgba(245, 166, 35, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}
.guarantee-section .section-heading { color: #fff; }
.guarantee-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    max-width: 640px;
    margin: 16px auto 12px;
}
.guarantee-extra {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}
/* === /SECTION:GUARANTEE === */

/* === SECTION:REVIEWS === */
.reviews-section { background: var(--color-bg-alt); }
.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
}
.reviews-carousel {
    overflow: hidden;
    padding: 0 24px 16px;
}
.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-reviews 40s linear infinite;
}
.reviews-track.paused {
    animation-play-state: paused;
}
@keyframes scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.review-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    overflow: hidden;
}
.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.review-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text);
}
.review-source {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
}
.review-source svg {
    width: 14px;
    height: 14px;
}
.stars {
    font-size: 1.1rem;
    color: var(--color-gold-star);
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.review-text {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    flex: 1;
}
.review-photos {
    margin-top: 16px;
}
.review-thumb {
    position: relative;
    width: 100%;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s;
}
.review-thumb:hover {
    opacity: 0.9;
}
.review-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.review-photo-count {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}
/* === /SECTION:REVIEWS === */

/* === SECTION:VIDEO_TESTIMONIALS === */
.video-section { background: var(--color-bg); }
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.video-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
}
.video-testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    padding: 14px 16px;
}
/* === /SECTION:VIDEO_TESTIMONIALS === */

/* === SECTION:TRUST_BAR === */
.trust-bar {
    background: var(--color-primary);
    padding: 16px 0;
    text-align: center;
}
.trust-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.trust-item {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
}
.trust-sep {
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
}
/* === /SECTION:TRUST_BAR === */

/* === SECTION:PDF === */
.pdf-section { background: var(--color-bg-alt); }
.pdf-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
}
.pdf-download-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.pdf-download-btn:hover { background: var(--color-primary-dark); transform: translateY(-1px); }
.pdf-container {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow-y: auto;
    max-height: 800px;
    padding: 8px;
}
#pdf-pages canvas {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: auto;
    margin-bottom: 1px;
}
.pdf-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    color: var(--color-text-secondary);
    gap: 12px;
}
.pdf-error {
    text-align: center;
    padding: 40px 0;
    color: var(--color-text-secondary);
}
.btn-secondary {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 24px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
/* === /SECTION:PDF === */

/* === SECTION:ACCEPT === */
.accept-section {
    background: var(--color-bg);
    border-top: 3px solid var(--color-green);
}
.accept-inner { text-align: center; }
.accept-btn {
    display: inline-block;
    padding: 18px 52px;
    background: var(--color-green);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin: 20px 0 12px;
    letter-spacing: 0.01em;
}
.accept-btn:hover {
    background: #006b48;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 135, 90, 0.35);
}
.accept-reassurance {
    font-size: 0.82rem;
    color: var(--color-text-tertiary);
    margin-top: 4px;
}
/* === /SECTION:ACCEPT === */

/* === SECTION:FOOTER === */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.5);
    padding: 32px 0;
    text-align: center;
    font-size: 0.82rem;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer p + p { margin-top: 6px; }
/* === /SECTION:FOOTER === */

/* === SECTION:LIGHTBOX === */
.lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92);
}
.lightbox-content {
    position: relative;
    z-index: 2001;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
    -webkit-user-select: none;
}
.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 2002;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2002;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 2.8rem;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    opacity: 0.6;
    transition: opacity 0.2s, background 0.2s;
    line-height: 1;
    user-select: none;
    -webkit-user-select: none;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: rgba(255,255,255,0.2);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2002;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 600;
}
/* === /SECTION:LIGHTBOX === */

/* === SECTION:RESPONSIVE === */
@media (max-width: 768px) {
    .section { padding: 40px 0; }
    .section-heading { font-size: 1.6rem; }
    .hero-title { font-size: 1.7rem; }
    .hero-logo { width: 160px; }
    .hero { padding: 36px 0 40px; }
    .value-grid { grid-template-columns: 1fr; }
    .included-grid { grid-template-columns: 1fr; }
    .stats-inner { gap: 8px; }
    .stat-item { padding: 8px 16px; }
    .stat-number { font-size: 1.3rem; }
    .stat-divider { display: none; }
    .cover-name { font-size: 2.4rem; }
    .pdf-header { flex-direction: column; }
    .pdf-download-btn { align-self: flex-end; }
    .pdf-container { max-height: none; overflow-y: visible; }
    .review-card { min-width: 280px; max-width: 280px; }
    .reviews-carousel { padding: 0 16px 16px; }
    .reviews-track { animation-duration: 30s; }
    .video-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .lightbox-prev,
    .lightbox-next { font-size: 2rem; padding: 6px 12px; }
    .review-thumb { height: 120px; }
}
@media (max-width: 480px) {
    .section-heading { font-size: 1.35rem; }
    .hero-title { font-size: 1.4rem; }
    .hero-logo { width: 140px; }
    .cover-name { font-size: 1.9rem; }
    .stats-inner { flex-direction: column; gap: 16px; }
    .stat-item { padding: 4px 0; }
    .accept-btn { width: 100%; padding: 16px 24px; }
    .review-card { min-width: 260px; max-width: 260px; }
    .reviews-carousel { padding: 0 12px 16px; }
    .reviews-track { animation-duration: 25s; }
    .video-grid { grid-template-columns: 1fr; gap: 16px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .review-thumb { height: 100px; }
}
/* === /SECTION:RESPONSIVE === */.Value -replace 'width:\s*200px', 'width: 400px' ;
    margin-bottom: 24px;
    }
.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
}
.hero-subtitle {
    font-size: 1rem;
    opacity: 0.7;
    font-weight: 500;
}
/* === /SECTION:HERO === */

/* === SECTION:STATS_BAR === */
.stats-bar {
    background: var(--color-bg-dark);
    padding: 28px 0;
}
.stats-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
    flex: 1;
    min-width: 120px;
}
.stat-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-top: 2px;
}
.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
}
/* === /SECTION:STATS_BAR === */

/* === SECTION:VALUE_PROPS === */
.value-section { background: var(--color-bg); }
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.value-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.value-icon {
    width: 52px;
    height: 52px;
    background: var(--color-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-primary);
}
.value-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text);
}
.value-card p {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.55;
}
/* === /SECTION:VALUE_PROPS === */

/* === SECTION:INCLUDED === */
.included-section { background: var(--color-bg-alt); }
.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.included-item {
    display: flex;
    gap: 14px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px;
}
.included-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--color-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 2px;
}
.included-item strong {
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}
.included-item p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
}
/* === /SECTION:INCLUDED === */

/* === SECTION:PROCESS === */
.process-section { background: var(--color-bg); }
.process-timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}
.process-step {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    position: relative;
}
.step-marker {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-text-secondary);
    z-index: 1;
}
.process-step.completed .step-marker {
    background: var(--color-green);
    border-color: var(--color-green);
    color: #fff;
}
.step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.step-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}
/* === /SECTION:PROCESS === */

/* === SECTION:GUARANTEE === */
.guarantee-section {
    background: linear-gradient(135deg, #0a1628 0%, #132244 100%);
    color: #fff;
}
.guarantee-inner { text-align: center; }
.guarantee-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: rgba(245, 166, 35, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}
.guarantee-section .section-heading { color: #fff; }
.guarantee-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    max-width: 640px;
    margin: 16px auto 12px;
}
.guarantee-extra {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}
/* === /SECTION:GUARANTEE === */

/* === SECTION:REVIEWS === */
.reviews-section { background: var(--color-bg-alt); }
.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
}
.reviews-carousel {
    overflow: hidden;
    padding: 0 24px 16px;
}
.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-reviews 40s linear infinite;
}
.reviews-track.paused {
    animation-play-state: paused;
}
@keyframes scroll-reviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.review-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    overflow: hidden;
}
.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.review-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text);
}
.review-source {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--color-text-tertiary);
}
.review-source svg {
    width: 14px;
    height: 14px;
}
.stars {
    font-size: 1.1rem;
    color: var(--color-gold-star);
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.review-text {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    flex: 1;
}
.review-photos {
    margin-top: 16px;
}
.review-thumb {
    position: relative;
    width: 100%;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s;
}
.review-thumb:hover {
    opacity: 0.9;
}
.review-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.review-photo-count {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}
/* === /SECTION:REVIEWS === */

/* === SECTION:VIDEO_TESTIMONIALS === */
.video-section { background: var(--color-bg); }
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.video-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
}
.video-testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    padding: 14px 16px;
}
/* === /SECTION:VIDEO_TESTIMONIALS === */

/* === SECTION:TRUST_BAR === */
.trust-bar {
    background: var(--color-primary);
    padding: 16px 0;
    text-align: center;
}
.trust-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.trust-item {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
}
.trust-sep {
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
}
/* === /SECTION:TRUST_BAR === */

/* === SECTION:PDF === */
.pdf-section { background: var(--color-bg-alt); }
.pdf-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
}
.pdf-download-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.pdf-download-btn:hover { background: var(--color-primary-dark); transform: translateY(-1px); }
.pdf-container {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow-y: auto;
    max-height: 800px;
    padding: 8px;
}
#pdf-pages canvas {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: auto;
    margin-bottom: 1px;
}
.pdf-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    color: var(--color-text-secondary);
    gap: 12px;
}
.pdf-error {
    text-align: center;
    padding: 40px 0;
    color: var(--color-text-secondary);
}
.btn-secondary {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 24px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
/* === /SECTION:PDF === */

/* === SECTION:ACCEPT === */
.accept-section {
    background: var(--color-bg);
    border-top: 3px solid var(--color-green);
}
.accept-inner { text-align: center; }
.accept-btn {
    display: inline-block;
    padding: 18px 52px;
    background: var(--color-green);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin: 20px 0 12px;
    letter-spacing: 0.01em;
}
.accept-btn:hover {
    background: #006b48;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 135, 90, 0.35);
}
.accept-reassurance {
    font-size: 0.82rem;
    color: var(--color-text-tertiary);
    margin-top: 4px;
}
/* === /SECTION:ACCEPT === */

/* === SECTION:FOOTER === */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.5);
    padding: 32px 0;
    text-align: center;
    font-size: 0.82rem;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer p + p { margin-top: 6px; }
/* === /SECTION:FOOTER === */

/* === SECTION:LIGHTBOX === */
.lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92);
}
.lightbox-content {
    position: relative;
    z-index: 2001;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    user-select: none;
    -webkit-user-select: none;
}
.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 2002;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2002;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 2.8rem;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    opacity: 0.6;
    transition: opacity 0.2s, background 0.2s;
    line-height: 1;
    user-select: none;
    -webkit-user-select: none;
}
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: rgba(255,255,255,0.2);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2002;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 600;
}
/* === /SECTION:LIGHTBOX === */

/* === SECTION:RESPONSIVE === */
@media (max-width: 768px) {
    .section { padding: 40px 0; }
    .section-heading { font-size: 1.6rem; }
    .hero-title { font-size: 1.7rem; }
    .hero-logo { width: 160px; }
    .hero { padding: 36px 0 40px; }
    .value-grid { grid-template-columns: 1fr; }
    .included-grid { grid-template-columns: 1fr; }
    .stats-inner { gap: 8px; }
    .stat-item { padding: 8px 16px; }
    .stat-number { font-size: 1.3rem; }
    .stat-divider { display: none; }
    .cover-name { font-size: 2.4rem; }
    .pdf-header { flex-direction: column; }
    .pdf-download-btn { align-self: flex-end; }
    .pdf-container { max-height: none; overflow-y: visible; }
    .review-card { min-width: 280px; max-width: 280px; }
    .reviews-carousel { padding: 0 16px 16px; }
    .reviews-track { animation-duration: 30s; }
    .video-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .lightbox-prev,
    .lightbox-next { font-size: 2rem; padding: 6px 12px; }
    .review-thumb { height: 120px; }
}
@media (max-width: 480px) {
    .section-heading { font-size: 1.35rem; }
    .hero-title { font-size: 1.4rem; }
    .hero-logo { width: 140px; }
    .cover-name { font-size: 1.9rem; }
    .stats-inner { flex-direction: column; gap: 16px; }
    .stat-item { padding: 4px 0; }
    .accept-btn { width: 100%; padding: 16px 24px; }
    .review-card { min-width: 260px; max-width: 260px; }
    .reviews-carousel { padding: 0 12px 16px; }
    .reviews-track { animation-duration: 25s; }
    .video-grid { grid-template-columns: 1fr; gap: 16px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .review-thumb { height: 100px; }
}
/* === /SECTION:RESPONSIVE === */