:root {
    --primary: #1a2e4a;
    --secondary: #c4a35a;
    --accent: #3d5a80;
    --light: #f8f7f4;
    --dark: #0d1b2a;
    --gray: #6b7280;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(26, 46, 74, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 46, 74, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

.ad-disclosure {
    background: var(--dark);
    color: var(--white);
    font-size: 12px;
    padding: 8px 24px;
    text-align: center;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

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

nav a {
    font-weight: 500;
    color: var(--primary);
    position: relative;
    padding: 4px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-asymmetric {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.hero-visual {
    flex: 1.2;
    position: relative;
}

.hero-image-main {
    width: 100%;
    height: 500px;
    background-color: var(--accent);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
}

.hero-image-offset {
    position: absolute;
    width: 200px;
    height: 280px;
    background-color: var(--secondary);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    bottom: -40px;
    left: -60px;
    transform: rotate(-4deg);
}

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

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

.hero p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 480px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

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

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

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

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

.section {
    padding: 100px 0;
}

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

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin-bottom: 48px;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.asymmetric-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.asymmetric-left {
    flex: 0.8;
}

.asymmetric-right {
    flex: 1.2;
}

.offset-block {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transform: translateY(-40px);
    position: relative;
}

.overlap-image {
    position: relative;
    margin-left: -80px;
    z-index: 2;
}

.services-creative {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.service-card:nth-child(odd) {
    transform: translateY(30px);
}

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

.service-card:nth-child(odd):hover {
    transform: translateY(25px);
}

.service-image {
    height: 200px;
    background-color: var(--accent);
    position: relative;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.price-note {
    font-size: 13px;
    color: var(--gray);
}

.features-staggered {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-visual {
    flex: 1;
    position: relative;
}

.feature-image {
    width: 100%;
    height: 350px;
    background-color: var(--accent);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-row:nth-child(odd) .feature-image {
    transform: rotate(-2deg);
}

.feature-row:nth-child(even) .feature-image {
    transform: rotate(2deg);
}

.feature-content h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-content p {
    color: var(--gray);
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

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

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

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card:nth-child(2) {
    transform: translateY(-24px);
}

.testimonial-quote {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 16px;
    line-height: 1;
}

.testimonial-text {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 24px;
    font-size: 15px;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--accent);
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-info h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--gray);
}

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

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1.3;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: rotate(-1deg);
}

.contact-form-wrapper form {
    transform: rotate(1deg);
}

.contact-info h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 32px;
}

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

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--dark);
}

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

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    background: var(--light);
    transition: border-color 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: 16px;
}

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

.about-creative {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-images {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 350px;
    background-color: var(--accent);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(-5deg);
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 320px;
    height: 280px;
    background-color: var(--secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(3deg);
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

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

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

.footer-col {
    flex: 1;
}

.footer-col:first-child {
    flex: 1.5;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 16px;
}

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

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color var(--transition);
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

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

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

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: var(--gray);
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

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

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

.cookie-reject {
    background: var(--light);
    color: var(--primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

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

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.page-content {
    padding: 60px 0;
    background: var(--white);
}

.page-content .container {
    max-width: 900px;
}

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

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

.legal-content p {
    color: var(--gray);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--gray);
}

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

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

.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;
    fill: var(--white);
}

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

.thanks-content p {
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 32px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.services-list-item {
    display: flex;
    gap: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.services-list-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.services-list-image {
    width: 200px;
    min-height: 180px;
    background-color: var(--accent);
    flex-shrink: 0;
}

.services-list-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-list-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 8px;
}

.services-list-content p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 16px;
}

.services-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.disclaimer-section {
    background: var(--light);
    padding: 32px;
    border-radius: var(--radius);
    margin-top: 48px;
    border-left: 4px solid var(--secondary);
}

.disclaimer-section h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 12px;
}

.disclaimer-section p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.8;
}

@media (max-width: 992px) {
    .hero-asymmetric,
    .asymmetric-grid,
    .about-creative,
    .contact-creative,
    .feature-row,
    .feature-row:nth-child(even) {
        flex-direction: column;
    }

    .hero-content,
    .asymmetric-left,
    .asymmetric-right,
    .about-content,
    .about-images,
    .contact-info,
    .contact-form-wrapper,
    .feature-content,
    .feature-visual {
        max-width: 100%;
        flex: 1;
    }

    .hero h1 {
        font-size: 38px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-images {
        min-height: 400px;
        width: 100%;
    }

    .about-img-1 {
        width: 60%;
        height: 250px;
    }

    .about-img-2 {
        width: 55%;
        height: 200px;
    }

    .hero-image-offset {
        width: 150px;
        height: 200px;
        left: -20px;
    }

    .contact-form-wrapper {
        transform: none;
    }

    .contact-form-wrapper form {
        transform: none;
    }

    .overlap-image {
        margin-left: 0;
    }

    .offset-block {
        transform: none;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 30px);
        min-width: 200px;
    }

    .services-list-item {
        flex-direction: column;
    }

    .services-list-image {
        width: 100%;
        height: 180px;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        z-index: 200;
    }

    nav.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
        z-index: 300;
    }

    .hero {
        min-height: auto;
    }

    .hero-asymmetric {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-visual {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

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

    .service-card:nth-child(odd) {
        transform: none;
    }

    .service-card:nth-child(odd):hover {
        transform: translateY(-5px);
    }

    .testimonials-offset {
        flex-direction: column;
    }

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

    .testimonial-card:nth-child(2) {
        transform: none;
    }

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

    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 0 0 calc(50% - 20px);
    }

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

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