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

:root {
    --primary: #1a3a5c;
    --secondary: #2d5a87;
    --accent: #d4a853;
    --text: #2c3e50;
    --text-light: #5a6c7d;
    --bg: #fafbfc;
    --bg-alt: #f0f4f8;
    --white: #ffffff;
    --border: #dde4eb;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.container--narrow {
    max-width: 760px;
}

.container--wide {
    max-width: 1320px;
}

/* Navigation */
.nav {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    position: relative;
    z-index: 100;
}

.nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.nav__logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav__logo span {
    color: var(--accent);
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav__link {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Editorial */
.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.hero-editorial__label {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-editorial__title {
    font-size: 2.8rem;
    line-height: 1.2;
    max-width: 680px;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-editorial__lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 580px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-editorial__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-editorial__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: var(--primary);
}

/* Story Section */
.story-section {
    padding: 70px 0;
}

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

.story-section__eyebrow {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.story-section__title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.story-section__text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 18px;
}

.story-section__image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.story-section__image img {
    width: 100%;
    display: block;
}

.inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
    margin-top: 15px;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.inline-cta:hover {
    border-bottom-color: var(--accent);
    color: var(--secondary);
}

/* Services Cards */
.services-grid {
    padding: 80px 0;
}

.services-grid__header {
    text-align: center;
    margin-bottom: 50px;
}

.services-grid__title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.services-grid__subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-grid__items {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 36px 28px;
    flex: 1 1 320px;
    max-width: 380px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.service-card__title {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
}

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

.service-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 18px;
}

.service-card__amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

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

.service-card__cta {
    display: block;
    text-align: center;
    background: var(--bg-alt);
    color: var(--secondary);
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
}

.service-card__cta:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Quote Block */
.quote-block {
    padding: 60px 0;
    background: var(--primary);
    color: var(--white);
}

.quote-block__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quote-block__text {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 700px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote-block__author {
    font-size: 1rem;
    opacity: 0.8;
}

/* Stats Row */
.stats-row {
    padding: 60px 0;
    background: var(--bg-alt);
}

.stats-row__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-item__number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

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

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-section__header {
    text-align: center;
    margin-bottom: 50px;
}

.team-section__title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.team-section__subtitle {
    color: var(--text-light);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    text-align: center;
    flex: 0 1 260px;
}

.team-member__photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-alt), var(--border));
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-member__photo svg {
    width: 60px;
    height: 60px;
    fill: var(--text-light);
}

.team-member__name {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

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

/* CTA Banner */
.cta-banner {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
}

.cta-banner__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-banner__text {
    flex: 1 1 400px;
}

.cta-banner__title {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-banner__subtitle {
    opacity: 0.9;
    font-size: 1.05rem;
}

.cta-banner__button {
    background: var(--accent);
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-banner__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    color: var(--primary);
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.form-section__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.form-section__info {
    flex: 1 1 300px;
}

.form-section__title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.form-section__text {
    color: var(--text-light);
    margin-bottom: 25px;
}

.form-section__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

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

.form-section__contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.form-section__contact-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.form-section__contact-value {
    color: var(--text);
    font-weight: 500;
}

.form-wrapper {
    flex: 1 1 400px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.form-wrapper__title {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(45,90,135,0.1);
}

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

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

.form-submit:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__col {
    flex: 1 1 200px;
}

.footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer__logo span {
    color: var(--accent);
}

.footer__desc {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer__title {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: var(--accent);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-banner__text {
    flex: 1 1 400px;
    font-size: 0.95rem;
    color: var(--text);
}

.cookie-banner__text a {
    color: var(--secondary);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    transition: background 0.3s, transform 0.3s;
}

.cookie-btn--accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-btn--accept:hover {
    background: var(--secondary);
}

.cookie-btn--reject {
    background: var(--bg-alt);
    color: var(--text);
}

.cookie-btn--reject:hover {
    background: var(--border);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 99;
}

.sticky-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    color: var(--primary);
}

.sticky-cta__btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header__title {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.page-header__breadcrumb {
    font-size: 0.95rem;
    opacity: 0.8;
}

.page-header__breadcrumb a {
    color: var(--white);
    opacity: 0.8;
}

.page-header__breadcrumb a:hover {
    opacity: 1;
}

/* Content Page */
.content-page {
    padding: 60px 0;
}

.content-page h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin: 35px 0 15px;
}

.content-page h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 25px 0 12px;
}

.content-page p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.content-page ul {
    margin: 15px 0 15px 25px;
    color: var(--text-light);
}

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

/* Thanks Page */
.thanks-section {
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-section__icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-section__icon svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
}

.thanks-section__title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.thanks-section__text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 30px;
}

.thanks-section__btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-section__btn:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Contact Page Specific */
.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    flex: 1 1 280px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.contact-info-card__icon {
    width: 60px;
    height: 60px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.contact-info-card__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.contact-info-card__title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

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

/* About Page */
.about-story {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
}

.about-story__content {
    flex: 1 1 400px;
}

.about-story__image {
    flex: 1 1 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-story__title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 18px;
}

.about-story__text {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Values */
.values-section {
    padding: 70px 0;
    background: var(--bg-alt);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    flex: 1 1 250px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.value-card__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-card__title {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 10px;
}

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

/* Mobile Styles */
@media (max-width: 768px) {
    .nav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: none;
    }

    .nav__menu.active {
        display: flex;
    }

    .nav__toggle {
        display: flex;
    }

    .hero-editorial__title {
        font-size: 2rem;
    }

    .hero-editorial {
        padding: 50px 0 40px;
    }

    .services-grid__items {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

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

    .form-section__inner {
        flex-direction: column;
    }

    .form-wrapper {
        padding: 25px;
    }

    .footer__inner {
        flex-direction: column;
    }

    .stats-row__inner {
        gap: 30px;
    }

    .stat-item__number {
        font-size: 2.2rem;
    }

    .quote-block__text {
        font-size: 1.2rem;
    }

    .sticky-cta {
        bottom: 100px;
        right: 15px;
    }

    .sticky-cta__btn {
        width: 50px;
        height: 50px;
    }

    .page-header__title {
        font-size: 1.8rem;
    }

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

@media (max-width: 480px) {
    .hero-editorial__title {
        font-size: 1.7rem;
    }

    .services-grid__title,
    .story-section__title {
        font-size: 1.6rem;
    }

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

    .cookie-banner__buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
