:root {
    --primary: #2d5a7b;
    --secondary: #e8a838;
    --accent: #1a3d5c;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-cream: #fef7ed;
    --bg-blue: #eef4f8;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.narrow-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

.hero-editorial {
    background: linear-gradient(135deg, var(--bg-blue) 0%, var(--bg-cream) 100%);
    padding: 80px 24px 100px;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.hero-label {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.editorial-section {
    padding: 80px 24px;
}

.editorial-section.alt-bg {
    background: var(--bg-light);
}

.editorial-section.cream-bg {
    background: var(--bg-cream);
}

.editorial-section.blue-bg {
    background: var(--bg-blue);
}

.section-title {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.article-text:last-child {
    margin-bottom: 0;
}

.inline-image {
    width: 100%;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: var(--shadow);
}

.quote-block {
    border-left: 4px solid var(--secondary);
    padding: 24px 32px;
    margin: 40px 0;
    background: var(--bg-cream);
    border-radius: 0 12px 12px 0;
}

.quote-block p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 12px;
}

.quote-block cite {
    color: var(--text-light);
    font-size: 0.95rem;
}

.split-section {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin: 32px 0;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.author-info h4 {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 4px;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 80px 24px;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: var(--secondary);
}

.cta-section .btn-primary:hover {
    background: #d49730;
}

.inline-cta {
    background: var(--bg-cream);
    border-radius: 12px;
    padding: 32px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.inline-cta p {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 500;
}

.form-section {
    padding: 80px 24px;
    background: var(--bg-light);
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--accent);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 48px;
}

.contact-item {
    flex: 1 1 200px;
}

.contact-item h4 {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

footer {
    background: var(--accent);
    color: var(--white);
    padding: 60px 24px 24px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--secondary);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s;
    display: none;
}

.sticky-cta:hover {
    background: #d49730;
    transform: scale(1.05);
}

.sticky-cta.visible {
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: var(--white);
    padding: 20px 24px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-inner p {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-inner a {
    color: var(--secondary);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.cookie-accept:hover {
    background: #d49730;
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-reject:hover {
    border-color: var(--white);
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
}

.thanks-content h1 {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.page-header {
    background: linear-gradient(135deg, var(--bg-blue) 0%, var(--bg-light) 100%);
    padding: 60px 24px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.4rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.legal-content {
    padding: 60px 24px;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--accent);
    margin: 40px 0 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: var(--text-dark);
}

.legal-content li {
    margin-bottom: 8px;
}

.about-story {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-main {
    flex: 2;
}

.about-sidebar {
    flex: 1;
    background: var(--bg-cream);
    padding: 32px;
    border-radius: 16px;
}

.about-sidebar h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.about-sidebar ul {
    list-style: none;
}

.about-sidebar li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--text-dark);
}

.about-sidebar li:last-child {
    border-bottom: none;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.feature-text h4 {
    color: var(--accent);
    margin-bottom: 6px;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    gap: 32px;
    padding: 48px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 80px 24px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    font-size: 1.5rem;
    color: var(--accent);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
}

@media (max-width: 968px) {
    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .about-story {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .footer-grid {
        gap: 32px;
    }

    .inline-cta {
        flex-direction: column;
        text-align: center;
    }

    .form-container {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
