:root {
    --primary: #1a2f4b;
    --secondary: #d4a853;
    --accent: #3d6b8f;
    --dark: #0d1821;
    --light: #f7f4ef;
    --muted: #6b7d8a;
    --white: #ffffff;
    --shadow: rgba(26, 47, 75, 0.12);
    --shadow-heavy: rgba(26, 47, 75, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

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

.btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-heavy);
}

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

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

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

.floating-nav {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1000;
}

.nav-toggle {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 16px var(--shadow-heavy);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: var(--secondary);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav-toggle:hover span {
    background: var(--dark);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 360px;
    max-width: 90vw;
    height: 100vh;
    background: var(--primary);
    padding: 100px 40px 40px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 24px var(--shadow-heavy);
    display: flex;
    flex-direction: column;
}

.nav-menu.active {
    right: 0;
}

.nav-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-menu-close:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.nav-menu-close::before,
.nav-menu-close::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--light);
    transition: background 0.3s ease;
}

.nav-menu-close:hover::before,
.nav-menu-close:hover::after {
    background: var(--dark);
}

.nav-menu-close::before {
    transform: rotate(45deg);
}

.nav-menu-close::after {
    transform: rotate(-45deg);
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.nav-links a {
    display: block;
    padding: 16px 0;
    color: var(--light);
    font-size: 1.25rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(247, 244, 239, 0.1);
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary);
    padding-left: 12px;
}

.ad-disclosure {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--muted);
    font-size: 0.75rem;
    padding: 8px 24px;
    text-align: center;
    z-index: 999;
}

.hero {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-text {
    width: 55%;
    padding-right: 60px;
    position: relative;
    z-index: 2;
}

.hero-visual {
    width: 45%;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    margin-left: -60px;
    margin-top: 40px;
}

.hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
    box-shadow: -12px 12px 0 var(--secondary);
    background-color: var(--muted);
}

.hero-badge {
    position: absolute;
    top: -30px;
    left: 40px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero h1 span {
    color: var(--secondary);
    display: block;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 520px;
}

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

.brand-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 24px 0;
}

.brand-name {
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section {
    padding: 100px 0;
}

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

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

.section-offset {
    padding-left: 8%;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 640px;
}

.section-dark .section-header p {
    color: rgba(247, 244, 239, 0.7);
}

.asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.asymmetric-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
}

.asymmetric-item:nth-child(2) {
    margin-top: 60px;
}

.asymmetric-item:nth-child(3) {
    margin-top: -30px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-heavy);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
    background-color: var(--muted);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 28px;
}

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

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

.service-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.price-label {
    font-size: 0.8rem;
    color: var(--muted);
}

.split-section {
    display: flex;
    min-height: 600px;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--muted);
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.split-content p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    margin: 32px 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--dark);
}

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

.overlap-section {
    position: relative;
    padding: 120px 0;
}

.overlap-bg {
    position: absolute;
    top: 60px;
    right: 0;
    width: 65%;
    height: calc(100% - 120px);
    background: var(--primary);
    z-index: 0;
}

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

.overlap-image {
    flex: 0 0 45%;
    position: relative;
}

.overlap-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 16px 16px 0 var(--secondary);
    background-color: var(--muted);
}

.overlap-text {
    flex: 1;
    color: var(--white);
    padding: 40px 0;
}

.overlap-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.overlap-text p {
    opacity: 0.85;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.testimonial-section {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    padding: 100px 0;
}

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

.testimonial-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 24px var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--secondary);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

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

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

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

.cta-section {
    background: var(--secondary);
    padding: 80px 0;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-section {
    padding: 100px 0;
}

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

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.form-info p {
    color: var(--muted);
    margin-bottom: 24px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(26, 47, 75, 0.1);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--light);
}

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0 0;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(247, 244, 239, 0.1);
}

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

.footer-col:first-child {
    flex: 2;
    min-width: 280px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-col p {
    color: rgba(247, 244, 239, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(247, 244, 239, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(247, 244, 239, 0.5);
    font-size: 0.85rem;
}

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

.legal-links a {
    color: rgba(247, 244, 239, 0.5);
    font-size: 0.85rem;
}

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

.page-header {
    background: var(--primary);
    padding: 140px 0 80px;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top right, var(--light) 50%, transparent 50%);
}

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

.page-header p {
    color: rgba(247, 244, 239, 0.7);
    font-size: 1.15rem;
    max-width: 600px;
}

.page-content {
    padding: 80px 0;
}

.page-content h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin: 40px 0 20px;
}

.page-content h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin: 32px 0 16px;
}

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

.page-content ul {
    margin: 16px 0 24px 24px;
}

.page-content li {
    margin-bottom: 8px;
    color: var(--dark);
}

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

.services-grid .service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-item {
    margin-bottom: 32px;
}

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

.contact-item p {
    color: var(--muted);
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: var(--muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map span {
    color: var(--light);
    font-size: 1.1rem;
}

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

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

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

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

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

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

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

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

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

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    font-size: 0.95rem;
    margin: 0;
}

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

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

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

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

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

.cookie-reject {
    background: transparent;
    border: 1px solid var(--light);
    color: var(--light);
}

.cookie-reject:hover {
    background: var(--light);
    color: var(--dark);
}

.disclaimer {
    background: rgba(212, 168, 83, 0.1);
    border-left: 4px solid var(--secondary);
    padding: 20px 24px;
    margin: 40px 0;
    font-size: 0.9rem;
    color: var(--muted);
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-text,
    .hero-visual {
        width: 100%;
        padding-right: 0;
    }

    .hero-image-wrapper {
        margin-left: 0;
        margin-top: 40px;
    }

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

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

    .split-visual {
        min-height: 400px;
    }

    .overlap-content {
        flex-direction: column;
    }

    .overlap-image {
        flex: none;
        width: 100%;
    }

    .overlap-bg {
        width: 100%;
        top: 200px;
    }

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

    .asymmetric-item:nth-child(2),
    .asymmetric-item:nth-child(3) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        width: 100%;
        right: -100%;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
