:root {
    --primary: #1a3d5c;
    --secondary: #e8a838;
    --accent: #2d6a9f;
    --dark: #0f1f2e;
    --light: #f7f9fc;
    --text: #2c3e50;
    --text-muted: #5a6d7e;
    --white: #ffffff;
    --border: #d1dce5;
    --success: #27ae60;
    --shadow: 0 4px 24px rgba(26, 61, 92, 0.08);
    --shadow-lg: 0 12px 48px rgba(26, 61, 92, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 2.8rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.6rem; margin-bottom: 1rem; }
h4 { font-size: 1.3rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1.25rem; }

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

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

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

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo__icon {
    width: 38px;
    height: 38px;
    background: var(--secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo__icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

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

.nav__link:hover {
    color: var(--primary);
}

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

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(232, 168, 56, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero__badge {
    display: inline-block;
    background: rgba(232, 168, 56, 0.2);
    color: var(--secondary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 24px;
}

.hero__text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

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

.btn--primary:hover {
    background: #d69a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 168, 56, 0.35);
    color: var(--dark);
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn--dark {
    background: var(--dark);
    color: var(--white);
}

.btn--dark:hover {
    background: var(--primary);
}

.btn--lg {
    padding: 18px 42px;
    font-size: 1.1rem;
}

.btn--sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn__icon {
    width: 20px;
    height: 20px;
}

/* Editorial Content */
.editorial {
    padding: 80px 0;
}

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

.editorial--dark {
    background: var(--dark);
    color: var(--white);
}

.editorial--dark h2,
.editorial--dark h3 {
    color: var(--white);
}

.editorial__lead {
    font-size: 1.35rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.editorial__image {
    margin: 48px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.editorial__image img {
    width: 100%;
    object-fit: cover;
}

.editorial__image--wide {
    margin-left: -80px;
    margin-right: -80px;
}

.editorial__quote {
    background: var(--light);
    border-left: 4px solid var(--secondary);
    padding: 32px 40px;
    margin: 48px 0;
    border-radius: 0 12px 12px 0;
}

.editorial__quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 12px;
}

.editorial__quote cite {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: normal;
}

/* Inline CTA */
.inline-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px;
    padding: 48px;
    margin: 56px 0;
    text-align: center;
    color: var(--white);
}

.inline-cta h3 {
    color: var(--white);
    margin-bottom: 16px;
}

.inline-cta p {
    opacity: 0.9;
    margin-bottom: 28px;
}

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

.service-card {
    flex: 1 1 340px;
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow);
    transition: all 0.35s ease;
    border: 1px solid var(--border);
}

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

.service-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary) 0%, #f0b84a 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

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

.service-card h4 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-card__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card__price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.service-card__features {
    list-style: none;
    margin-bottom: 24px;
}

.service-card__features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    padding: 64px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--light);
}

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

.testimonial {
    flex: 1 1 320px;
    background: var(--white);
    padding: 36px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.testimonial__stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial__name {
    font-weight: 600;
    color: var(--dark);
}

.testimonial__role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Process */
.process {
    padding: 80px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 48px;
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.process-step__number {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.process-step__content {
    flex: 1;
}

.process-step__content h4 {
    margin-bottom: 8px;
}

.process-step__content p {
    color: var(--text-muted);
}

/* Form Styles */
.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}

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

.form-wrapper h2 {
    text-align: center;
    margin-bottom: 12px;
}

.form-wrapper > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 36px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(45, 106, 159, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%235a6d7e' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 48px;
}

.form-submit {
    margin-top: 32px;
}

.form-submit .btn {
    width: 100%;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-item__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item__icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.contact-item h4 {
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 36px 0;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    background: var(--light);
    border-radius: 12px;
    transition: background 0.25s ease;
}

.feature-item:hover {
    background: #eef3f8;
}

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

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

.feature-item h4 {
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
}

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

.footer__col {
    flex: 1 1 200px;
}

.footer__col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer__links {
    list-style: none;
}

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

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

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

.footer__brand {
    max-width: 280px;
}

.footer__brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer__brand p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer__legal a:hover {
    color: var(--secondary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px 24px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-banner p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

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

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

.cookie-banner__btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

.cookie-banner__btn--accept {
    background: var(--secondary);
    color: var(--dark);
}

.cookie-banner__btn--accept:hover {
    background: #d69a2e;
}

.cookie-banner__btn--reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner__btn--reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Thanks Page */
.thanks {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
}

.thanks__icon {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

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

.thanks h1 {
    margin-bottom: 16px;
}

.thanks p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 540px;
    margin: 0 auto 32px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta .btn {
    box-shadow: 0 8px 32px rgba(232, 168, 56, 0.4);
}

/* About Page */
.about-hero {
    background: var(--light);
    padding: 80px 0;
}

.about-hero h1 {
    margin-bottom: 20px;
}

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

.team-member {
    flex: 1 1 280px;
    text-align: center;
    padding: 36px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.team-member__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
}

.team-member h4 {
    margin-bottom: 4px;
}

.team-member__role {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Legal Pages */
.legal {
    padding: 80px 0;
}

.legal h1 {
    margin-bottom: 16px;
}

.legal__updated {
    color: var(--text-muted);
    margin-bottom: 48px;
}

.legal h2 {
    margin-top: 48px;
    font-size: 1.5rem;
}

.legal h3 {
    margin-top: 32px;
    font-size: 1.2rem;
}

.legal ul, .legal ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

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

.page-header h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-header p {
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* Two Column Layout */
.two-col {
    display: flex;
    gap: 64px;
    align-items: center;
}

.two-col--reverse {
    flex-direction: row-reverse;
}

.two-col__content {
    flex: 1;
}

.two-col__image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(232, 168, 56, 0.1) 0%, rgba(45, 106, 159, 0.1) 100%);
    border: 1px solid rgba(232, 168, 56, 0.3);
    border-radius: 16px;
    padding: 36px;
    margin: 36px 0;
}

.highlight-box h4 {
    color: var(--primary);
    margin-bottom: 12px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 999;
    display: none;
    flex-direction: column;
    padding: 80px 32px 32px;
}

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

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.3rem;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hero h1 { font-size: 2.5rem; }

    .two-col {
        flex-direction: column;
    }

    .two-col--reverse {
        flex-direction: column;
    }

    .stats {
        gap: 40px;
    }

    .editorial__image--wide {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    body { font-size: 16px; }

    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }

    .hero { padding: 60px 0 80px; }
    .hero h1 { font-size: 2rem; }
    .hero__text { font-size: 1.05rem; }

    .nav { display: none; }
    .hamburger { display: flex; }

    .editorial { padding: 56px 0; }

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

    .footer__grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .stats { gap: 32px; }
    .stat__number { font-size: 2.5rem; }

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

    .process-step {
        flex-direction: column;
        gap: 20px;
    }

    .sticky-cta {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }

    .sticky-cta .btn {
        width: 100%;
    }

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

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero { padding: 48px 0 64px; }
    .hero h1 { font-size: 1.7rem; }

    .btn { padding: 12px 24px; }
    .btn--lg { padding: 14px 32px; }

    .inline-cta { padding: 32px 24px; }

    .editorial__quote { padding: 24px; }
}
