@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #1a1a1a;
    --accent-color: #d4af37;
    --text-color: #333;
    --light-gray: #f8f8f8;
    --border-color: #e0e0e0;
    --max-width: 680px;
    --spacing-unit: 2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    font-size: 16px;
}

.editorial-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--spacing-unit) 1rem;
}

.editorial-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.introduction {
    margin-bottom: 3rem;
}

.lead {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.content-block h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.content-block p {
    margin-bottom: 1.5rem;
}

.content-block strong {
    color: var(--accent-color);
    font-weight: 700;
}

.hero-image,
.tech-image,
.app-image {
    margin: 2rem 0;
    text-align: center;
}

.hero-image img,
.tech-image img,
.app-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image figcaption,
.tech-image figcaption,
.app-image figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

.cta-block {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.cta-block h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-block p {
    margin-bottom: 1.5rem;
    color: #666;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-button.primary {
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.cta-button.primary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.cta-button i {
    margin-right: 0.5rem;
}

.testimonial-section {
    margin: 3rem 0;
    padding: 2rem 0;
    background: var(--light-gray);
    border-radius: 12px;
}

.testimonial-section h3 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.testimonial {
    background: white;
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.testimonial cite {
    font-weight: 700;
    color: var(--accent-color);
    font-style: normal;
}

.specs-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.specs-section h3 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.spec-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-3px);
}

.spec-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.spec-item p {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.final-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
    color: white;
    border-radius: 12px;
    margin: 3rem 0;
}

.final-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

.final-cta .cta-button {
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 1.5rem 3rem;
}

.final-cta .cta-button:hover {
    background: white;
    color: var(--primary-color);
}

.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

.legal-info {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.legal-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.legal-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #ccc;
}

.disclaimer {
    text-align: center;
    padding: 2rem 1rem 0;
    border-top: 1px solid #444;
    max-width: var(--max-width);
    margin: 0 auto;
}

.disclaimer p {
    font-size: 0.8rem;
    color: #999;
}

@media (max-width: 768px) {
    :root {
        --max-width: 100%;
        --spacing-unit: 1.5rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .lead {
        font-size: 1.2rem;
    }
    
    .content-block h3 {
        font-size: 1.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .final-cta h3 {
        font-size: 2rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

.contact-form {
    max-width: 600px;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-info {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    min-width: 30px;
}

.contact-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.contact-item .note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.legal-contacts {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.legal-contacts h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-contacts p {
    margin-bottom: 0.5rem;
    color: #666;
}

.faq-section {
    margin: 2rem 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.professional-links {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.pro-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pro-link:hover {
    background: var(--primary-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-3px);
}

.team-member h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-member .title {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
    line-height: 1.6;
}

.philosophy-list {
    margin: 2rem 0;
}

.philosophy-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-2px);
}

.philosophy-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    min-width: 30px;
    margin-top: 0.2rem;
}

.philosophy-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.philosophy-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.partners-section {
    margin: 2rem 0;
}

.partner-category {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.partner-category:hover {
    transform: translateY(-2px);
}

.partner-category h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partner-category p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .editorial-content {
        font-size: 1rem;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .content-block h3 {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .final-cta .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .professional-links {
        flex-direction: column;
    }
    
    .pro-link {
        justify-content: center;
    }
}
