:root {
    --primary: #1a3a52;
    --secondary: #3d7a9e;
    --accent: #e8a54b;
    --dark: #0f1c24;
    --light: #f7f9fb;
    --grey: #6b7c8a;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(26, 58, 82, 0.12);
    --shadow-lg: 0 16px 48px rgba(26, 58, 82, 0.18);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
}

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

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

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

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

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

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

h1 { font-size: 3rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.25rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: #d4932e;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

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

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

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

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

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

nav a {
    padding: 10px 18px;
    color: var(--dark);
    font-weight: 500;
    border-radius: var(--radius);
}

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

nav a.active {
    background: var(--primary);
    color: var(--white);
}

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%233d7a9e" stroke-width="0.5" opacity="0.3"/><circle cx="50" cy="50" r="30" fill="none" stroke="%233d7a9e" stroke-width="0.5" opacity="0.2"/><circle cx="50" cy="50" r="20" fill="none" stroke="%233d7a9e" stroke-width="0.5" opacity="0.15"/></svg>') center/contain no-repeat;
    opacity: 0.4;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

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

.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-graphic {
    width: 380px;
    height: 380px;
    background: linear-gradient(145deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-graphic::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.hero-graphic svg {
    width: 180px;
    height: 180px;
    fill: var(--white);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.section {
    padding: 80px 0;
}

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

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

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

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--grey);
    font-size: 1.1rem;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.75);
}

.features-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.features-row.reverse {
    flex-direction: row-reverse;
}

.features-image {
    flex: 1;
    min-height: 400px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.features-image svg {
    width: 200px;
    height: 200px;
    fill: var(--white);
    opacity: 0.8;
}

.features-content {
    flex: 1;
}

.features-content h2 {
    margin-bottom: 1rem;
}

.features-content p {
    color: var(--grey);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 36px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
}

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

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

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--grey);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--grey);
}

.benefits-wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.benefits-main {
    flex: 2;
}

.benefits-side {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 120px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.benefit-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
    flex-shrink: 0;
}

.benefit-text h4 {
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: var(--grey);
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    counter-reset: step;
}

.process-step {
    flex: 1 1 calc(25% - 18px);
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.process-step h4 {
    margin-top: 8px;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--grey);
    font-size: 0.9rem;
    margin: 0;
}

.testimonials-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-info strong {
    display: block;
    color: var(--primary);
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--grey);
}

.cta-banner {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(15deg);
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    position: relative;
}

.form-section {
    padding: 100px 0;
    background: var(--light);
}

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

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 1rem;
}

.form-info p {
    color: var(--grey);
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-details svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-details strong {
    display: block;
    margin-bottom: 4px;
}

.contact-details span {
    color: var(--grey);
    font-size: 0.95rem;
}

.form-container {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: var(--radius);
    transition: var(--transition);
    font-family: inherit;
}

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

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-brand {
    flex: 1.5 1 280px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
    display: inline-block;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.page-header {
    padding: 140px 0 60px;
    background: var(--primary);
    text-align: center;
}

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

.page-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    margin-top: 2rem;
}

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

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 260px;
    text-align: center;
}

.team-avatar {
    width: 140px;
    height: 140px;
    background: var(--secondary);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
}

.team-card h4 {
    margin-bottom: 0.25rem;
}

.team-card span {
    color: var(--grey);
    font-size: 0.95rem;
}

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

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

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

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

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

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

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

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--grey);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.875rem; }

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

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

    .hero p { margin: 0 auto 2rem; }

    .hero-buttons { justify-content: center; }

    .hero-graphic {
        width: 280px;
        height: 280px;
    }

    .features-row,
    .features-row.reverse {
        flex-direction: column;
    }

    .features-image {
        min-height: 300px;
        width: 100%;
    }

    .benefits-wrap {
        flex-direction: column;
    }

    .benefits-side {
        position: static;
        width: 100%;
    }

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

    .cta-banner { padding: 40px 24px; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }

    nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
    }

    nav.open { display: flex; }

    nav a {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .mobile-toggle { display: flex; }

    .hero { padding: 140px 0 80px; }

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

    .process-step { flex: 1 1 calc(50% - 12px); }

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

    .form-row { flex-direction: column; gap: 0; }

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

    .footer-links { justify-content: center; }

    .stats-row { gap: 30px; }

    .stat-number { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

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

    .container { padding: 0 16px; }

    .btn { padding: 12px 24px; }

    .service-card { padding: 28px; }

    .form-container { padding: 28px; }

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