/* ==========================================
   HOT-WOOD - Grav CMS Theme
   Цветовая схема: Красно-оранжевая
   ========================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Orange-Red */
    --primary: #E85A1B;
    --primary-light: #FF7A3D;
    --primary-dark: #C4440A;
    --primary-50: rgba(232, 90, 27, 0.05);
    --primary-100: rgba(232, 90, 27, 0.1);
    
    /* Accent Colors - Warm tones */
    --accent: #FFB347;
    --accent-light: #FFD699;
    --accent-dark: #E89000;
    
    /* Dark tones for text */
    --dark: #2D2926;
    --dark-light: #4A4542;
    
    /* Background Colors */
    --background: #FFFBF7;
    --background-alt: #FFF5ED;
    --muted: #FEF3E8;
    --muted-foreground: #6B5D52;
    
    /* Neutrals */
    --white: #FFFFFF;
    --border: #F0E6DC;
    --card: #FFFFFF;
    --card-foreground: #2D2926;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --header-height: 70px;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(232, 90, 27, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(232, 90, 27, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(232, 90, 27, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(232, 90, 27, 0.15);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--background);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================
   Header
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
}

.logo:hover {
    color: var(--dark);
}

.logo-image {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.logo-hot {
    color: var(--primary);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--dark-light);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.2s;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-color: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================
   Badge
   ========================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-100);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================
   Section Styles
   ========================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    margin-top: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--background) 0%, var(--background-alt) 100%);
}

/* Hero with background image */
.hero-section.has-background {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-section.has-background .container {
    position: relative;
    z-index: 2;
}

.hero-section.has-background .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-section.has-background .btn-outline:hover {
    border-color: #fff;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    display: block;
    color: var(--primary);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--dark-light);
}

.hero-features svg {
    color: var(--primary);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* ==========================================
   About Section
   ========================================== */
.about-section {
    padding: 4rem 0;
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.advantage-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.3s;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.advantage-icon svg {
    color: var(--primary);
}

.advantage-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.advantage-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.info-box {
    display: flex;
    gap: 2rem;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--muted) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
}

.info-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.info-icon svg {
    color: var(--primary);
}

.info-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--muted-foreground);
}

/* ==========================================
   Models Section
   ========================================== */
.models-section {
    padding: 4rem 0;
    background: var(--background);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.model-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.model-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.model-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.model-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--muted);
}

.model-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.model-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.model-slider img.active {
    opacity: 1;
}

.model-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.model-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.model-slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.model-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.model-slider-arrow:hover {
    background: white;
}

/* Show arrows on touch devices always */
@media (hover: none) and (pointer: coarse) {
    .model-slider-arrow {
        opacity: 1;
    }
}

/* Show arrows on hover for desktop */
@media (hover: hover) {
    .model-slider-arrow {
        opacity: 0;
    }
    .model-card:hover .model-slider-arrow {
        opacity: 1;
    }
}

.model-slider-arrow.prev {
    left: 12px;
}

.model-slider-arrow.next {
    right: 12px;
}

.model-slider-arrow svg {
    color: var(--dark);
    width: 20px;
    height: 20px;
}

.model-single-image {
    position: relative;
    height: 100%;
    width: 100%;
}

.model-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

@media (hover: hover) {
    .model-card:hover .model-single-image img,
    .model-card:hover .model-image img {
        transform: scale(1.05);
    }
}

.model-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.model-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
}

.model-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.model-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
}

.model-price {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    margin-left: 0.5rem;
}

.model-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.model-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--dark-light);
}

.spec svg {
    color: var(--primary);
}

.model-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.feature-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: var(--muted);
    border-radius: var(--radius-sm);
    color: var(--dark-light);
}

.model-footer {
    padding: 1.5rem;
    padding-top: 0;
    margin-top: auto;
}

.models-footer {
    text-align: center;
    padding-top: 2rem;
}

.models-footer p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

/* ==========================================
   Calculator Section
   ========================================== */
.calculator-section {
    padding: 4rem 0;
    background: var(--white);
}

.calculator-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-feature {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.feature-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.feature-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ==========================================
   Calculator Modal
   ========================================== */
.calculator-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.calculator-modal.active {
    opacity: 1;
    visibility: visible;
}

.calculator-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.calculator-modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.calculator-modal.active .calculator-modal-content {
    transform: translateY(0);
}

.calculator-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 100%);
    flex-shrink: 0;
}

.calculator-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.calculator-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.calculator-modal-close:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.calculator-modal-close:hover svg {
    color: white;
}

.calculator-modal-close svg {
    color: var(--dark-light);
    width: 20px;
    height: 20px;
}

.calculator-modal-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

/* Calculator Modal Responsive */
@media (max-width: 768px) {
    .calculator-modal {
        padding: 0;
        align-items: flex-end;
    }
    
    .calculator-modal-content {
        max-width: 100%;
        max-height: 85vh;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        transform: translateY(100%);
    }
    
    .calculator-modal.active .calculator-modal-content {
        transform: translateY(0);
    }
    
    .calculator-modal-header {
        padding: 1rem 1.25rem;
    }
    
    .calculator-modal-body {
        padding: 1.25rem;
    }
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    padding: 4rem 0;
    background: var(--background-alt);
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-crm-form {
    width: 100%;
    max-width: 600px;
}

.contact-info-centered {
    width: 100%;
    max-width: 500px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-100);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--primary);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text strong {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-text a,
.contact-text span {
    font-size: 0.875rem;
    color: var(--dark-light);
}

.contact-text a:hover {
    color: var(--primary);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.875rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--background);
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-nav h4,
.footer-legal h4,
.footer-contacts h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-nav ul,
.footer-legal ul,
.footer-contacts ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a,
.footer-legal a,
.footer-contacts a,
.footer-contacts span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-nav a:hover,
.footer-legal a:hover,
.footer-contacts a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .info-box {
        flex-direction: column;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .logo-image {
        height: 36px;
    }
}

/* Mobile Navigation */
.main-nav.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
}

.main-nav.active ul {
    flex-direction: column;
    gap: 0.5rem;
}

.main-nav.active a {
    display: block;
    padding: 0.5rem 0;
    color: var(--dark);
}

.main-nav.active a:hover {
    color: var(--primary);
}

/* ==========================================
   Static Pages (Privacy, Terms, etc.)
   ========================================== */
.static-page {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 4rem;
    min-height: calc(100vh - 200px);
    background: var(--background);
}

.static-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.static-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 100%);
}

.static-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.2;
}

.static-meta {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.static-body {
    padding: 2rem 2.5rem;
}

.static-body h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.static-body h2:first-child {
    margin-top: 0;
}

.static-body h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.static-body p {
    color: var(--dark-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.static-body ul,
.static-body ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.static-body li {
    color: var(--dark-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.static-body ul li {
    list-style-type: disc;
}

.static-body ol li {
    list-style-type: decimal;
}

.static-body strong {
    color: var(--dark);
    font-weight: 600;
}

.static-body hr {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 2rem 0;
}

.static-body a {
    color: var(--primary);
    text-decoration: underline;
}

.static-body a:hover {
    color: var(--primary-dark);
}

.static-footer {
    padding: 1.5rem 2.5rem 2rem;
    border-top: 1px solid var(--border);
    background: var(--background);
}

@media (max-width: 768px) {
    .static-page {
        padding-top: calc(var(--header-height) + 1.5rem);
        padding-bottom: 2rem;
    }
    
    .static-header {
        padding: 1.5rem;
    }
    
    .static-title {
        font-size: 1.5rem;
    }
    
    .static-body {
        padding: 1.5rem;
    }
    
    .static-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
}
