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

:root {
    --primary: #1a365d;
    --secondary: #2d5a8c;
    --accent: #e85d04;
    --light: #f8f9fa;
    --dark: #1f1f1f;
    --gray: #6c757d;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

.header-wrap {
    position: relative;
    z-index: 100;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px var(--shadow);
    position: sticky;
    top: 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav {
    display: flex;
    gap: 2.5rem;
}

nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

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

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    background: linear-gradient(135deg, var(--light) 0%, #e6eef5 100%);
}

.hero-content-offset {
    width: 55%;
    padding: 8rem 5% 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

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

.hero-visual-offset img {
    width: 120%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: -10%;
    top: 0;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 85%;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 93, 4, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary);
    border-radius: 3px;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

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

.section-offset {
    display: flex;
    align-items: stretch;
    min-height: 70vh;
    position: relative;
}

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

.offset-content {
    width: 50%;
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.offset-visual {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.offset-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-text {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.overlap-container {
    position: relative;
    padding: 8rem 5%;
    background: var(--light);
}

.overlap-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
}

.overlap-card {
    flex: 1 1 calc(50% - 1.5rem);
    background: white;
    padding: 3rem;
    position: relative;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s;
}

.overlap-card:nth-child(2n) {
    margin-top: 4rem;
}

.overlap-card:hover {
    transform: translateY(-10px);
}

.card-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-text {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

.services-asymmetric {
    padding: 8rem 5%;
    background: white;
}

.services-header {
    max-width: 60%;
    margin-bottom: 5rem;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card-offset {
    flex: 1 1 calc(33.333% - 2rem);
    background: var(--light);
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.service-card-offset:nth-child(3n + 2) {
    margin-top: 3rem;
}

.service-card-offset:hover {
    border-left-color: var(--accent);
    transform: translateX(10px);
    box-shadow: -10px 10px 30px var(--shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.service-name {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price-note {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
}

.form-section-creative {
    padding: 8rem 5%;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.form-creative-layout {
    display: flex;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.form-intro {
    flex: 1;
    color: white;
}

.form-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.form-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
}

.form-container {
    flex: 1;
    background: white;
    padding: 3.5rem;
    border-radius: 5px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

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

.irregular-section {
    padding: 8rem 5% 8rem 15%;
    background: linear-gradient(to right, white 0%, var(--light) 100%);
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    margin: 4rem 0;
}

.feature-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    flex: 1 1 calc(50% - 1.5rem);
    display: flex;
    gap: 1.5rem;
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 3px;
    font-size: 2rem;
    color: white;
}

.feature-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.7rem;
}

.feature-content p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

.footer-creative {
    background: var(--dark);
    color: white;
    padding: 5rem 5% 3rem;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
    font-size: 0.95rem;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 -5px 20px var(--shadow);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-accept:hover {
    background: #c74e03;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(232, 93, 4, 0.4);
    z-index: 99;
    transition: transform 0.3s;
}

.sticky-cta:hover {
    transform: scale(1.05);
}

.contact-page {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.7rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

.legal-page {
    padding: 6rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-top: 2rem;
    margin-bottom: 0.7rem;
}

.legal-page p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--light) 0%, #e6eef5 100%);
}

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

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

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

.thanks-content p {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

@media (max-width: 968px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem;
        box-shadow: -5px 0 15px var(--shadow);
        transition: right 0.3s;
        gap: 1.5rem;
    }

    nav.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset,
    .hero-visual-offset {
        width: 100%;
    }

    .hero-visual-offset img {
        position: relative;
        right: 0;
        clip-path: none;
        width: 100%;
    }

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

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

    .section-offset:nth-child(even) {
        flex-direction: column;
    }

    .offset-content,
    .offset-visual {
        width: 100%;
    }

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

    .overlap-card:nth-child(2n) {
        margin-top: 0;
    }

    .services-header {
        max-width: 100%;
    }

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

    .service-card-offset:nth-child(3n + 2) {
        margin-top: 0;
    }

    .form-creative-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .feature-item {
        flex: 1 1 100%;
    }

    .footer-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .irregular-section {
        padding: 6rem 5%;
        clip-path: none;
    }
}

@media (max-width: 568px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}
