﻿/* Comprehensive Minimalist Styles — covers all template classes */



/* Footer */
.footer {
    background: var(--bg-subtle);
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
}
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo { width: 32px; height: 32px; }
.footer-content { display: flex; flex-wrap: wrap; gap: 48px; margin-bottom: 32px; }
.footer-section { flex: 1; min-width: 200px; }
.footer-section h4 { margin-bottom: 16px; font-size: 1rem; color: var(--text-main); }
.footer-section a { display: block; margin-bottom: 8px; }
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* Reset & base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background: var(--bg-body);
    font-size: 16px;
}

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 0 var(var(--space-sm)); }
.section { padding: 80px 0; }
.section-header { margin-bottom: 48px; text-align: center; }
.section-title { font-size: 2rem; font-weight: 600; color: var(--text-main); margin-bottom: 12px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); }

/* Header */
.header {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: var(var(--space-sm)) 0;
    position: sticky; top: 0; z-index: 100;
}
.logo-container { display: flex; align-items: center; gap: var(var(--space-sm)); }
.brand-name { font-size: 1.5rem; font-weight: 700; color: var(--text-main); }
.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(var(--radius));
    transition: all 0.2s;
}
.nav-links a:hover { color: var(--accent); background: var(--bg-subtle); }

/* Hero */
.hero, .hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, var(--bg-subtle) 0%, var(--bg-body) 100%);
    text-align: center;
}
.hero-content, .hero-text { max-width: 800px; margin: 0 auto; }
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-image, .hero-img {
    width: 100%;
    border-radius: var(var(--radius)-lg);
    margin-top: 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    background: var(--bg-subtle);
    min-height: 300px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Page hero (inner pages) */
.page-hero {
    padding: 100px 0 80px;
    background: var(--bg-subtle);
    text-align: center;
}
.page-hero h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; }
.page-hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(var(--radius));
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    text-decoration: none;
}
.btn-primary {
    background: var(--accent);
    color: white;
    border: none;
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59,130,246,0.2);
}
.btn-secondary, .btn-outline {
    background: transparent;
    color: var(--text-main);
    border-color: var(--border);
}
.btn-secondary:hover, .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.btn-product { width: 100%; }

/* Cards & features */
.card, .feature, .feature-card, .chain-card, .contact-card, .achievement-item, .benefit-item, .product-card, .legal-card {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(var(--radius));
    padding: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}
.card:hover, .feature:hover, .feature-card:hover, .chain-card:hover, .contact-card:hover, .product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.feature-icon, .chain-icon, .contact-icon, .achievement-icon, .value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(var(--radius));
    background: var(--bg-subtle);
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 1.5rem;
}
.chain-icon, .achievement-icon { border-radius: 50%; width: 56px; height: 56px; margin: 0 auto 16px; }

/* Grids */
.features-grid, .chains-grid, .benefits-grid, .achievements-grid, .contacts-grid, .products-grid {
    display: grid;
    gap: 24px;
}
.features-grid, .benefits-grid, .achievements-grid, .contacts-grid, .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.chains-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* About / Mission / Content blocks */
.about-image-section, .mission-section, .content-section, .future-vision-section, .how-it-works, .multi-chain, .security, .stats {
    padding: 80px 0;
}
.about-image, .mission-illustration, .vision-illustration, .security-image, .security-img {
    width: 100%;
    border-radius: var(var(--radius)-lg);
    background: var(--bg-subtle);
    min-height: 250px;
}
.mission-content { max-width: 600px; }
.mission-text, .security-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.1rem;
}
.vision-content { max-width: 600px; }
.vision-text { color: var(--text-muted); line-height: 1.7; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.value-item {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(var(--radius));
    padding: 24px;
    text-align: center;
}

/* Products */
.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--bg-subtle);
    border-radius: var(var(--radius)) var(var(--radius)) 0 0;
}
.product-content { padding: 20px; }
.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    margin: 12px 0;
}

/* Security layout */
.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Steps (how it works) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.step-card {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(var(--radius));
    padding: 24px;
    text-align: center;
    position: relative;
}
.step-number {
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 16px;
}

/* Stats */
.stats { background: var(--bg-subtle); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.stat-card {
    background: var(--bg-body);
    border: 1px solid var(--border);
    border-radius: var(var(--radius));
    padding: 24px;
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Forms */
.input-group { margin-bottom: 20px; }
.input-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.9rem;
}
.input-field {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(var(--radius));
    font-size: 1rem;
    background: var(--bg-body);
    color: var(--text-main);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.input-field:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Lead paragraph */
.lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Text utilities */
.text-center { text-align: center; }
.mb-sm { margin-bottom: var(var(--space-sm)); }
.mb-md { margin-bottom: calc(var(var(--space-sm)) * 1.5); }

/* Footer */
.footer {
    background: var(--bg-subtle);
    padding: 48px 0;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
}
.footer-logo img { width: 100%; height: auto; }
.footer-section a:hover { color: var(--accent); }

/* Image captions */
.image-caption {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.5;
}


/* Footer list resets */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section li {
    margin-bottom: 8px;
}
.footer-section a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-section a:hover {
    color: var(--accent);
}
.footer-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 12px;
}

